diff --git a/home-manager/common/software/cli/zellij.nix b/home-manager/common/software/cli/zellij.nix index fccee46d..d68e6917 100644 --- a/home-manager/common/software/cli/zellij.nix +++ b/home-manager/common/software/cli/zellij.nix @@ -3,6 +3,21 @@ enable = true; enableBashIntegration = true; enableFishIntegration = true; - #settings = ''''; + settings = { + theme = "stylix"; + themes.stylix = with config.lib.stylix.colors.withHashtag; { + bg = base02; + fg = base06; + red = base08; + green = base0B; + blue = base0D; + yellow = base0A; + magenta = base0E; + orange = base09; + cyan = base0C; + black = base00; + white = base07; + }; + }; }; }