From a1b5941299e063ed47ef05b974eec825a0165655 Mon Sep 17 00:00:00 2001 From: steven Date: Sun, 23 Mar 2025 22:49:02 -0400 Subject: [PATCH] update colors --- waybar/style.css | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/waybar/style.css b/waybar/style.css index 70e98b2..f628a14 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -6,19 +6,23 @@ window#waybar { background-color: transparent; } -#workspaces button.focused, #battery.charging, #battery.charging.warning { - background-color: lightgreen; +#workspaces button, #mode, #mpris, #privacy, #network, #temperature, #wireplumber, #backlight, #battery, #clock { + background-color: silver; color: black; -} - -#workspaces button.urgent, #battery.warning { - background-color: red; - color: black; -} - -#workspaces button, #mode, #mpris, #privacy, #network, #wireplumber, #backlight, #battery, #clock { - background-color: darkgreen; border-radius: 10px; padding: 0 8px; margin: 0 2px; } + +#workspaces button.focused { + background-color: darkslategrey; + color: white; +} + +#workspaces button.urgent, #battery.warning { + background-color: firebrick; +} + +#battery.charging { + background-color: olivedrab; +}