dunst: Use subtle color for border background

This commit is contained in:
Donovan Glover 2024-09-05 12:12:57 -04:00
parent 04c3941ed3
commit 2873612e25
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -11,7 +11,7 @@ let
inherit (config.lib.stylix.colors.withHashtag) inherit (config.lib.stylix.colors.withHashtag)
base08 base08
base0A base0A
base0D base02
; ;
in in
{ {
@ -42,14 +42,14 @@ in
urgency_low = { urgency_low = {
foreground = mkForce base0A; foreground = mkForce base0A;
frame_color = mkForce base0D; frame_color = mkForce base02;
}; };
urgency_normal.frame_color = mkForce base0D; urgency_normal.frame_color = mkForce base02;
urgency_critical = { urgency_critical = {
foreground = mkForce base08; foreground = mkForce base08;
frame_color = mkForce base0D; frame_color = mkForce base02;
}; };
}; };
}; };