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:
Noah765 2025-09-15 19:09:16 +02:00 committed by GitHub
parent 834a743c11
commit 0ce0103b49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
};
};
};
}
)