StockFind Brand

Typography

Inter font family and type scale

Font Family

StockFind uses Inter as the primary font family, chosen for its clean, modern aesthetic inspired by Apple's design language.

--font-inter: 'Inter', system-ui, sans-serif;
--font-geist-mono: 'Geist Mono', monospace;

Type Scale

H1The quick brown fox30px / semibold / tracking-tighter
H2The quick brown fox24px / semibold / tracking-tighter
H3The quick brown fox20px / semibold / tracking-tight
BodyThe quick brown fox16px / normal
SmallThe quick brown fox14px / normal
XSmallThe quick brown fox12px / normal

Font Weight

Apple-style typography uses restrained font weights. font-semibold (600) is the maximum used in the dashboard.

WeightClassUsage
600font-semiboldHeadings, card titles, stat numbers, emphasis
500font-mediumBadges, chips, inline labels
400(default)Body text, descriptions, labels

font-bold (700), font-extrabold (800), and font-black (900) are not used in the dashboard UI.

Tracking (Letter Spacing)

Apple-style typography uses tighter letter spacing on large headings for a polished, editorial feel.

SizeTrackingUsage
text-5xl+tracking-tighterHero headings, page titles
text-2xltext-4xltracking-tighterSection headings
text-xltracking-tightSubheadings
text-base and belowDefaultBody text, labels
Stat numberstracking-tightFinancial metrics, KPIs

Usage

// Headings — use tracking-tighter for large sizes
<h1 className="text-3xl font-semibold tracking-tighter">Page Title</h1>
<h2 className="text-2xl font-semibold tracking-tighter">Section Title</h2>
<h3 className="text-xl font-semibold tracking-tight">Subsection</h3>

// Body text
<p className="text-base">Regular paragraph text</p>
<p className="text-sm">Secondary information</p>
<p className="text-xs text-muted">Captions and labels</p>

// Financial numbers — tracking-tight + tabular-nums
<span className="tracking-tight tabular-nums">$1,234.56</span>

Financial Data

For financial numbers, always use tabular-nums for proper alignment and tracking-tight for a compact, polished look.

$1,234.56$12,345.67$123,456.78
<span className="tabular-nums tracking-tight">$1,234.56</span>

Type Scale Reference

NameClassSizeWeightTrackingUsage
H1text-3xl font-semibold30px600tracking-tighterPage titles
H2text-2xl font-semibold24px600tracking-tighterSection headers
H3text-xl font-semibold20px600tracking-tightSubsections
Bodytext-base16px400DefaultParagraphs
Smalltext-sm14px400DefaultSecondary text
XSmalltext-xs12px400DefaultLabels, captions

On this page