agnes.love/public/themeswitcher.js
2026-06-21 06:59:48 +00:00

15 lines
348 B
JavaScript

const defaultTheme = "/bigger.css";
// Set default if nothing is sto
// Load the selected theme
document.write(
`<link rel="stylesheet" href="${localStorage.getItem("theme")}">`
);
// Make function globally available to onclick
window.setTheme = function(themeFile) {
localStorage.setItem("theme", themeFile);
location.reload();
};