summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamir Vandic <info@dvic.io>2024-03-02 18:06:00 +0100
committerGitHub <noreply@github.com>2024-03-02 12:06:00 -0500
commit6978da4b5344498381fad5c84f94d850994a4a33 (patch)
tree2a0ad08f8e862788890d71e6c87b6f0a2b3b1c48
parent1db3aaa493867841f60cfe861feffc36e102c555 (diff)
Add Catppuccin latte to light syntax themes (#1573)
-rw-r--r--src/options/theme.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options/theme.rs b/src/options/theme.rs
index 2d853ada..cb7b9b04 100644
--- a/src/options/theme.rs
+++ b/src/options/theme.rs
@@ -36,13 +36,14 @@ pub fn is_light_syntax_theme(theme: &str) -> bool {
LIGHT_SYNTAX_THEMES.contains(&theme) || theme.to_lowercase().contains("light")
}
-const LIGHT_SYNTAX_THEMES: [&str; 6] = [
+const LIGHT_SYNTAX_THEMES: [&str; 7] = [
"GitHub",
"gruvbox-light",
"gruvbox-white",
"Monokai Extended Light",
"OneHalfLight",
"Solarized (light)",
+ "Catppuccin-latte",
];
const DEFAULT_LIGHT_SYNTAX_THEME: &str = "GitHub";