From 10119349876e16728a77767bcd99e45b2de46251 Mon Sep 17 00:00:00 2001 From: CaIon Date: Tue, 26 May 2026 11:29:38 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20fix(theme):=20default=20theme=20?= =?UTF-8?q?font=20preset=20falls=20back=20to=20Sans=20instead=20of=20Serif?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- web/default/src/lib/theme-customization.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/default/src/lib/theme-customization.ts b/web/default/src/lib/theme-customization.ts index 0a3c4c26..c107ed1f 100644 --- a/web/default/src/lib/theme-customization.ts +++ b/web/default/src/lib/theme-customization.ts @@ -170,7 +170,7 @@ export const THEME_COOKIE_KEYS = { export const PRESET_DEFAULT_FONT: Partial< Record > = { - default: 'serif', + default: 'sans', anthropic: 'serif', }