Skip to content
Skip to content

Theme typography

Learn about the default theme's typography system and how to customize it.

Joy UI includes a typography system within the theme to help you create consistent text across your application. You can customize the default system or start from scratch depending on your needs.

Default system

The default system consists of 13 built-in levels:

  • body1 - the baseline typography for the application, used as the default configuration in the Typography and CssBaseline components.
  • body2 through body5 - can be used for secondary and tertiary information.
  • The h1 to h6 levels follow the semantic HTML headings.
  • The display1 and display2 usually appear as taglines for marketing and landing pages.

Level

Color

Font size

Font weight

Line height

Letter spacing

display1

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl7, 4.5rem)

var(--joy-fontWeight-xl, 700)

var(--joy-lineHeight-sm, 1.25)

var(--joy-letterSpacing-sm, -0.01em)

display2

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl6, 3.75rem)

var(--joy-fontWeight-xl, 700)

var(--joy-lineHeight-sm, 1.25)

var(--joy-letterSpacing-sm, -0.01em)

h1

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl5, 3rem)

var(--joy-fontWeight-lg, 600)

var(--joy-lineHeight-sm, 1.25)

var(--joy-letterSpacing-sm, -0.01em)

h2

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl4, 2.25rem)

var(--joy-fontWeight-lg, 600)

var(--joy-lineHeight-sm, 1.25)

var(--joy-letterSpacing-sm, -0.01em)

h3

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl3, 1.875rem)

var(--joy-fontWeight-md, 500)

var(--joy-lineHeight-sm, 1.25)

-

h4

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl2, 1.5rem)

var(--joy-fontWeight-md, 500)

var(--joy-lineHeight-md, 1.5)

-

h5

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-xl, 1.25rem)

var(--joy-fontWeight-md, 500)

var(--joy-lineHeight-md, 1.5)

-

h6

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-lg, 1.125rem)

var(--joy-fontWeight-md, 500)

var(--joy-lineHeight-md, 1.5)

-

body1

var(--joy-palette-text-primary, var(--joy-palette-neutral-800, #25252D))

var(--joy-fontSize-md, 1rem)

-

var(--joy-lineHeight-md, 1.5)

-

body2

var(--joy-palette-text-secondary, var(--joy-palette-neutral-600, #5A5A72))

var(--joy-fontSize-sm, 0.875rem)

-

var(--joy-lineHeight-md, 1.5)

-

body3

var(--joy-palette-text-tertiary, var(--joy-palette-neutral-500, #73738C))

var(--joy-fontSize-xs, 0.75rem)

-

var(--joy-lineHeight-md, 1.5)

-

body4

var(--joy-palette-text-tertiary, var(--joy-palette-neutral-500, #73738C))

var(--joy-fontSize-xs2, 0.625rem)

-

var(--joy-lineHeight-md, 1.5)

-

body5

var(--joy-palette-text-tertiary, var(--joy-palette-neutral-500, #73738C))

var(--joy-fontSize-xs3, 0.5rem)

-

var(--joy-lineHeight-md, 1.5)

-

Customizing the default system

To customize a default level, provide its name as a key and an object containing CSS rules as a value to theme.typography.

The example below illustrates the customization of the display1 level:

Gradient text
Press Enter to start editing

Removing the default system

Use undefined as a value to remove any unneeded levels:

const customTheme = extendTheme({
  typography: {
    h5: undefined,
    h6: undefined,
    body4: undefined,
    body5: undefined,
  },
});

For TypeScript, you must augment the theme structure to exclude the default levels:

// You can put this to any file that's included in your tsconfig
declare module '@mui/joy/styles' {
  interface TypographySystemOverrides {
    h5: false;
    h6: false;
    body4: false;
    body5: false;
  }
}

Adding more levels

You can define a new level as a key-value pair in theme.typography, where the key is the name of the level and the value is an object containing CSS rules. The demo below shows how to add a new level called kbd:

Press + k to search the documentation.

For TypeScript, you must augment the theme structure to include the new level:

// You can put this to any file that's included in your tsconfig
declare module '@mui/joy/styles' {
  interface TypographySystemOverrides {
    kbd: true;
  }
}

Usage

There are several ways that you can use the theme typography in your application:

  • Typography component: use the level prop to change between theme typography levels:

    // use the `theme.typography.body2` styles
    <Typography level="body2">Secondary info</Typography>
    
  • CSS Baseline component: by default, it applies the body1 level to the global stylesheet:

    <CssBaseline />
    
    // inherits the `theme.typography.body1` styles
    <p>Hello World</p>
    
  • sx prop: use typography: $level to get the specific theme typography level:

    // to apply the `theme.typography.body2` styles:
    <Box sx={{ typography: 'body2' }}>Small text</Box>
    
  • styled: create a custom component and apply the style from theme.typography.* directly:

    import { styled } from '@mui/joy/styles';
    
    const Tag = styled('span')((theme) => ({
      ...theme.typography.body2,
      color: 'inherit',
      borderRadius: theme.vars.radius.xs,
      boxShadow: theme.vars.shadow.sm,
      padding: '0.125em 0.375em',
    }));
    

Common examples

Here is a collection of well-known typography systems that you can use with Joy UI. Feel free to submit a PR to add your favorite if it's not here. ❤️

Microsoft's Fluent

Apple's Human Interface Guidelines

Google's Material Design 3