Skip to content
Theme UI
GitHub

Variants

To add groups of styles based on theme values, you can take advantage of the Variants feature. Variants allow you to define the styles used across multiple buttons, typographic elements, or any element in your theme object.

For example, you can define primary and secondary variants for buttons and use colors from the theme.

// example theme with variants
{
colors: {
primary: '#07c',
secondary: '#639',
},
buttons: {
primary: {
color: 'white',
bg: 'primary',
},
secondary: {
color: 'white',
bg: 'secondary',
},
},
}

With the theme object above, the buttons variants can be referenced in the sx prop.

<button sx={{ variant: 'buttons.primary' }} />

When using the built-in Button component, you can set these styles with the variant prop.

<Button variant='secondary' />

Color Modes

Variants will also work with color modes. With the example below, the primary button will adapt its colors based on the current color mode.

// example theme with button variants and color modes
{
colors: {
text: '#000',
background: '#fff',
primary: '#0c7',
modes: {
dark: {
text: '#000',
background: '#fff',
primary: '#0c7',
},
},
},
buttons: {
primary: {
color: 'background', // use the page background color for an inverted effect
bg: 'primary',
},
}
}

Typography

Variants can also be used to create typographic styles, similar to how graphics applications store text styles. This allows you to define core typographic values and use them as complete styles, but still override individual values when needed.

// example theme with typographic variants
{
fonts: {
body: 'system-ui, sans-serif',
heading: 'Poppins, sans-serif',
monospace: 'Menlo, monospace',
},
lineHeights: {
body: 1.5,
heading: 1.125,
},
fontWeights: {
body: 400,
heading: 900,
bold: 700,
},
letterSpacings: {
heading: '-0.05em',
caps: '0.1em',
},
text: {
heading: {
fontFamily: 'heading',
fontWeight: 'heading',
lineHeight: 'heading',
letterSpacing: 'heading',
},
display: {
fontFamily: 'heading',
fontWeight: 'heading',
lineHeight: 'heading',
letterSpacing: 'heading',
fontSize: [ 5, 6, 7 ],
},
caps: {
textTransform: 'uppercase',
letterSpacing: 'caps',
},
},
}

These variants can then be used in the theme.styles object, with the sx prop, or with the Text or Heading components.

// example usage of typographic variants
<h1 sx={{ variant: 'text.display' }} />
<p sx={{ variant: 'text.caps' }} />
<h2
sx={{
variant: 'text.heading',
// overriding the default styles
fontWeight: 'body',
}}
/>

Themeable Layout Components

Variants can also be used to create themeable layout components. This is especially useful when creating Gatsby themes, where you'd like certain parts of your page layout to be customizable.

Using the variant key in the sx prop allows you to define styles for a component that can optionally be overridden from the theme object. When the variant is undefined in the theme, no additional styles are applied to the element.

Read the Layouts Guide to learn more.

Edit the page on GitHub
Previous:
Object Styles
Next:
Layouts