Text Styles
Learn how to use text styles to define typography related properties.
Text styles allows you to define textual css properties. The common properties are:
- Font: font family, weight, size
- Line height
- Letter spacing
- Text decoration
- Text transform
Text styles are defined using the defineTextStyles function.
import { defineTextStyles } from "@chakra-ui/react"
export const textStyles = defineTextStyles({
  body: {
    description: "The body text style - used in paragraphs",
    value: {
      fontFamily: "Inter",
      fontWeight: "500",
      fontSize: "16px",
      lineHeight: "24",
      letterSpacing: "0",
      textDecoration: "None",
      textTransform: "None",
    },
  },
})Chakra UI provides a set of built-in text styles.
textStyle: xs
Chakra UI
textStyle: sm
Chakra UI
textStyle: md
Chakra UI
textStyle: lg
Chakra UI
textStyle: xl
Chakra UI
textStyle: 2xl
Chakra UI
textStyle: 3xl
Chakra UI
textStyle: 4xl
Chakra UI
textStyle: 5xl
Chakra UI
textStyle: 6xl
Chakra UI
textStyle: 7xl
Chakra UI
To use the text styles, update the theme object with the textStyles
property.
import { createSystem, defineConfig } from "@chakra-ui/react"
import { textStyles } from "./text-styles"
const config = defineConfig({
  theme: {
    extend: {
      textStyles,
    },
  },
})
export default createSystem(defaultConfig, config)After updating the theme, run this command to generate the typings.
npx @chakra-ui/cli@next typegenNow you can use textStyle property in your components.
<Box textStyle="body">This is the body text style</Box>