20 lines
793 B
JavaScript
20 lines
793 B
JavaScript
console.log('Default theme loaded.')
|
|
|
|
const saved_color_theme = localStorage.getItem('saved_color_theme');
|
|
|
|
if (saved_color_theme) {
|
|
document.documentElement.setAttribute('data-bs-theme', saved_color_theme);
|
|
}
|
|
|
|
document.getElementById("categories_toggle").onclick = function() {
|
|
categories_menu_item = document.getElementById("categories_menu");
|
|
categories_menu_item.style.display = categories_menu_item.style.display === "none" ? "block" : "none"
|
|
}
|
|
|
|
document.getElementById("dark_theme_toggle").onclick = function() {
|
|
html = document.documentElement;
|
|
current_color_theme = html.getAttribute('data-bs-theme');
|
|
new_color_theme = current_color_theme === 'dark' ? 'light' : 'dark';
|
|
html.setAttribute('data-bs-theme', new_color_theme);
|
|
localStorage.setItem('saved_color_theme', new_color_theme);
|
|
} |