From 2264408b61e91ca28849f9155584649977bf3d7d Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 5 Aug 2026 16:07:15 +0100 Subject: [PATCH] hyprland: brighter border on active window --- settings/hyprland.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 844fe2d..045f1b9 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -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; }; };