-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme-switcher-2.js
33 lines (28 loc) · 1.2 KB
/
theme-switcher-2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
document.addEventListener('DOMContentLoaded', (event) => {
console.log('Page loaded');
const toggleButton = document.getElementById('theme-toggle-button');
console.log('Toggle button:', toggleButton);
const setTheme = (theme) => {
const themeLink = document.getElementById('theme-style');
console.log('Setting theme:', theme);
themeLink.href = theme === 'light-mode' ? '/style.css' : '/dark.css';
document.cookie = `theme=${theme}; path=/; max-age=31536000`;
toggleButton.textContent = theme === 'light-mode' ? 'Dark Mode' : 'Light Mode';
};
const getThemeFromCookie = () => {
const match = document.cookie.match(/(^| )theme=([^;]+)/);
return match ? match[2] : 'light-mode'; // Default to light-mode
};
const applyStoredTheme = () => {
const storedTheme = getThemeFromCookie();
console.log('Stored theme:', storedTheme);
setTheme(storedTheme);
};
if (toggleButton) {
toggleButton.addEventListener('click', () => {
const currentTheme = getThemeFromCookie() === 'light-mode' ? 'dark-mode' : 'light-mode';
setTheme(currentTheme);
});
}
applyStoredTheme();
});