dotfiles/.config/sway/config.theme
2024-03-04 08:57:46 +01:00

31 lines
955 B
Plaintext

font pango:DejaVu Sans 8
# THEME COLORS
# Focused
set $brd_fcs #480048
set $bg_fcs #500050
set $txt_fcs #ffffaa
# Focused inactive
set $brd_fcs_in #280028
set $bg_fcs_in #300030
set $txt_fcs_in #aaaaaa
# Unfocused
set $brd_unfcs #180018
set $bg_unfcs #200020
set $txt_unfcs #888888
# Urgent
set $brd_urgent #a800a8
set $bg_urgent #b000b0
set $txt_urgent #000000
# WINDOWS
# class border background text indicator child_brd.
client.focused $brd_fcs $bg_fcs $txt_fcs $bg_fcs $bg_fcs
client.focused_inactive $brd_fcs_in $bg_fcs_in $txt_fcs_in $bg_fcs_in $bg_fcs_in
client.unfocused $brd_unfcs $bg_unfcs $txt_unfcs $bg_unfcs $bg_unfcs
client.urgent $brd_urgent $bg_urgent $txt_urgent $bg_urgent $bg_urgent
client.placeholder #000000 #0c000c #ffffff #000000 #0c000c
client.background #ffffff
# vim: set ft=swayconfig: -*- mode: i3wm-config; -*-