nixos-config

NixOS configs for my systems
Log | Files | Refs

commit 055d27b5c4d657bd89a3cbb5942fd6dc77ba0726
parent b6a0d11d3231fec0fd8a4b3f6645eab99032857c
Author: vin <vin@vineetk.net>
Date:   Wed,  8 Jan 2025 21:15:46 -0500

switch i3 colors from hardcoded to theme nix file

I'm LEARNDING more!

Diffstat:
Mhome.nix | 52++++++++++++++++++++++++++--------------------------
1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/home.nix b/home.nix @@ -447,22 +447,22 @@ in { # TODO import nix file that defines colorscheme bars = [ { colors = { - background = "#191724"; - statusline = "#908caa"; + background = colors.everblush.primary.background; + statusline = colors.everblush.primary.foreground; focusedWorkspace = { - background = "#26233a"; - border = "#26233a"; - text = "#c4a7e7"; + background = colors.everblush.normal.black; + border = colors.everblush.normal.black; + text = colors.everblush.normal.green; }; activeWorkspace = { - background = "#26233a"; - border = "#26233a"; - text = "#e0def4"; + background = colors.everblush.normal.black; + border = colors.everblush.normal.black; + text = colors.everblush.primary.foreground; }; inactiveWorkspace = { - background = "#191724"; - border = "#191724"; - text = "#6e6a86"; + background = colors.everblush.primary.background; + border = colors.everblush.primary.background; + text = colors.everblush.normal.white; }; }; command = "${pkgs.i3}/bin/i3bar"; @@ -471,25 +471,25 @@ in { } ]; colors = { focused = { - background = "#191724"; - border = "#191724"; - childBorder = "#191724"; - indicator = "#26233a"; - text = "#e0def4"; + background = colors.everblush.primary.background; + border = colors.everblush.primary.background; + childBorder = colors.everblush.primary.background; + indicator = colors.everblush.normal.black; + text = colors.everblush.normal.green; }; focusedInactive = { - background = "#191724"; - border = "#191724"; - childBorder = "#191724"; - indicator = "#26233a"; - text = "#6e6a86"; + background = colors.everblush.primary.background; + border = colors.everblush.primary.background; + childBorder = colors.everblush.primary.background; + indicator = colors.everblush.normal.black; + text = colors.everblush.primary.foreground; }; unfocused = { - background = "#26233a"; - border = "#26233a"; - childBorder = "#26233a"; - indicator = "#191724"; - text = "#6e6a86"; + background = colors.everblush.normal.black; + border = colors.everblush.normal.black; + childBorder = colors.everblush.normal.black; + indicator = colors.everblush.primary.background; + text = colors.everblush.normal.white; }; }; focus.mouseWarping = true;