From e65c986f4d70c04a541fd15c2f966ab130f7b1e6 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Tue, 31 Mar 2026 15:23:33 +0100 Subject: feat: change to Helvetica font --- src/styles/global.css | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/styles/global.css b/src/styles/global.css index 705033a..7c29275 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -7,7 +7,9 @@ @theme inline { --font-heading: var(--font-mono); - --font-mono: 'JetBrains Mono Variable', monospace; + /* --font-mono: 'JetBrains Mono Variable', monospace; */ + --font-mono: var(--font-body); + --font-body: 'Helvetica', sans-serif; --color-sidebar-ring: var(--sidebar-ring); --color-sidebar-border: var(--sidebar-border); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); @@ -131,4 +133,20 @@ p > a { @apply hover:underline text-blue-600; } + + h1 { + @apply text-4xl font-bold; + } + + h2 { + @apply text-3xl font-bold; + } + + h3 { + @apply text-2xl font-bold; + } + + h4, h5, h6 { + @apply text-xl font-bold; + } } -- cgit