From 53f1dc6d88225d1e95a94202d64d47f6560b9b96 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Fri, 26 Dec 2025 21:27:18 +0100 Subject: Soften corners in linux for 2026 theme --- config/waybar/style.css | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'config/waybar/style.css') 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; } -- cgit