mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
(function() {
|
|
var html = document.getElementsByTagName('html')[0];
|
|
if (localStorage.getItem('dark-mode') === 'true') {
|
|
html.classList.add('dark');
|
|
}
|
|
})();
|