Skip to content

Commit e6fc25c

Browse files
Noah765trueNAHO
authored andcommitted
qutebrowser: fix border settings and add missing color settings (#1897)
Link: #1897 Reviewed-by: NAHO <[email protected]> (cherry picked from commit 0ce0103)
1 parent 3bf1430 commit e6fc25c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

modules/qutebrowser/hm.nix

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ mkTarget {
5656
in
5757
{
5858
programs.qutebrowser.settings = {
59-
hints.border = background;
59+
hints.border = "1px solid ${background}";
6060

6161
colors = {
6262
completion = {
@@ -82,6 +82,7 @@ mkTarget {
8282
};
8383

8484
fg = foreground;
85+
match.fg = info;
8586
};
8687

8788
match.fg = info;
@@ -163,9 +164,10 @@ mkTarget {
163164

164165
prompts = {
165166
bg = background;
166-
border = background;
167+
border = "1px solid ${background}";
167168
fg = foreground;
168169
selected.bg = secondary-background;
170+
selected.fg = foreground;
169171
};
170172

171173
statusbar = {
@@ -280,8 +282,12 @@ mkTarget {
280282
};
281283
};
282284
};
283-
};
284285

286+
tooltip = {
287+
bg = background;
288+
fg = foreground;
289+
};
290+
};
285291
};
286292
}
287293
)

0 commit comments

Comments
 (0)