Skip to main content
type FontWeight =
  | "ultraLight"
  | "thin"
  | "light"
  | "regular"
  | "medium"
  | "semibold"
  | "bold"
  | "heavy"
  | "black";

Values

ultraLight
string
The lightest font weight. Very thin strokes.
thin
string
A very light font weight. Thinner than light but heavier than ultraLight.
light
string
A light font weight. Lighter than regular.
regular
string
The standard font weight. This is the default weight for most text.
medium
string
A medium font weight. Slightly heavier than regular.
semibold
string
A semi-bold font weight. Heavier than medium but lighter than bold.
bold
string
A bold font weight. The standard bold appearance for emphasis.
heavy
string
A heavy font weight. Heavier than bold.
black
string
The heaviest font weight. Very thick strokes.

Usage

Text("Hello World")
  .fontWeight("bold")

Text("Subtle text")
  .fontWeight("light")

Text("Heavy emphasis")
  .fontWeight("black")