fix Certain Text inside UI is almost unreadable #88

This commit is contained in:
anapnoe
2023-04-26 09:56:28 +03:00
parent c1882da437
commit 4b78b6569b
+2 -1
View File
@@ -1565,7 +1565,8 @@ document.addEventListener('readystatechange', function (e) {
window.onload = function() {
document.getElementsByTagName("html")[0].style.backgroundColor = localStorage.getItem("bg_color");
document.body.style.backgroundColor = localStorage.getItem("bg_color");
document.body.style.display = "none";
document.body.style.display = "none";
document.body.classList.add("dark");
setTimeout(function(){document.body.style.display = "block";},1000)
}