diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2025-12-26 21:27:18 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-03-04 23:09:31 +0100 |
| commit | 53f1dc6d88225d1e95a94202d64d47f6560b9b96 (patch) | |
| tree | 2608431c0e2e0e55130d5fa26ab7c74a359bdd0b /config/waybar | |
| parent | 79f1a457511017c9ad68e4b0aa206f58b6b3a47f (diff) | |
Soften corners in linux for 2026 theme
Diffstat (limited to 'config/waybar')
| -rw-r--r-- | config/waybar/style.css | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/config/waybar/style.css b/config/waybar/style.css index 52799bb..9d0e637 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -4,7 +4,7 @@ } window#waybar { - background-color: rgba(255, 255, 250, 0.95); + background-color: #FFFFFA; color: #0F261F; transition-property: background-color; transition-duration: .5s; @@ -39,7 +39,7 @@ button:hover { #workspaces button.active { background-color: #23C17C; - color: #0F261F; + color: #FFFFFA; } #workspaces button.urgent { @@ -136,9 +136,9 @@ button:hover { } menu { - background-color: rgba(15, 38, 31, 0.95); + background-color: #FFFFFF; border: none; - border-radius: 0; + border-radius: 8px; transition-property: background-color; transition-duration: .1s; padding: 0; @@ -147,12 +147,18 @@ menu { menuitem { color: #0F261F; border: none; - border-radius: 0; + border-radius: 0px; padding: 5px 0; } menuitem:hover { background: #4F8FE6; } +menuitem:first-child { + border-radius: 8px 8px 0px 0px; +} +menuitem:last-child { + border-radius: 0px 0px 8px 8px; +} menu separator { margin: 5px 0; } |