mirror of
https://github.com/transatoshi-mw/grin-explorer.git
synced 2025-10-21 13:33:41 +00:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
function checkDarkMode() {
|
|
var mode = localStorage.getItem('mode');
|
|
if(mode === 'disabled') {
|
|
document.body.classList.remove("dark-mode");
|
|
document.body.classList.add("bg-light");
|
|
}
|
|
}
|
|
|