Merge pull request #2693 from nickofolas/fix/body-background

Use background primary for `<body>`
This commit is contained in:
hydroflame
2022-01-18 17:50:49 -05:00
committed by GitHub

View File

@ -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();