fix theme

This commit is contained in:
2025-06-14 01:17:18 +09:00
parent 5c13dc0a1c
commit a4114c5be3
4 changed files with 12 additions and 3 deletions

View File

@ -23,6 +23,7 @@ pub struct SiteConfig {
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct BuildConfig {
pub highlight_code: bool,
pub highlight_theme: Option<String>,
pub minify: bool,
}
@ -146,6 +147,7 @@ impl Default for Config {
},
build: BuildConfig {
highlight_code: true,
highlight_theme: Some("Monokai".to_string()),
minify: false,
},
ai: Some(AiConfig {