🎨 fix(theme): default theme font preset falls back to Sans instead of Serif

Adjust PRESET_DEFAULT_FONT so that the shipped 'default' preset falls back to the humanist 'sans' (Public Sans) out-of-the-box instead of forcing the editorial 'serif' (Lora). Keeps the 'anthropic' preset on 'serif' as intended.
This commit is contained in:
CaIon
2026-05-26 11:29:38 +08:00
parent bc8110ce36
commit 1011934987
+1 -1
View File
@@ -170,7 +170,7 @@ export const THEME_COOKIE_KEYS = {
export const PRESET_DEFAULT_FONT: Partial<
Record<ThemePreset, ResolvedThemeFont>
> = {
default: 'serif',
default: 'sans',
anthropic: 'serif',
}