UI/UX: Update global typography to Helvetica/Sans-Serif

This commit is contained in:
2026-05-01 12:34:30 +05:30
parent 407af828d4
commit 83dd086e57

View File

@@ -3,6 +3,12 @@
All CSS custom properties. Import this first in main.css. All CSS custom properties. Import this first in main.css.
============================================================ */ ============================================================ */
body {
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
:root { :root {
/* ── Color: Base Palette ─────────────────────────────────── */ /* ── Color: Base Palette ─────────────────────────────────── */
--color-base-bg: hsl(225, 25%, 8%); /* Deep navy */ --color-base-bg: hsl(225, 25%, 8%); /* Deep navy */
@@ -51,7 +57,7 @@
--glass-shadow-amber: 0 8px 32px var(--color-amber-glow); --glass-shadow-amber: 0 8px 32px var(--color-amber-glow);
/* ── Typography ──────────────────────────────────────────── */ /* ── Typography ──────────────────────────────────────────── */
--font-sans: 'Inter', 'Outfit', system-ui, -apple-system, sans-serif; --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace; --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
--text-xs: 0.75rem; /* 12px */ --text-xs: 0.75rem; /* 12px */