agnes.love/public/themeswitcher.js

16 lines
348 B
JavaScript
Raw Normal View History

2026-06-21 06:59:48 +00:00
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();
};