mirror of
https://github.com/cfultz/mtgcsv.git
synced 2024-11-22 17:20:04 +01:00
20 lines
556 B
JavaScript
20 lines
556 B
JavaScript
|
export function setTheme(theme) {
|
||
|
// Remove all theme classes first
|
||
|
document.body.classList.remove('theme-white', 'theme-blue', 'theme-black', 'theme-red', 'theme-green');
|
||
|
|
||
|
// Add the selected theme class if it exists
|
||
|
if (theme) {
|
||
|
document.body.classList.add(theme);
|
||
|
}
|
||
|
|
||
|
// Save the selected theme to localStorage
|
||
|
localStorage.setItem('selectedTheme', theme);
|
||
|
}
|
||
|
|
||
|
export function applySavedTheme() {
|
||
|
const savedTheme = localStorage.getItem('selectedTheme');
|
||
|
if (savedTheme) {
|
||
|
setTheme(savedTheme);
|
||
|
}
|
||
|
}
|