use Solarized (dark) by default as compatible with dark/light themes

This commit is contained in:
yggverse 2024-12-03 16:13:51 +02:00
parent fe9c859f7f
commit 9e7147838f

View File

@ -11,7 +11,17 @@ use syntect::{
Error,
};
pub const DEFAULT_THEME: &str = "base16-ocean.dark";
/* Default theme
@TODO make optional
base16-ocean.dark
base16-eighties.dark
base16-mocha.dark
base16-ocean.light
InspiredGitHub
Solarized (dark)
Solarized (light)
*/
pub const DEFAULT_THEME: &str = "Solarized (dark)";
pub struct Syntax {
syntax_set: SyntaxSet,