Files
Web-Frontend/client/src/theme.js
T
vkuchenik 0190bf7c72 dark mode
forgot to switch branches. Started working on dark mode by creating a theme for the app
2025-07-10 14:59:13 +00:00

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;