diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-05 22:45:55 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-05 22:45:55 +0100 |
| commit | fd83046433714aa19e0dcd58f1634d72047083f3 (patch) | |
| tree | 08ac158a37cd857b45c10aeb3ac8eeb00e3978f3 | |
| parent | 3a5c740da593ffb1f24aec01ec5023c19cd19469 (diff) | |
fixed color definiitons in i3 config
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index 42bd0d9..c861c28 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -20,11 +20,27 @@ in }; colors = { - border = vars.colors.background-secondary; - childBorder = vars.colors.background-secondary; - background = vars.colors.background; - text = vars.colors.foreground; - indicator = vars.colors.foreground; + focused = { + border = vars.colors.background-secondary; + childBorder = vars.colors.background-secondary; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; + focusedInactive = { + border = vars.colors.background; + childBorder = vars.colors.background; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; + unfocused = { + border = vars.colors.background; + childBorder = vars.colors.background; + background = vars.colors.background; + text = vars.colors.foreground; + indicator = vars.colors.foreground; + }; }; startup = [ |
