lightmode -> dark mode

This commit is contained in:
Ajay
2022-01-24 23:33:27 -05:00
parent c49ebbe371
commit 8452bfb32a
5 changed files with 10 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ async function init() {
await utils.wait(() => Config.config !== null);
if (Config.config.lightMode) {
if (!Config.config.darkMode) {
document.documentElement.setAttribute("data-theme", "light");
}