Skip to content

Typography

Typography tokens cover font families, sizes, weights, and line heights.

Font Families

TokenValue
--pm-font-family-sanssystem-ui, -apple-system, 'Segoe UI', Roboto, ...
--pm-font-family-monoui-monospace, 'Cascadia Code', 'Source Code Pro', ...

Font Sizes

TokenValue
--pm-font-size-xs0.75rem (12px)
--pm-font-size-sm0.875rem (14px)
--pm-font-size-md1rem (16px)
--pm-font-size-lg1.125rem (18px)
--pm-font-size-xl1.25rem (20px)
--pm-font-size-2xl1.5rem (24px)
--pm-font-size-3xl1.875rem (30px)

Font Weights

TokenValue
--pm-font-weight-normal400
--pm-font-weight-medium500
--pm-font-weight-semibold600
--pm-font-weight-bold700

Line Heights

TokenValue
--pm-font-lineHeight-tight1.25
--pm-font-lineHeight-normal1.5
--pm-font-lineHeight-relaxed1.75

Usage

.my-heading {
font-family: var(--pm-font-family-sans);
font-size: var(--pm-font-size-2xl);
font-weight: var(--pm-font-weight-bold);
line-height: var(--pm-font-lineHeight-tight);
}