Finished templating. Now it's only a matter of adding more themes!

This commit is contained in:
Eudaimon 2022-07-14 12:22:58 +02:00
parent 837eb5922f
commit 2c3647c2f2
17 changed files with 199 additions and 96 deletions

View file

@ -11,6 +11,8 @@ gtk-color-scheme = "tooltip_bg_color:${vhint_bg}"
gtk-color-scheme = "tooltip_fg_color:${vhint_fg}"
gtk-color-scheme = "disabled_bg_color:${vdisabled_bg}"
gtk-color-scheme = "disabled_fg_color:${vdisabled_fg}"
gtk-color-scheme = "button_bg_color:${vbutton_bg}"
gtk-color-scheme = "button_fg_color:${vbutton_fg}"
gtk-color-scheme = "button_checked_bg_color:${vbutton_checked_bg}"
gtk-color-scheme = "button_checked_fg_color:${vbutton_checked_fg}"
@ -182,8 +184,9 @@ style "button" {
xthickness = 3
ythickness = 3
bg[NORMAL] = shade (1.04, @bg_color)
bg[PRELIGHT] = shade (1.06, @bg_color)
bg[NORMAL] = @button_bg_color
fg[NORMAL] = @button_fg_color
bg[PRELIGHT] = shade (1.06, @button_checked_bg_color)
bg[ACTIVE] = @button_checked_bg_color
fg[ACTIVE] = @button_checked_fg_color
}