diff --git a/home/desktop/sway.nix b/home/desktop/sway.nix index a13e14ff..6983a8ff 100644 --- a/home/desktop/sway.nix +++ b/home/desktop/sway.nix @@ -162,12 +162,12 @@ in { mode hide colors { - statusline #ffffff - background #00000000 + statusline ${colors.foreground} + background ${colors.background} ${ lib.concatStringsSep "\n" (lib.mapAttrsToList (category: { background, border, text }: '' - ${category} ${background}cc ${border} ${text} + ${category} ${background} ${border} ${text} '') barColors) } } @@ -188,12 +188,12 @@ in { mode invisible colors { - statusline #ffffff - background #00000000 + statusline ${colors.foreground} + background ${colors.background} ${ lib.concatStringsSep "\n" (lib.mapAttrsToList (category: { background, border, text }: '' - ${category} ${background}cc ${border} ${text} + ${category} ${background} ${border} ${text} '') barColors) } }