--- name: typography-font-text description: Font size, weight, style, text color, line height, letter spacing, and text decoration --- # Typography: Font & Text Utilities for font styling, text color, line height, letter spacing, and decoration. ## Usage ### Font size ```html
Extra small
Small
Base (default)
Large
Extra large
2xl
Arbitrary
``` ### Font weight ```html100
300
400
500
600
700
800
``` ### Font style and family ```htmlItalic
Not italic
Sans (default)
Serif
Monospace
``` ### Text color ```htmlDark text
Blue
50% opacity
Arbitrary color
CSS variable
``` ### Line height ```html1
1.25
1.5
1.625
2
Arbitrary
``` ### Letter spacing ```html-0.05em
-0.025em
0
0.025em
0.1em
``` ### Text decoration ```htmlUnderline
Strikethrough
Remove
Overline
Custom
``` ### Text transform and overflow ```htmlUPPERCASE
lowercase
Capitalize Each
Normal
Single line ellipsis
Ellipsis
Clamp to 3 lines
``` ## Key Points - Font size: `text-xs` through `text-9xl`, theme scale - Weight: `font-thin` to `font-black` - Color: `text-{color}-{shade}`, opacity modifier `/50`, arbitrary `text-[#hex]` - Line height: `leading-none`, `leading-tight`, `leading-normal`, `leading-loose` - Letter spacing: `tracking-tighter` to `tracking-widest` - Decoration: `underline`, `line-through`, `no-underline`, `decoration-*`, `underline-offset-*` - Overflow: `truncate` (ellipsis), `line-clamp-{n}`