From e959cd52ea4723b2afb513698763401b289274f9 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 20 Jul 2024 11:40:22 -0400 Subject: [PATCH] ironbar: Change primary color to new stylix one This changes the primary color from orange to blue. --- home/ironbar.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/ironbar.nix b/home/ironbar.nix index a2da732c..22f8641a 100644 --- a/home/ironbar.nix +++ b/home/ironbar.nix @@ -2,7 +2,7 @@ let inherit (lib) singleton; - inherit (config.lib.stylix.colors) base00 base01 base04 base05 base09; + inherit (config.lib.stylix.colors) base00 base01 base04 base05 base0D; inherit (pkgs) ironbar inotify-tools; inherit (builtins) toJSON; @@ -91,7 +91,7 @@ in } slider { - background: #${base09}; + background: #${base0D}; } trough { @@ -130,7 +130,7 @@ in } .popup-clock .calendar:selected { - color: #${base09}; + color: #${base0D}; } .launcher .item { @@ -148,7 +148,7 @@ in } .launcher .focused { - box-shadow: inset 0 -2px #${base09}; + box-shadow: inset 0 -2px #${base0D}; background: #${base01}; }