From f1906e9acf0ad7644f0d331699b5bb287ec8ce96 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Wed, 1 Jul 2026 14:11:19 +0200 Subject: [PATCH] fix(tv): lower body typography size (40 -> 32) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `body` size was larger than `heading` (40 vs 32), making standard TV body text — including the Jellyseerr overview and metadata/settings/player labels — read too large at every scale setting. Lower it to 32 so it sits just below headings, shrinking body text consistently across the TV UI. Claude-Session: https://claude.ai/code/session_016Hhu5DruGLPhdP4LAoy1Xd --- constants/TVTypography.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/TVTypography.ts b/constants/TVTypography.ts index 622ab657..7f6e3570 100644 --- a/constants/TVTypography.ts +++ b/constants/TVTypography.ts @@ -24,7 +24,7 @@ export const TVTypography = { heading: 32, /** Overview, actor names, card titles, metadata */ - body: 40, + body: 32, /** Secondary text, labels, subtitles */ callout: 26,