Initial commit

This commit is contained in:
aglkm
2024-05-03 14:23:37 +03:00
commit a5ca343c52
25 changed files with 26114 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
function checkDarkMode() {
var mode = localStorage.getItem('mode');
if(mode === 'disabled') {
document.body.classList.remove("dark-mode");
document.body.classList.add("bg-light");
}
}