Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
352 Bytes
import { extendTheme } from '@chakra-ui/react';
import { styles } from './globalStyles';
import { colors } from './colors';
const breakpoints = {
xl: '1024px',
};
const config = {
initialColorMode: 'light',
useSystemColorMode: true,
};
const theme = extendTheme({
styles,
breakpoints,
colors,
config,
});
export default theme;