Skip to content

Commit

Permalink
Add Catppuccin latte to light syntax themes (#1573)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvic authored Mar 2, 2024
1 parent 1db3aaa commit 6978da4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/options/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 6978da4

Please sign in to comment.