Files
ox_lib/web/src/theme/index.ts
Luke a1d2607286 chore(web): update react and chakra versions
hopefully nothing broke that I didn't notice prayge
2022-10-27 16:44:47 +02:00

10 lines
178 B
TypeScript

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