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:
László Vaskó 2024-01-03 20:01:20 +01:00 committed by GitHub
parent 5a7f3f15cc
commit 9bc1900b68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;