From eb7a0ebace7cea89e8a8a2a7df1bd76f24e56d30 Mon Sep 17 00:00:00 2001 From: nickofolas Date: Tue, 18 Jan 2022 16:15:36 -0600 Subject: [PATCH] Use background primary before #000000 for body --- src/ui/React/Theme.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/React/Theme.tsx b/src/ui/React/Theme.tsx index fa28f6793..7f82bcebe 100644 --- a/src/ui/React/Theme.tsx +++ b/src/ui/React/Theme.tsx @@ -362,7 +362,7 @@ export function refreshTheme(): void { }, }); - document.body.style.backgroundColor = theme.colors.black?.toString() ?? "black"; + document.body.style.backgroundColor = theme.colors.backgroundprimary?.toString() ?? "black"; } refreshTheme();