From 3427215fba8c737d59bb805bb7ac831bdac9eb5f Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 17 Nov 2022 09:58:47 +0000 Subject: [PATCH] Maybe fix the white text flashing? --- src/consts/themes.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/consts/themes.js b/src/consts/themes.js index 8faad71..492bfa5 100644 --- a/src/consts/themes.js +++ b/src/consts/themes.js @@ -3,6 +3,9 @@ import { createTheme } from "@nextui-org/react"; export const darkTheme = createTheme({ type: "dark", theme: { - colors: {}, // override dark theme colors + colors: { + white: "#ffffff", + black: "#000000", + }, // override dark theme colors }, });