2022-08-27 15:58:36 +02:00
|
|
|
import { extendTheme, type ThemeConfig } from '@chakra-ui/react';
|
2022-03-13 22:30:57 +01:00
|
|
|
|
|
|
|
|
const config: ThemeConfig = {
|
2022-08-27 15:58:36 +02:00
|
|
|
initialColorMode: 'dark',
|
|
|
|
|
};
|
2022-03-13 22:30:57 +01:00
|
|
|
|
2022-03-19 12:57:49 +01:00
|
|
|
export const theme = extendTheme({
|
2022-08-27 15:58:36 +02:00
|
|
|
config,
|
|
|
|
|
});
|