From 14e07bc87de42dcd1ef29b26eca3b5c4823d1e81 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 20 May 2026 09:40:23 -0400 Subject: fix hy3 colors --- home/desktops/hyprland/plugins.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'home') diff --git a/home/desktops/hyprland/plugins.nix b/home/desktops/hyprland/plugins.nix index d9804d1..b0ba204 100644 --- a/home/desktops/hyprland/plugins.nix +++ b/home/desktops/hyprland/plugins.nix @@ -20,13 +20,14 @@ text_font = "monospace"; radius = config.theme.outerRadius; border_width = config.theme.borderWidth; - - "col.active" = "rgb(${config.theme.colors.base})"; - "col.active.border" = "rgb(${config.theme.colors.primary})"; - "col.active.text" = "rgb(${config.theme.colors.text})"; - "col.inactive" = "rgb(${config.theme.colors.base})"; - "col.inactive.border" = "rgb(${config.theme.colors.surface})"; - "col.inactive.text" = "rgb(${config.theme.colors.text})"; + colors = { + active = "rgb(${config.theme.colors.base})"; + active_border = "rgb(${config.theme.colors.primary})"; + active_text = "rgb(${config.theme.colors.text})"; + inactive = "rgb(${config.theme.colors.base})"; + inactive_border = "rgb(${config.theme.colors.surface})"; + inactive_text = "rgb(${config.theme.colors.text})"; + }; }; autotile = { -- cgit v1.3.1-freya