From 596340f811d144fcef3237003ac84798614bc3b4 Mon Sep 17 00:00:00 2001 From: Michal Sapka Date: Tue, 6 Sep 2022 22:42:59 +0200 Subject: feat: theme switcher button --- lib/theme.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') 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); } } } -- cgit v1.2.3