From a311a5f730eec5b0a59173c495bfdc9d0fcb5e14 Mon Sep 17 00:00:00 2001 From: FrogDesk Strategy <3432147+frogdesk@users.noreply.github.com> Date: Mon, 5 Sep 2022 12:57:09 -0600 Subject: [PATCH] Adding a dark background for dark mode users --- index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.css b/index.css index 9653262e6..b3a0c5662 100644 --- a/index.css +++ b/index.css @@ -2335,3 +2335,9 @@ svg.button { display: none; } } + +@media (prefers-color-scheme: dark) { + body { + background: #25252a; + } +}