diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-06-24 18:24:03 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-06-24 18:24:03 -0400 |
| commit | 541a1e5d1770766ec0e8bb953f1c92fa04779778 (patch) | |
| tree | 4e42d44843f12e62d5a42a76a17c11505785c3a8 /.config/waybar/style.css | |
| parent | 4a02d7297776672a0dccae9f2dd1f6f80f08e1fa (diff) | |
improved waybar colors and style
Diffstat (limited to '.config/waybar/style.css')
| -rw-r--r-- | .config/waybar/style.css | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 91a7aad..2d2bf27 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -1,5 +1,6 @@ @define-color foreground rgba(228, 228, 239, 1); @define-color foreground-active rgba(175, 215, 255, 1); +@define-color foreground-disabled rgba(70, 70, 70, 1); @define-color background rgba(0, 0, 0, 0.88); * { @@ -15,10 +16,6 @@ window#waybar { background-color: @background; } -#workspaces button { - color: @foreground; -} - .module { padding: 0rem 0.6rem; } @@ -29,9 +26,25 @@ window#waybar { #workspaces button { padding: 0 0.3rem; + color: @foreground; + transition: color 0.1s; + + border: transparent; /* Disable default border when hovered */ +} + +#workspaces button.empty { + color: @foreground-disabled; } #workspaces button.active { color: @foreground-active; } +#workspaces button:hover, +#workspaces button.*:hover { + color: @foreground-active; + + box-shadow: none; /* Remove predefined box-shadow */ + text-shadow: none; /* Remove predefined text-shadow */ + background: none; /* Remove predefined background color (white) */ +} |
