When refreshing the theme, apply the black color to the body background color.

This commit is contained in:
FaintSpeaker 2021-12-29 12:26:40 -05:00
parent ddbb37c2d1
commit c619191173

@ -341,6 +341,8 @@ export function refreshTheme(): void {
},
},
});
document.body.style.backgroundColor = theme.colors.black?.toString() ?? "black";
}
refreshTheme();