mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { extendTheme, type ThemeConfig } from '@chakra-ui/react';
|
|
|
|
const config: ThemeConfig = {
|
|
initialColorMode: 'dark',
|
|
};
|
|
|
|
export const theme = extendTheme({
|
|
config,
|
|
});
|