diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:40:23 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:40:23 -0400 |
| commit | 14e07bc87de42dcd1ef29b26eca3b5c4823d1e81 (patch) | |
| tree | e2d2429d1d28c687b3fd9f37d0c4bf0870e73e81 /home | |
| parent | SSSEEECCCUUURRREEE BBBOOOOOOTTT (diff) | |
| download | dotfiles-nix-14e07bc87de42dcd1ef29b26eca3b5c4823d1e81.tar.gz dotfiles-nix-14e07bc87de42dcd1ef29b26eca3b5c4823d1e81.tar.bz2 dotfiles-nix-14e07bc87de42dcd1ef29b26eca3b5c4823d1e81.zip | |
fix hy3 colors
Diffstat (limited to 'home')
| -rw-r--r-- | home/desktops/hyprland/plugins.nix | 15 |
1 files changed, 8 insertions, 7 deletions
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 = { |