Actual CSS

Text Helpers

Lightweight helpers for muted or secondary text without a full color scale.

Class reference

ClassKindDescription
.mutedUtilitySecondary text color.
.text-startUtilityLogical start-aligned text; sets --text-align.
.text-centerUtilityCentered text; sets --text-align.
.text-endUtilityLogical end-aligned text; sets --text-align.
.text-balanceUtilityBalanced line wrapping (text-wrap: balance).
.text-prettyUtilityPretty line wrapping (text-wrap: pretty).
.leadUtilitySlightly larger, relaxed reading-introduction paragraph.

Muted

Use .muted for secondary text when no semantic element already carries the meaning.

Last updated June 12, 2026.

<p class="muted">Last updated June 12, 2026.</p>
.muted {
  color: var(--text-muted);
}

Do not create a full text color utility scale. Intent colors belong to components and state, not arbitrary text decoration.

Text alignment

Use .text-start, .text-center, or .text-end when a component or layout primitive does not already set alignment. These use logical properties so they follow the writing direction.

Text wrap

.text-balance and .text-pretty opt elements outside .prose into balanced or pretty text wrapping. They are safe progressive enhancements: browsers that do not support a text-wrap value ignore that declaration and keep normal wrapping.

Lead

.lead is a slightly larger, more relaxed reading-introduction paragraph (1.125em, --line-height-relaxed). Use it for introductory text in editorial surfaces. For fluid headline sizing, use src/css/typography/fluid.css.

Actual CSS

Search documentation