mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 07:26:02 +01:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
|
|
import { extendTheme, type ThemeConfig } from "@chakra-ui/react";
|
||
|
|
|
||
|
|
const config: ThemeConfig = {
|
||
|
|
initialColorMode: 'dark',
|
||
|
|
useSystemColorMode: false
|
||
|
|
}
|
||
|
|
|
||
|
|
export const theme = extendTheme({config})
|