changed background color walker

This commit is contained in:
2026-02-27 21:58:46 +01:00
parent e3dac9639e
commit 44f3aac07c
@@ -33,7 +33,7 @@
@define-color foreground @text;
/* very transparent base to let compositor blur show through */
@define-color background rgba(30, 30, 46, 0.70);
@define-color background: rgba(26, 26, 40, 0.75);
/* selection tint */
@define-color color1 @blue;
@@ -136,20 +136,19 @@ slider,
child {
padding: 10px 12px;
border-radius: 14px;
/* faint glass tile */
background: rgba(49, 50, 68, 0.1);
border: 1px solid rgba(255, 255, 255, 0.04);
background: @background;
border: 1px solid alpha(@text, 0.05);
}
/* Hover / Selection: brighter glass + tinted glow */
child:selected,
child:hover {
background: alpha(@color1, 0.18);
border: 1px solid alpha(@color1, 0.2);
background: rgba(22, 22, 34, 0.8);
border: 1px solid alpha(@text, 0.08);
box-shadow:
inset 0 1px 0 alpha(@text, 0.06),
0 10px 24px alpha(@crust, 0.3);
inset 0 1px 0 alpha(@text, 0.05),
0 6px 14px alpha(@crust, 0.35);
}
/* --- Text --- */