nyx-dashboard/chakra_config/theme.js
2021-06-27 18:44:22 +08:00

9 lines
No EOL
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