mirror of
https://github.com/danth/stylix
synced 2024-11-22 04:03:09 +00:00
Fix color consistency in WezTerm (#209)
There was an off-by-one shift in the ANSI palette. This change makes it be in sync with base16-kitty and base16-alacritty generators.
This commit is contained in:
parent
5a7f3f15cc
commit
9bc1900b68
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ in {
|
|||
config = lib.mkIf config.stylix.targets.wezterm.enable {
|
||||
|
||||
programs.wezterm.colorSchemes.stylix = with colors; {
|
||||
ansi = [ base00 base08 base0A base0D base0E base0C base0C base05 ];
|
||||
ansi = [ base00 base08 base0B base0A base0D base0E base0C base05 ];
|
||||
brights = [ base03 base08 base0B base0A base0D base0E base0C base07 ];
|
||||
background = base00;
|
||||
cursor_bg = base05;
|
||||
|
|
Loading…
Reference in a new issue