Feat(colorschemes): add ansi schemes

Adds ANSI Catppuccin themes and implements them into config
This commit is contained in:
2025-03-11 21:47:16 -04:00
parent 49b7e632d5
commit a9e8ca5370
6 changed files with 744 additions and 3 deletions
+3 -3
View File
@@ -19,14 +19,14 @@ local function get_colorscheme(appearance)
local scheme = {}
if WEZTERM.gui then
if appearance:find("Dark") then
scheme.theme = "Catppuccin Mocha"
scheme.theme = "Catppuccin Mocha ANSI"
scheme.mode = "dark"
else
scheme.theme = "Catppuccin Latte"
scheme.theme = "Catppuccin Latte ANSI"
scheme.mode = "light"
end
else
scheme.theme = "Catppuccin Mocha"
scheme.theme = "Catppuccin Mocha ANSI"
scheme.mode = "dark"
end
return scheme