Files
impersonator/src/theme.ts

11 lines
215 B
TypeScript
Raw Normal View History

2022-01-22 05:35:21 +05:30
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
2021-08-22 03:44:44 +05:30
2022-01-22 05:35:21 +05:30
const config: ThemeConfig = {
2021-08-22 03:44:44 +05:30
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({ config });
export default theme;