diff options
Diffstat (limited to 'modules/desktop/hyprland.nix')
-rw-r--r-- | modules/desktop/hyprland.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/desktop/hyprland.nix b/modules/desktop/hyprland.nix index 13a1926..3b04a8c 100644 --- a/modules/desktop/hyprland.nix +++ b/modules/desktop/hyprland.nix @@ -10,10 +10,10 @@ hyprland-plugins = inputs.hyprland-plugins.packages.${system}; hy3 = inputs.hy3.packages.${system}; - fg = "rgb(${config.theme.colors.fg})"; - bg = "rgb(${config.theme.colors.bg})"; + text = "rgb(${config.theme.colors.text})"; + base = "rgb(${config.theme.colors.base})"; + surface = "rgb(${config.theme.colors.surface})"; primary = "rgb(${config.theme.colors.primary})"; - inactive = "rgb(${config.theme.colors.surface.bg})"; debug = false; @@ -103,7 +103,7 @@ in { extend_border_grab_area = 20; border_size = config.theme.borderWidth; "col.active_border" = "${primary}"; - "col.inactive_border" = "${inactive}"; + "col.inactive_border" = "${surface}"; }; # Gestures @@ -304,12 +304,12 @@ in { radius = config.theme.outerRadius; border_width = config.theme.borderWidth; - "col.active" = "${bg}"; - "col.active.border" = "${inactive}"; - "col.active.text" = "${fg}"; - "col.inactive" = "${bg}"; - "col.inactive.border" = "${inactive}"; - "col.inactive.text" = "${fg}"; + "col.active" = "${base}"; + "col.active.border" = "${primary}"; + "col.active.text" = "${text}"; + "col.inactive" = "${base}"; + "col.inactive.border" = "${surface}"; + "col.inactive.text" = "${text}"; }; autotile = { |