OGXOGX

Typography Classes

Font size, weight, alignment, and text utilities

Font Size

ClassSizeLine Height
text-xs12px16px
text-sm14px20px
text-base16px24px
text-lg18px28px
text-xl20px28px
text-2xl24px32px
text-3xl30px36px
text-4xl36px40px
text-5xl48px48px
text-6xl60px60px
text-7xl72px72px
text-8xl96px96px
text-9xl128px128px
'text-6xl'       // 60px font
'text-[42px]'    // Arbitrary 42px

Font Weight

ClassWeight
font-thin100
font-extralight200
font-light300
font-normal400
font-medium500
font-semibold600
font-bold700
font-extrabold800
font-black900

Text Alignment

ClassCSS Output
text-lefttext-align: left
text-centertext-align: center
text-righttext-align: right
text-justifytext-align: justify

Line Height

ClassValue
leading-none1
leading-tight1.25
leading-snug1.375
leading-normal1.5
leading-relaxed1.625
leading-loose2
leading-{n}Spacing scale

Letter Spacing

ClassValue
tracking-tighter-0.05em
tracking-tight-0.025em
tracking-normal0
tracking-wide0.025em
tracking-wider0.05em
tracking-widest0.1em

Text Transform

ClassCSS Output
uppercasetext-transform: uppercase
lowercasetext-transform: lowercase
capitalizetext-transform: capitalize
normal-casetext-transform: none

Text Decoration

ClassCSS Output
underlinetext-decoration: underline
line-throughtext-decoration: line-through
no-underlinetext-decoration: none

Whitespace

ClassCSS Output
whitespace-normalwhite-space: normal
whitespace-nowrapwhite-space: nowrap
whitespace-prewhite-space: pre
whitespace-pre-linewhite-space: pre-line
whitespace-pre-wrapwhite-space: pre-wrap

Text Overflow

ClassDescription
truncateTruncate with ellipsis (overflow + nowrap)
text-ellipsistext-overflow: ellipsis
text-cliptext-overflow: clip

Object Fit (for images)

ClassCSS Output
object-containobject-fit: contain
object-coverobject-fit: cover
object-noneobject-fit: none

Example: Heading Styles

// Large bold heading
'text-6xl font-bold tracking-tight'

// Subtitle
'text-xl text-zinc-400 leading-relaxed'

// Uppercase label
'text-sm font-medium uppercase tracking-widest'

On this page