- Администратор
- Автор темы
- #16
Нет, именно его нет.Ну я так понимаю он не будет в общем доступе
Нет, именно его нет.Ну я так понимаю он не будет в общем доступе
<script>
function setTheme(themeName) {
localStorage.setItem('theme', themeName);
document.getElementById("changer").href=themeName;
}
function toggleTheme() {
if (localStorage.getItem('theme') === '{site_host}templates/{template}/css/theme_dark.css?v={cache}') {
setTheme('light');
document.body.classList.add('lightStyle');
document.body.classList.remove('darkStyle');
} else {
setTheme('{site_host}templates/{template}/css/theme_dark.css?v={cache}');
document.body.classList.add('darkStyle');
document.body.classList.remove('lightStyle');
}
}
// Установка темной темы по умолчанию при первой загрузке, если тема не сохранена
if (!localStorage.getItem('theme')) {
setTheme('{site_host}templates/{template}/css/theme_dark.css?v={cache}');
}
</script>