From 190d374bb1d086549fb0efe2a8878b15efa03c55 Mon Sep 17 00:00:00 2001 From: Local Administrator Date: Wed, 3 Jun 2026 13:34:02 +0000 Subject: [PATCH] fix(avbeat): drop antialiased/grayscale font-smoothing on light theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -webkit-font-smoothing: antialiased and -moz-osx-font-smoothing: grayscale were set on body and the Tailwind 'antialiased' utility was applied on . Both pair correctly with the prior dark theme (light text on dark surfaces), but on the new white surface they render Inter + Lora thinner and harsher — strokes lose weight, edges read as jagged. Removed from src/styles/tailwind.css:59-60 (body rule) and from the utility in src/app/layout.tsx:143. OS default smoothing (subpixel on Windows / older macOS, 'auto' on modern) gives Inter + Lora their intended weight and roundness. --- src/app/layout.tsx | 2 +- src/styles/tailwind.css | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d88609..994df06 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -140,7 +140,7 @@ export default function RootLayout({ }) }} /> - + {/* Skip to main content — WCAG 2.4.1 */}