summaryrefslogtreecommitdiff
path: root/lib/theme.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/theme.tsx')
-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);
}
}
}