hyprland: brighter border on active window

This commit is contained in:
rope 2026-08-05 16:07:15 +01:00
parent 3aa45dd57e
commit 2264408b61

View file

@ -110,7 +110,12 @@ in
border_size = 2;
layout = "dwindle";
resize_on_border = true;
"col.active_border" = rgb c.base0D;
# Active = base04, inactive = base03: adjacent slots on stylix's
# dark→light ramp, so active reads as a subtle brightness lift in
# any palette. NOT base0D — a wallpaper-derived scheme can hand
# base0D and base03 the same value (this one does: both 3fa8ab),
# which left active and inactive windows indistinguishable.
"col.active_border" = rgb c.base04;
"col.inactive_border" = rgb c.base03;
};
@ -126,12 +131,13 @@ in
};
group = {
"col.border_active" = rgb c.base0D;
# Same base04/base03 ramp as general.col.* above.
"col.border_active" = rgb c.base04;
"col.border_inactive" = rgb c.base03;
"col.border_locked_active" = rgb c.base0C;
"col.border_locked_active" = rgb c.base05;
groupbar = {
text_color = rgb c.base05;
"col.active" = rgb c.base0D;
"col.active" = rgb c.base04;
"col.inactive" = rgb c.base03;
};
};