fix(desktop): dunst colors

This commit is contained in:
Pavel Korytov 2023-08-01 11:34:21 +03:00
parent 1d8da7a2bb
commit ebdcf22b6e
2 changed files with 10 additions and 10 deletions

View file

@ -262,24 +262,24 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#313441"
background = "#222637"
frame_color = "#A6Accd"
foreground = "#c1c7e9"
foreground = "#EEFFFF"
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal]
background = "#1c1f2b"
background = "#292D3E"
frame_color = "#A6Accd"
foreground = "#c1c7e9"
foreground = "#EEFFFF"
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon
[urgency_critical]
background = "#f07178"
foreground = "#c1c7e9"
foreground = "#1c1f2b"
frame_color = "#f07178"
timeout = 0
# Icon for notifications with critical urgency, uncomment to enable

View file

@ -3296,24 +3296,24 @@ References:
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = <<get-color(name="light-black", quote=1)>>
background = <<get-color(name="bg-other", quote=1)>>
frame_color = <<get-color(name="white", quote=1)>>
foreground = <<get-color(name="light-white", quote=1)>>
foreground = <<get-color(name="fg", quote=1)>>
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal]
background = <<get-color(name="black", quote=1)>>
background = <<get-color(name="bg", quote=1)>>
frame_color = <<get-color(name="white", quote=1)>>
foreground = <<get-color(name="light-white", quote=1)>>
foreground = <<get-color(name="fg", quote=1)>>
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon
[urgency_critical]
background = <<get-color(name="red", quote=1)>>
foreground = <<get-color(name="light-white", quote=1)>>
foreground = <<get-color(name="black", quote=1)>>
frame_color = <<get-color(name="red", quote=1)>>
timeout = 0
# Icon for notifications with critical urgency, uncomment to enable