From b48f4e0fb799a33d6e70b45e51bd14479e3825ee Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Wed, 3 May 2023 08:27:06 -0400 Subject: [PATCH] Define color scheme --- app/globals.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/globals.css b/app/globals.css index 48bae173..da22b875 100644 --- a/app/globals.css +++ b/app/globals.css @@ -7,11 +7,13 @@ font-family: "Inter", sans-serif; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent; + color-scheme: light; /* note: must keep in sync with `theme-color` in `theme-effect.ts` */ @apply bg-[#fcfcfc]; } :root.dark { + color-scheme: dark; /* note: must keep in sync with `theme-color` in `theme-effect.ts` */ @apply bg-[#1C1C1C]; }