From 9bc1900b6888efdda39c2e02c7c8666911b72608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Vask=C3=B3?= <1771332+vlaci@users.noreply.github.com> Date: Wed, 3 Jan 2024 20:01:20 +0100 Subject: [PATCH] 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. --- modules/wezterm/hm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wezterm/hm.nix b/modules/wezterm/hm.nix index 7410fba6..e3f8a11c 100644 --- a/modules/wezterm/hm.nix +++ b/modules/wezterm/hm.nix @@ -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;