From 457a6c64f7f5d06f5058a3d16b9d93f5effbe8a2 Mon Sep 17 00:00:00 2001 From: pheralb Date: Tue, 21 Jun 2022 15:18:43 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=92=EF=B8=8F=20Fix=20theme.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/theme/index.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/theme/index.ts b/src/theme/index.ts index 6be1a57..f3962e0 100644 --- a/src/theme/index.ts +++ b/src/theme/index.ts @@ -21,8 +21,8 @@ const theme = extendTheme( dark: "#000000", }, brand: { - purple: "#4343E5" - } + purple: "#4343E5", + }, }, fonts: { body: "Inter-Regular, sans-serif", @@ -33,7 +33,11 @@ const theme = extendTheme( "html, body": { height: "100%", maxHeight: "100vh", - backgroundColor: mode("bg.light", "bg.dark")(props), + bgGradient: mode( + "radial(circle at 1px 1px, #C5C5C5 1px, bg.light 0)", + "radial(circle at 1px 1px, #212121 1px, bg.dark 0)" + )(props), + backgroundSize: "40px 40px", fontSize: "14px", }, }),