From f282a22d9897d5c9f9f9d7602ba63f85f763e181 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 22 Aug 2026 16:48:52 -0400 Subject: [PATCH] feat(www): bold doc headings and header nav links --- packages/www/theme.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/www/theme.css b/packages/www/theme.css index ed84c3a7de9..5343bcc1a11 100644 --- a/packages/www/theme.css +++ b/packages/www/theme.css @@ -79,6 +79,15 @@ color: var(--blume-foreground); } +/* Match opentui.com/docs: bold headings and bold header nav links */ +.prose :is(h1, h2, h3, h4) { + font-weight: 700; +} + +[data-blume-header] nav[aria-label="Sections"] a { + font-weight: 700; +} + .prose a:not(.blume-heading-anchor, [data-blume-card]) { color: var(--blume-accent); }