mirror of
https://github.com/andrewgioia/keyrune.git
synced 2024-11-14 19:24:46 +00:00
5 lines
218 B
JavaScript
5 lines
218 B
JavaScript
(function () {
|
|
var mode = localStorage.getItem("mode");
|
|
if (mode === "dark") document.documentElement.dataset.mode = 'dark';
|
|
else if (mode === "light") document.documentElement.dataset.mode = 'light';
|
|
})(); |