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