Leave Yamada UI a star

Star
Yamada UIYamada UIv1.6.4

Customize Theme

All components of Yamada UI inherit styles and tokens from the theme. Depending on the scenario, you may need to customize things like color to match your project.

Theme Usage

If you customize the theme, it is recommended to use type completion. Type completion uses the CLI.

Considering that the theme's tokens and styles may be added or changed during development, it is recommended to keep the theme in a folder.

./theme
├ components # Folder to define the styles of each component
├ tokens # Folder to define each token
├ styles # Folder to define global styles and reset styles
├ config.ts # File to set the config
└ index.ts # File to export the theme by default
Copied!

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
// import { styles } from "./styles"
// import { components } from "./components'"
// import { tokens } from './tokens'
const customTheme: UsageTheme = {
// styles,
// components,
// ...tokens,
}
export const theme = extendTheme(customTheme)()
Copied!

Applying Theme

To apply a theme, pass it to theme of UIProvider.

In the case of Create React App.

index.tsx

import { createRoot } from "react-dom/client"
import { App } from "./app"
import { UIProvider } from "@yamada-ui/react"
import { theme } from "theme"
const container = document.getElementById("app")
const root = createRoot(container!)
root.render(
<UIProvider theme={theme}>
<App />
</UIProvider>,
)
Copied!

In the case of Next.js.

_app.tsx

import type { AppProps } from "next/app"
import { UIProvider } from "@yamada-ui/react"
import { theme } from "theme"
const App = ({ Component, pageProps }: AppProps) => {
return (
<UIProvider theme={theme}>
<Component {...pageProps} />
</UIProvider>
)
}
export default App
Copied!

In the case of Vite.

.main.tsx

import React from "react"
import ReactDOM from "react-dom/client"
import App from "./App.tsx"
import { UIProvider } from "@yamada-ui/react"
import { theme } from "theme"
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<UIProvider theme={theme}>
<App />
</UIProvider>
</React.StrictMode>,
)
Copied!

Changing Tokens

This time, let's try changing new and existing tokens in colors.

Create colors.ts under tokens.

./theme/tokens/colors.ts

import { ThemeTokens } from "@yamada-ui/react"
export const colors: ThemeTokens = {
banner: "#9d38a0",
black: ["#1F2123", "#101112"],
}
Copied!

Create index.ts and export the colors you created earlier.

./theme/tokens/index.ts

import { colors } from "./colors"
export const tokens = { colors }
Copied!

Include tokens in customTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
// import { styles } from "./styles"
// import { components } from "./components'"
import { tokens } from "./tokens"
const customTheme: UsageTheme = {
// styles,
// components,
...tokens,
}
export const theme = extendTheme(customTheme)()
Copied!

If you don't want to inherit only colors from the default theme, pass omit to extendTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
// import { styles } from "./styles"
// import { components } from "./components'"
import { tokens } from "./tokens"
const customTheme: UsageTheme = {
// styles,
// components,
...tokens,
}
export const theme = extendTheme(customTheme)({ omit: ["colors"] })
Copied!

Setting Responsive Objects to Tokens

By default, theme tokens do not support responsive objects. If you want to enable responsive objects for theme tokens, set config.theme.responsive to true.

./theme/config.ts

import { extendConfig } from "@yamada-ui/react"
export const config = extendConfig({
theme: {
responsive: true,
},
})
Copied!

Set responsive objects to theme tokens.

./theme/tokens/spaces.ts

import type { ThemeTokens } from "@yamada-ui/react"
export const spaces: ThemeTokens = {
1: { base: "0.25rem", md: "0.125rem" },
2: { base: "0.5rem", md: "0.25rem" },
3: { base: "0.75rem", md: "0.375rem" },
4: { base: "1rem", md: "0.5rem" },
}
Copied!

Next, include spaces in the tokens in ./theme/index.ts as you did in Changing Tokens.

Changing Semantic Tokens

Within the semantic tokens, a color scheme used in each component is set.

Here are the actual values that are set.

export const semantics: ThemeSemantics = {
colors: {
primary: "blue.500",
secondary: "violet.500",
info: "blue.500",
success: "green.500",
warning: "orange.500",
danger: "red.500",
link: "blue.500",
},
colorSchemes: {
primary: "blue",
secondary: "violet",
info: "blue",
success: "green",
warning: "orange",
danger: "red",
link: "blue",
},
spaces: {
xs: "1",
sm: "2",
md: "4",
normal: "6",
lg: "8",
xl: "12",
"2xl": "16",
"3xl": "24",
"4xl": "32",
},
}
Copied!

This time, let's try changing the default color scheme.

Create semantics.ts under theme.

./theme/semantics.ts

import { ThemeSemantics } from "@yamada-ui/react"
export const semantics: ThemeSemantics = {
colors: {
primary: "pink.500",
},
colorSchemes: {
primary: "pink",
},
}
Copied!

Include semantics in customTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
// import { styles } from "./styles"
// import { components } from "./components'"
import { tokens } from "./tokens"
import { semantics } from "./semantics"
const customTheme: UsageTheme = {
// styles,
// components,
semantics,
...tokens,
}
export const theme = extendTheme(customTheme)()
Copied!

Changing Styles

You can set globalStyle, resetStyle, layerStyles, textStyles, etc. in styles.

This time, let's try changing the globalStyle that sets the style of body.

Create global-style.ts under styles.

./theme/styles/global-style.ts

import { UIStyle } from "@yamada-ui/react"
export const globalStyle: UIStyle = {
body: {
bg: ["black", "white"],
},
}
Copied!

Create index.ts and export the globalStyle you just created.

./theme/styles/index.ts

import { globalStyle } from "./global-style"
export const styles = { globalStyle }
Copied!

Include styles in customTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
import { styles } from "./styles"
// import { components } from "./components'"
import { tokens } from "./tokens"
import { semantics } from "./semantics"
const customTheme: UsageTheme = {
styles,
// components,
semantics,
...tokens,
}
export const theme = extendTheme(customTheme)()
Copied!

If you don't want to inherit only styles from the default theme, pass omit to extendTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
import { styles } from "./styles"
// import { components } from "./components'"
import { tokens } from "./tokens"
import { semantics } from "./semantics"
const customTheme: UsageTheme = {
styles,
// components,
semantics,
...tokens,
}
export const theme = extendTheme(customTheme)({ omit: ["styles"] })
Copied!

Changing the Style of Components

Depending on the project, you may want to change the style of Yamada UI's components. Since Yamada UI's components refer to the style of the theme, you can easily change the style of the components.

The style of a component is composed of the basic style of the component (baseStyle), styles of various sizes (sizes), styles of various visuals (variants), and default props (defaultProps).

This time, let's change the Container component.

Create container.ts under components.

./theme/components/container.ts

import { ComponentStyle } from "@yamada-ui/react"
export const Container: ComponentStyle = {
baseStyle: {
bg: "green.100",
},
sizes: {
sm: { p: "sm", fontSize: "sm" },
md: { p: "md", fontSize: "md" },
lg: { p: "lg", fontSize: "lg" },
},
variants: {
"with-border-solid": {
borderWidth: "1px",
},
"with-border-dotted": {
borderWidth: "1px",
borderStyle: "dotted",
},
},
defaultProps: {
size: "md",
variant: "with-border-solid",
},
}
Copied!

Create index.ts and export the Container you just created.

./theme/components/index.ts

import { Container } from "./container"
export const components = { Container }
Copied!

Include components in customTheme.

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
import { styles } from "./styles"
import { components } from "./components"
import { tokens } from "./tokens"
import { semantics } from "./semantics"
const customTheme: UsageTheme = {
styles,
components,
semantics,
...tokens,
}
export const theme = extendTheme(customTheme)()
Copied!

Now, the background color of Container is changed, and the style is changed by passing size or variant.

import { Container } from "@yamada-ui/react"
const Demo = () => {
return (
<Container size="sm" variant="with-border-dotted">
This is Container
</Container>
)
}
Copied!

Utility

Yamada UI provides many theme utilities.

Using extendTheme

Create a new theme by inheriting the default theme. It is also possible to pass multiple objects and specify options.

Merging multiple themes

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
const firstTheme: UsageTheme = {}
const secondTheme: UsageTheme = {}
export const theme = extendTheme(firstTheme, secondTheme)()
Copied!

Not inheriting the default theme

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
const firstTheme: UsageTheme = {}
const secondTheme: UsageTheme = {}
export const theme = extendTheme(firstTheme, secondTheme)({ merge: false })
Copied!

Inheriting from the default theme excluding specific tokens

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
const customTheme: UsageTheme = {}
export const theme = extendTheme(customTheme)({ omit: ["colors"] })
Copied!

Inheriting only specific tokens from the default theme

./theme/index.ts

import { extendTheme, UsageTheme } from "@yamada-ui/react"
const customTheme: UsageTheme = {}
export const theme = extendTheme(customTheme)({ pick: ["spaces"] })
Copied!

Using extendBaseTheme

This creates a new theme that inherits only the tokens such as global styles and colors of the default theme. It is also possible to pass multiple objects and specify options.

./theme/index.ts

import { extendBaseTheme, UsageTheme } from "@yamada-ui/react"
import { styles } from "./styles"
import { tokens } from "./tokens"
const customTheme: UsageTheme = {
styles,
...tokens,
}
export const theme = extendBaseTheme(customTheme)()
Copied!

Using extendStyle

Create a new style by inheriting globalStyle or resetStyle.

import { extendStyle, UIStyle } from "@yamada-ui/react"
const globalStyle: UIStyle = extendStyle("globalStyle", {
/**
* Define additional styles
*/
})
Copied!

Using extendToken

This creates a new token by inheriting a specific token.

import { extendToken, ThemeTokens } from "@yamada-ui/react"
const colors: ThemeTokens = extendToken("colors", {
/**
* Define additional tokens
*/
})
Copied!

Using extendComponent

This creates the style of a new component by inheriting the style of a specific component.

import { extendComponent, ComponentStyle } from "@yamada-ui/react"
const Button: ComponentStyle = extendComponent("Button", {
/**
* Define additional `baseStyle` and `sizes`
*/
})
Copied!

Using extendComponentSize

This creates the size of a new component by inheriting the size of a specific component.

import { extendComponentSize, ComponentStyle } from "@yamada-ui/react"
const Tag: ComponentStyle = {
baseStyle: {
/**
* Define a new style
*/
},
sizes: extendComponentSize("Tag", {
/**
* Define additional sizes
*/
}),
}
Copied!

Using extendComponentVariant

This creates a new component variant by inheriting a specific component's variant.

import { extendComponentVariant, ComponentStyle } from "@yamada-ui/react"
const Tag: ComponentStyle = {
baseStyle: {
/**
* Define new style
*/
},
variants: extendComponentVariant("Tag", {
/**
* Define additional variants
*/
}),
}
Copied!

Using extendComponentDefaultProps

This creates the props of a new component by inheriting the props of a specific component.

import { extendComponentDefaultProps, ComponentStyle } from "@yamada-ui/react"
const Tag: ComponentStyle = {
baseStyle: {
/**
* Define new style
*/
},
defaultProps: extendComponentDefaultProps("Tag", {
/**
* Define additional props
*/
}),
}
Copied!

Usage of withDefaultSize

It changes the default size of all or some components.

./theme/index.ts

import { extendTheme, withDefaultSize } from "@yamada-ui/react"
/**
* omitted
*/
export const theme = extendTheme(
customTheme,
withDefaultSize({
size: "lg",
components: ["Badge", "Tag", "Button"], // If you pass an empty array, it will be set for all components.
}),
)()
Copied!

Using withDefaultVariant

Changes the default variant of all or some components.

./theme/index.ts

import { extendTheme, withDefaultVariant } from "@yamada-ui/react"
/**
* omitted
*/
export const theme = extendTheme(
customTheme,
withDefaultVariant({
variant: "solid",
components: ["Badge", "Tag", "Button"], // If you pass an empty array, it will be set for all components.
}),
)()
Copied!

Using withDefaultColorScheme

Changes the default color scheme of all or some components.

./theme/index.ts

import { extendTheme, withDefaultColorScheme } from "@yamada-ui/react"
/**
* omitted
*/
export const theme = extendTheme(
customTheme,
withDefaultColorScheme({
colorScheme: "primary",
components: ["Badge", "Tag", "Button"], // If you pass an empty array, it will be set for all components.
}),
)()
Copied!

Usage of withDefaultProps

It changes all or part of the default props of the components at once.

./theme/index.ts

import { extendTheme, withDefaultProps } from "@yamada-ui/react"
/**
* omitted
*/
export const theme = extendTheme(
customTheme,
withDefaultProps({
defaultProps: {
size: "lg",
variant: "solid",
colorScheme: "primary",
},
components: ["Badge", "Tag", "Button"], // If you pass an empty array, it will be set for all components.
}),
)()
Copied!

Using generate

generate is a useful utility for customizing or generating theme tokens.

Customizing spacing

It generates new spaces by multiplying the specified number with the spaces in the default theme.

./theme/index.ts

import { extendTheme, withDefaultProps, generate } from "@yamada-ui/react"
export const theme = extendTheme({
spaces: generate.spaces(2),
})()
Copied!

This makes the spacing of the entire application twice as large.

Generating color tones

It generates tones (50 to 950) used in colorScheme.

./theme/index.ts

import { extendTheme, withDefaultProps, generate } from "@yamada-ui/react"
export const theme = extendTheme({
colors: {
red: generate.tones("#e82e34"),
},
})()
Copied!

Edit this page on GitHub

PreviousDefault ThemeNextComponent Styles