File size: 352 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;