dark mode

forgot to switch branches. Started working on dark mode by creating a theme for the app
This commit is contained in:
2025-07-10 14:59:13 +00:00
committed by vkuchenik
parent 6bb10060e5
commit 0190bf7c72
4 changed files with 20 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
import { extendTheme } from "@chakra-ui/react";
const theme = extendTheme({
semanticTokens: {
colors: {
primary: {
defualt: 'white',
_dark: 'grey.800'
},
},
},
});
export default theme;