nyx-dashboard/chakra_config/theme.js

8 lines
199 B
JavaScript
Raw Normal View History

2021-11-16 22:52:23 +01:00
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
2021-06-27 12:44:22 +02:00
const config = {
2021-11-16 22:52:23 +01:00
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({ config });
export default theme;