Extracted out color constants to prevent repeating myself.

Extracted out color constants to prevent repeating myself.
This commit is contained in:
James Patrick 2020-09-03 00:34:42 -04:00
parent df58c9f4f2
commit 4a9e7f32d7

View File

@ -1,6 +1,12 @@
################################################################################ ################################################################################
# UI tweaks # UI tweaks
set $focus_bg #12e689
set $urgent_bg #ff4551
set $inactive_bg #161720
set $light_fg #1f212e
set $dark_fg #aab5c6
### Font stuff ### Font stuff
font pango:Fira Code 10 font pango:Fira Code 10
@ -10,10 +16,10 @@ gaps outer 2
### Colors ### Colors
# class border backgr text indicator child_border # class border backgr text indicator child_border
client.focused #12e689 #12e689 #1f212e #12e689 #12e689 client.focused $focus_bg $focus_bg $light_fg $focus_bg $focus_bg
client.focused_inactive #1f212e #1f212e #aab5c6 #1f212e #1f212e client.focused_inactive $inactive_bg $inactive_bg $dark_fg $inactive_bg $inactive_bg
client.unfocused #161720 #161720 #aab5c6 #161720 #161720 client.unfocused $inactive_bg $inactive_bg $dark_fg $inactive_bg $inactive_bg
client.urgent #ff4551 #ff4551 #1f212e #ff4551 #ff4551 client.urgent $urgent_bg $urgent_bg $light_fg $urgent_bg $urgent_bg
# GTK 3 settings # GTK 3 settings
# See https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland for more info. # See https://github.com/swaywm/sway/wiki/GTK-3-settings-on-Wayland for more info.