9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
|
import { extendTheme, ThemeConfig } from "@chakra-ui/react"
|
||
|
// 2. Add your color mode config
|
||
|
const config = {
|
||
|
initialColorMode: "dark",
|
||
|
useSystemColorMode: false,
|
||
|
}
|
||
|
// 3. extend the theme
|
||
|
const theme = extendTheme({ config })
|
||
|
export default theme
|