nyx-dashboard/chakra_config/theme.js

8 lines
206 B
JavaScript
Raw Permalink Normal View History

2023-03-03 17:48:43 +01:00
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const config = {
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({ config });
export default theme;