summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichal Sapka <michal@sapka.me>2022-09-06 22:42:59 +0200
committerMichal Sapka <michal@sapka.me>2022-09-06 22:42:59 +0200
commit596340f811d144fcef3237003ac84798614bc3b4 (patch)
tree11be61870acf31379857beac37cb0d0a0562a5e0 /lib
parente3ae3ef10b78347187a01735b049d3275ffe98d4 (diff)
feat: theme switcher button
Diffstat (limited to 'lib')
-rw-r--r--lib/theme.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/theme.tsx b/lib/theme.tsx
index 5e2c0b6..ad9e6dc 100644
--- a/lib/theme.tsx
+++ b/lib/theme.tsx
@@ -4,10 +4,10 @@ import { mode } from '@chakra-ui/theme-tools'
type propsType = any
const styles = {
- global: (_props : propsType) => {
+ global: (props : propsType) => {
body: {
- //bg: mode('#d5d6db', '#24283b')(props),
- //color: mode('#0f4b6e', '#7dcfff')(props),
+ bg: mode('#d5d6db', '#24283b')(props);
+ color: mode('#0f4b6e', '#7dcfff')(props);
}
}
}