Skip to Content
DocsResourcesPricingShowcase

Sizes

Learn how to customize sizes in Chakra UI

info
Please read the first to learn how to properly customize the styling engine, and get type safety.

Here's an example of how to customize sizes in Chakra UI.

theme.ts

import { createSystem, defaultConfig, defineConfig } from "@chakra-ui/react"

const customConfig = defineConfig({
  theme: {
    tokens: {
      sizes: {
        "1/7": { value: "14.285%" },
        "2/7": { value: "28.571%" },
        "3/7": { value: "42.857%" },
      },
    },
  },
})

export const system = createSystem(defaultConfig, customConfig)

Set the value of any size related properties, like width, height, minWidth, minHeight, maxWidth, maxHeight, etc. to the sizes token.

<Box width="1/7" height="2/7" />

Previous

Recipes

Next

Spacing