qutebrowser: fix border settings and add missing color settings (#1897)
Link: https://github.com/nix-community/stylix/pull/1897 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
parent
834a743c11
commit
0ce0103b49
1 changed files with 9 additions and 3 deletions
|
|
@ -56,7 +56,7 @@ mkTarget {
|
|||
in
|
||||
{
|
||||
programs.qutebrowser.settings = {
|
||||
hints.border = background;
|
||||
hints.border = "1px solid ${background}";
|
||||
|
||||
colors = {
|
||||
completion = {
|
||||
|
|
@ -82,6 +82,7 @@ mkTarget {
|
|||
};
|
||||
|
||||
fg = foreground;
|
||||
match.fg = info;
|
||||
};
|
||||
|
||||
match.fg = info;
|
||||
|
|
@ -163,9 +164,10 @@ mkTarget {
|
|||
|
||||
prompts = {
|
||||
bg = background;
|
||||
border = background;
|
||||
border = "1px solid ${background}";
|
||||
fg = foreground;
|
||||
selected.bg = secondary-background;
|
||||
selected.fg = foreground;
|
||||
};
|
||||
|
||||
statusbar = {
|
||||
|
|
@ -280,8 +282,12 @@ mkTarget {
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
tooltip = {
|
||||
bg = background;
|
||||
fg = foreground;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue