mirror of
https://github.com/mosh-hamedani/game-hub.git
synced 2026-05-21 12:14:32 +02:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
|
|
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
|
||
|
|
|
||
|
|
const config: ThemeConfig = {
|
||
|
|
initialColorMode: 'dark'
|
||
|
|
};
|
||
|
|
|
||
|
|
const theme = extendTheme({ config });
|
||
|
|
|
||
|
|
export default theme;
|