Customize Theme
By default, all Chakra components inherit values from the default theme. In some scenarios, you might need to customize the theme tokens to match your design requirements.
Here are some options depending on your goals:
- Customize the theme tokens like colors, font sizes, line heights, etc.
- Customize the component styles, changing the base styles, sizes, or variants.
- Customize the global styles.
Customizing theme tokens#
To extend or override a token in the default theme, import the extendTheme
function and add the keys you'd like to override. You can also add new values to
the theme.
For example, if you'd like to update the colors in the theme to include your brand colors, here's what you'll do:
// 1. Import `extendTheme`import { extendTheme } from "@chakra-ui/react"// 2. Call `extendTheme` and pass your custom valuesconst theme = extendTheme({colors: {brand: {100: "#f7fafc",// ...900: "#1a202c",},},})// 3. Pass the new theme to `ChakraProvider`<ChakraProvider theme={theme}><App /></ChakraProvider>// 4. Now you can use these colors in your componentsfunction Usage() {return <Box bg="brand.100">Welcome</Box>}
You can also use the color for the colorScheme
prop like this:
<Button colorScheme="brand">Click me</Button>
If you're curious as to what theme styles you can override, please reference the default theme foundation style files.
Customizing component styles#
Chakra has a specific approach or API for styling components. The main idea is
most components have default or base styles (baseStyle
), styles for different
sizes (sizes
), and styles for different visual variants (variants
).
It is important to understand this so you can override any component style effectively.
You're not limited to the component styles that Chakra provides, you can also create your own custom component styles. Learn more.
Customizing single components#
As we mentioned earlier, a component style consists of baseStyles
, sizes
,
variants
and an optional defaultProps
to denote the default size
or
variant
.
Here's what the component style object looks like:
const ComponentStyle = {// style object for base or default stylebaseStyle: {},// styles for different sizes ("sm", "md", "lg")sizes: {},// styles for different visual variants ("outline", "solid")variants: {},// default values for `size` and `variant`defaultProps: {size: "",variant: "",},}
For example, let's override the component styles for Chakra's Button component.
// theme.jsimport { extendTheme } from "@chakra-ui/react"const theme = extendTheme({components: {Button: {// 1. We can update the base stylesbaseStyle: {fontWeight: "bold", // Normally, it is "semibold"},// 2. We can add a new button size or extend existingsizes: {xl: {h: "56px",fontSize: "lg",px: "32px",},},// 3. We can add a new visual variantvariants: {"with-shadow": {bg: "red.400",boxShadow: "0 0 2px 2px #efdfde",},// 4. We can override existing variantssolid: (props) => ({bg: props.colorMode === "dark" ? "red.300" : "red.500",}),},},},})export default theme
That's it! When you use the Button from Chakra, these updates will be automatically applied.
<Button size="xl" variant="with-shadow">Welcome</Button>
If you're curious as to what component styles you can override, please reference the default component style files.
Customizing global styles#
Global styles are theme-aware styles you can apply to any html element globally.
To add global styles, update the theme.styles.global
key in the theme. Global
styles can be a style object or a function that returns a style object.
// theme.jsimport { extendTheme } from "@chakra-ui/react"import { mode } from "@chakra-ui/theme-tools"// Version 1: Using objectsconst theme = extendTheme({styles: {global: {// styles for the `body`body: {bg: "gray.400",color: "white",},// styles for the `a`a: {color: "teal.500",_hover: {textDecoration: "underline",},},},},})// Version 2: Using functionsconst overrides = extendTheme({styles: {global: (props) => ({body: {fontFamily: "body",color: mode("gray.800", "whiteAlpha.900")(props),bg: mode("white", "gray.800")(props),lineHeight: "base",},}),},})
Scaling out your project#
As your project grows in size, it is best to keep things organized. We highly
suggest that instead of using a single theme.js
(or theme.ts
) file, you
create a /theme
folder in its place. Inside this folder, you could have a
directory structure that looks like this:
📁 theme📄 index.js # my main theme entrypoint📄 styles.js # all my global style overrides📁 foundations📄 borders.js # all my border overrides📁 components📄 button.js # all my button overrides
This way, you can structure your main theme entrypoint file to be much cleaner, like this:
// theme.jsimport { extendTheme } from "@chakra-ui/react"// Global style overridesimport styles from "./styles"// Foundational style overridesimport borders from "./foundations/borders"// Component style overridesimport Button from "./components/button"const overrides = {styles,borders,// Other foundational style overrides go herecomponents: {Button,// Other components go here},}export default extendTheme(overrides)
None of these is strictly required to use Chakra - but we've learned some hard lessons on the "right" way and the "wrong" way to write styles. The above is our best suggestion on how to write style overrides and organize your custom theme.
In the next section, we'll show some examples of how to create custom component styles and use them in your components!