mosh-game-hub/src/theme.ts
2023-02-28 10:16:23 -08:00

9 lines
184 B
TypeScript

import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const config: ThemeConfig = {
initialColorMode: 'dark'
};
const theme = extendTheme({ config });
export default theme;