From 6b2119ff6f5419e044d3ae62b618deb16c4781c1 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 18 Apr 2026 15:39:21 -0500 Subject: [PATCH] Fix light theme: match font declarations to dark, remove trailing paren - Normalize quote style (single quotes matching dark theme) - Fix CSS syntax error: trailing ) on --body-font-family Co-Authored-By: Claude Opus 4.6 (1M context) --- src/media/css/theme/light.standard.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/media/css/theme/light.standard.css b/src/media/css/theme/light.standard.css index 0a57250..ca02bc4 100644 --- a/src/media/css/theme/light.standard.css +++ b/src/media/css/theme/light.standard.css @@ -59,9 +59,9 @@ color-scheme: light; --nav-link-disabled-color: #6c757d; /* ===== TYPOGRAPHY & BODY ===== */ ---font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +--font-sans-serif: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; ---body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); +--body-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; --body-font-size: 1rem; --body-font-weight: 400; --body-line-height: 1.5;