Text

Constrained, purposeful text styles as a component.

Example

Text

Props

Alignment

The horizontal alignment of content inside the text element.

Element placement should be handled by layout primitives, like Flex and Grid. Alignment should be employed sparingly.

The align prop is only supported on top-level components, and will be ignored on nested components (descendants of another Text component).

Logical alignment

Use logical values of "start" and "end" in most cases, since they respond to locale direction.

Start (default)CenterEnd

Avoid center-aligned text when you expect it to wrap. The starting edge moves around making it harder to read, especially for those with cognitive disabilities or dyslexia.

Forced alignment

Only use special values "FORCE_left" and "FORCE_right" in rare cases where locale direction should be ignored, such as numeric text within a tabular container.

LeftRight

Casing

How to transform the casing of the element’s contents, if at all.

Capitalize

Use with caution, typically on a single word. Title case shouldn’t apply to articles (a, an, the) and most prepositions (in, on, for, etc), but the "capitalize" text transform doesn’t discriminate. Consider an alternative JS solution for complex requirements.

The five boxing wizards jump quickly.

Lowercase

Text in strictly "lowercase" should rarely be required, and has mostly been included for completeness.

The five boxing wizards jump quickly.

Uppercase

Reserve "uppercase" for short title content. Large blocks of uppercase text present accessibility concerns, which should be avoided.

The five boxing wizards jump quickly.

Color

Color can be used to express emotion and tone, as well as place emphasis and create associations. The use of color in the system should correlate with the tone of voice being used.

Neutral colors

Use neutral colors to convey information without attracting too much attention.

Neutral EmphasisUse to emphasize a text that is more important than nearby text.
Neutral (default)Use for most body copy.
Neutral SecondaryUse to de-emphasize some text that is less important than other nearby text.
Neutral TertiaryUse to de-emphasize a piece of text that is significantly less important.

Functional colors

Functional colors are associated with specific app behaviours.

HighlightBring the user’s attention to something without implying intent.
PendingSomething has changed, but hasn’t yet been confirmed.
AccentThe accent color is typically reserved for interactive elements.

Semantic colors

Use semantic colors to clearly and predictably communicate status-based information to the user.

PositiveLet the user know about something good. Think “completed task”, “increasing value”, “upward trend” etc.
CautionSomething that needs attention, but is low urgency.
CriticalSuper important; the user needs to see this. Think “error message”, “delete item”, “downward trend” etc.

Overflow

How to handle white space and line breaks when the element’s text would otherwise overflow its content box.

You may also truncate text, which is a related but separate concern.

Break word

The "breakword" behaviour is employed as the default for safety. Allowing content to overflow its container should be a deliberate decision. This helps to avoid an unusually long string of text causing layout problems.

While pneumonoultramicroscopicsilicovolcanoconiosis is an actual medical term, most people will never hear a doctor (attempt to) say this absurdly long word.

No wrap

Prevent the text from wrapping onto multiple lines. Only use "nowrap" when you expect the content to be extremely short, and may otherwise be “squashed” by surrounding elements.

While pneumonoultramicroscopicsilicovolcanoconiosis is an actual medical term, most people will never hear a doctor (attempt to) say this absurdly long word.

Unset

When overflow is "unset" the browser will break lines according to normal line breaking rules. Words or unbroken strings (like URLs) will not break, even if they overflow the container.

While pneumonoultramicroscopicsilicovolcanoconiosis is an actual medical term, most people will never hear a doctor (attempt to) say this absurdly long word.

Size

The size of text should correlate with the importance of the content, and its position in the information hierarchy.

Font sizes will responsively adjust depending on the device. Learn about platform scales in the typographic concepts guide.

Small

Only use "small" text for secondary content, like image captions and tooltips.

Small — The five boxing wizards jump quickly.

Regular

Use "regular" size text for UI controls and short messages.

As the default value it should typically be omitted, and is only included for illustrative purposes in the example below.

Regular — The five boxing wizards jump quickly.

Medium

Consider "medium" text for long-form content, especially where users must concentrate on editing the text.

Medium — The five boxing wizards jump quickly.

Large

The "large" size should typically be reserved for cases that are heading adjacent, like summary content following a title.

Large — The five boxing wizards jump quickly.

Truncate

Limit the contents of the element to the specified number of lines, or provide a shorthand boolean to conveniently express a single line.

Only truncate user-generated content that may not fit within a particular layout. Learn more about how and when to truncate text in the typographic concepts guide.

A voussoir (/vuˈswɑːr/) is a wedge-shaped element, typically a stone, which is used in building an arch or vault. Although each unit in an arch or vault is a voussoir, two units are of distinct functional importance: the keystone and the springer. The keystone is the centre stone or masonry unit at the apex of an arch. The springer is the lowest voussoir on each side, located where the curve of the arch springs from the vertical support or abutment of the wall or pier.

Variant

A subset of values available on the CSS font-variant-numeric property, which enable additional glyphs for numbers.

Diagonal fractions

Use "diagonal-fractions" to display fractions in a smaller format where the numerator (top number) and denominator (bottom number) are divided by a diagonal slash.

1/2 3/4 5/6

Ordinal

Use "ordinal" to enable special glyphs for ordinal markers.

1st 2nd 3rd 4th

Slashed zero

Use "slashed-zero" when a clear distinction between O and 0 is needed.

012OQR

Tabular numbers

Use "tabular-nums" when numbers should have uniform widths, for clean formatting in tabular data contexts.

Right align numbers when they're in tabular data contexts. This keeps the decimal in the same place and makes numerical data easier to read and compare.

12121.21
90909.09

Visually hidden

Text content can be visually hidden and made accessible to assistive technologies using the visuallyHidden prop.

Danger: This action is not reversible.

Weight

The weight determines how “bold” or “light” the text will appear.

Regular

Use the "regular" weight for most body copy.

As the default value it should typically be omitted, and is only included for illustrative purposes in the example below.

Regular — The five boxing wizards jump quickly.

Medium

The "medium" weight is most commonly used for interactive elements.

Medium — The five boxing wizards jump quickly.

Semi Bold

The "semibold" weight should only be used to indicate that an interactive element is “selected”, distinguishing it from its nearby counterparts.

Semibold — The five boxing wizards jump quickly.

Bold

Reserve "bold" text for titles and emphasis. Use sparingly to avoid diluting its impact.

Bold — The five boxing wizards jump quickly.

Patterns

Line height

The line-height of each a Text element is baked into its size and unfortunately can’t be changed. Attempting to force the line-height of a text element manually will result in unexpected side-effects.

Learn about spacing in the typographic concepts guide.

Line length

Wide lines of text are difficult to read and make it harder for people to focus. While variable screen sizes make it difficult, aim for around 60 and no more than 80 characters per line including spacing.

Numerical data

Use tabular numbers for numerical data. In tables, numbers should be right aligned to make numerical data easier to read and compare. This applies to things like time stamps, currency values, etc.

© 2025 @jossmac