Files
PythonRobotics/_static/dark_mode_js/default_light.js
2023-05-28 08:23:48 +00:00

14 lines
331 B
JavaScript

const loadTheme = () => {
let theme = localStorage.getItem('theme');
if (theme !== null) {
if (theme === 'dark')
document.documentElement.setAttribute('data-theme', 'dark');
} else {
localStorage.setItem('theme', 'light');
document.documentElement.setAttribute('data-theme', 'light');
}
};
loadTheme();