11.stylix/modules/zellij/hm.nix
2025-05-22 07:44:19 -07:00

27 lines
565 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "zellij";
humanName = "zellij";
configElements =
{ colors }:
{
programs.zellij.themes.stylix = {
themes = with colors.withHashtag; {
default = {
bg = base03;
fg = base05;
red = base01;
green = base0B;
blue = base0D;
yellow = base0A;
magenta = base0E;
orange = base09;
cyan = base0C;
black = base00;
white = base07;
};
};
};
};
}