millelibri/frontend/src/theme.ts

11 lines
219 B
TypeScript
Raw Normal View History

2023-01-07 20:40:21 +00:00
import { extendTheme, type ThemeConfig } from '@chakra-ui/react';
const config: ThemeConfig = {
initialColorMode: 'light',
useSystemColorMode: true
};
const theme = extendTheme({ config });
export default theme;