forgot to switch branches. Started working on dark mode by creating a theme for the app
14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
import { extendTheme } from "@chakra-ui/react";
|
|
|
|
const theme = extendTheme({
|
|
semanticTokens: {
|
|
colors: {
|
|
primary: {
|
|
defualt: 'white',
|
|
_dark: 'grey.800'
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
export default theme; |