v / cmd / tools / vdoc / theme / dark-mode.js
5 lines · 5 sloc · 133 bytes · 6b978a6b5a66d4cf4a7842370561dd8d8c5f99de
Raw
1(function () {
2 if (localStorage.getItem('dark-mode') === 'true') {
3 document.querySelector('html').classList.add('dark');
4 }
5})();
6