From dcdcadecc40a5c8a4c66be254485fdf2555cf90d Mon Sep 17 00:00:00 2001 From: Lucian Petri Date: Fri, 30 Dec 2022 01:55:36 +0200 Subject: [PATCH] text Color --- website/src/styles/Theme/colors.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/src/styles/Theme/colors.ts b/website/src/styles/Theme/colors.ts index d1c0913a..bf031c81 100644 --- a/website/src/styles/Theme/colors.ts +++ b/website/src/styles/Theme/colors.ts @@ -1,8 +1,10 @@ export const colors = { light: { - bg: "gray.100" + bg: "gray.100", + text: "black" }, dark: { - bg: "gray.900" + bg: "gray.900", + text: "white" }, };