diff options
author | Freya Murphy <freya@freyacat.org> | 2025-02-01 21:53:55 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-02-01 21:53:55 -0500 |
commit | 3258c8f10704cc6bff50b2e824e841a258926082 (patch) | |
tree | 3b2f8d0a36182f7f0a486dff7c263c772b317479 | |
parent | disable wg for now (diff) | |
download | dotfiles-nix-3258c8f10704cc6bff50b2e824e841a258926082.tar.gz dotfiles-nix-3258c8f10704cc6bff50b2e824e841a258926082.tar.bz2 dotfiles-nix-3258c8f10704cc6bff50b2e824e841a258926082.zip |
fix hy3 theme
-rw-r--r-- | nix/programs/hypr/hyprland.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/nix/programs/hypr/hyprland.nix b/nix/programs/hypr/hyprland.nix index 093fd9a..c2cf6b0 100644 --- a/nix/programs/hypr/hyprland.nix +++ b/nix/programs/hypr/hyprland.nix @@ -289,13 +289,14 @@ in render_text = true; text_font = "monospace"; radius = config.theme.outerRadius; + border_width = config.theme.borderWidth; "col.active" = "rgb(${config.theme.colors.base00})"; + "col.active.border" = "rgb(${config.theme.colors.accent})"; + "col.active.text" = "rgb(${config.theme.colors.base05})"; "col.inactive" = "rgb(${config.theme.colors.base00})"; - "col.text.active" = "rgb(${config.theme.colors.base05})"; - "col.text.inactive" = "rgb(${config.theme.colors.base05})"; - "col.border.active" = "rgb(${config.theme.colors.accent})"; - "col.border.inactive" = "rgb(${config.theme.colors.base04})"; + "col.inactive.border" = "rgb(${config.theme.colors.base04})"; + "col.inactive.text" = "rgb(${config.theme.colors.base05})"; }; autotile = { |