mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-22 01:34:55 +02:00
15 lines
421 B
JavaScript
15 lines
421 B
JavaScript
function changeTheme(){
|
|
const theme_switch = document.getElementById("theme-switch");
|
|
if (theme_switch.checked) {
|
|
DarkReader.setFetchMethod(window.fetch);
|
|
DarkReader.enable();
|
|
// Add the ff. line to write to memory.
|
|
localStorage.setItem("my-theme","dark");
|
|
}
|
|
else {
|
|
DarkReader.disable();
|
|
// Add the ff. line to write to memory.
|
|
localStorage.setItem("my-theme",null);
|
|
}
|
|
}
|