mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:41 -04:00
14 lines
329 B
JavaScript
14 lines
329 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', 'dark');
|
|
document.documentElement.setAttribute('data-theme', 'dark');
|
|
}
|
|
};
|
|
|
|
loadTheme();
|