From 488dec64b403ae4aba65cad0e46b4d2767f0b2dd Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Thu, 27 Nov 2025 01:08:37 -0500 Subject: Automatic light/dark mode switching. What a pain. --- waybar/base.css | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 waybar/base.css (limited to 'waybar/base.css') diff --git a/waybar/base.css b/waybar/base.css new file mode 100644 index 0000000..2ef85f0 --- /dev/null +++ b/waybar/base.css @@ -0,0 +1,73 @@ +* { + /* font-family: "curie"; */ + font-family: "IBM 3270"; + font-size: 14px; + + padding: 0px; + margin: 0px; +} + +window#waybar { + /* background: transparent; */ + background: @background; + +} + +window#waybar.hidden { + opacity: 0.2; +} + +#window { + color: @foreground; +} + +#tags { +} + +#tags button { + color: @regular2; + background: transparent; +} + +#tags button.occupied { + transition: none; + color: @regular3; + background: transparent; +} + +#tags button.focused { + color: @background; + background: @regular3; + + border-radius: inherit; +} + +#tags button:hover { + transition: none; + box-shadow: inherit; + text-shadow: inherit; + color: @bright2; +} + +#temperature { + background: transparent; + color: @bright1; +} + +#pulseaudio { + color: @bright1; + background: transparent; +} + +#battery { + color: @bright3; + background: transparent; +} + +.modules-right { + color: @bright1; +} + +#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage { + padding-left: 15px; +} -- cgit v1.2.3