From eb6f37f9364212d8893b1f879872b98b2ef503a8 Mon Sep 17 00:00:00 2001 From: Rosa Date: Sun, 18 Jan 2026 13:38:33 -0500 Subject: finish retheming --- .../user/desktop/components/waybar/style-pink.css | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 modules/user/desktop/components/waybar/style-pink.css (limited to 'modules/user/desktop/components/waybar/style-pink.css') diff --git a/modules/user/desktop/components/waybar/style-pink.css b/modules/user/desktop/components/waybar/style-pink.css new file mode 100644 index 0000000..491279a --- /dev/null +++ b/modules/user/desktop/components/waybar/style-pink.css @@ -0,0 +1,82 @@ +* { + border: none; + border-radius: 0; + font-family: 'FiraCode Nerd Font Mono'; + min-height: 0; +} + +window#waybar { + background: #11111b; + color: #cdd6f4; +} + +tooltip { + background: #1e1e2e; + border: 2px solid #f5c2e7; +} + +tooltip label { + color: #cdd6f4; +} + +#workspaces button { + background: none; + box-shadow: none; + color: #585b70; + padding: 0; +} + +#workspaces button.empty { + color: #313244; +} + +#workspaces button.visible { + color: #6c7086; +} + +#workspaces button.focused { + color: #f5c2e7; +} + +#workspaces button.urgent { + color: #f38ba8; +} + +#workspaces button:hover { + color: #cdd6f4; + text-shadow: inherit; +} + +.module { + padding: 0 8px; + padding-top: 2px; +} + +.modules-left { + margin-left: 8px; + margin-right: 4px; +} + +.modules-right { + margin-left: 4px; + margin-right: 8px; +} + +@keyframes blink { + to { + color: #cdd6f4; + } +} + +#battery.charging { + color: #a6e3a1; +} + +#battery.critical:not(.charging) { + animation-direction: alternate; + animation-duration: 0.5s; + animation-iteration-count: infinite; + animation-name: blink; + animation-timing-function: steps(2); + color: #f38ba8; +} -- cgit v1.3.1