mosh-game-hub/src/theme.ts

9 lines
184 B
TypeScript
Raw Normal View History

2023-02-28 19:16:23 +01:00
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const config: ThemeConfig = {
initialColorMode: 'dark'
};
const theme = extendTheme({ config });
export default theme;