mirror of
https://github.com/danth/stylix
synced 2024-11-22 20:23:15 +00:00
7dfce721b9
Closes #111 Theme's bg value is used for selection, not the background so updated bg to base03 to address this
26 lines
665 B
Nix
26 lines
665 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.zellij.enable =
|
|
config.lib.stylix.mkEnableTarget "zellij" config.programs.zellij.enable ;
|
|
|
|
config = lib.mkIf config.stylix.targets.zellij.enable {
|
|
programs.zellij.settings = {
|
|
theme = "stylix";
|
|
themes.stylix = with config.lib.stylix.colors.withHashtag; {
|
|
bg = base03;
|
|
fg = base05;
|
|
red = base08;
|
|
green = base0B;
|
|
blue = base0D;
|
|
yellow = base0A;
|
|
magenta = base0E;
|
|
orange = base09;
|
|
cyan = base0C;
|
|
black = base03;
|
|
white = base05;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|