nyx-dashboard/chakra_config/theme.js

9 lines
254 B
JavaScript
Raw Normal View History

2021-06-27 12:44:22 +02:00
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