(function() { const body = document.querySelector('.page'); const btn = document.getElementById('themeToggle'); // Проверка системных настроек const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; // Берём тему из localStorage или системную let theme = localStorage.getItem('wikiTheme') || (prefersDark ? 'dark' : 'light'); body.classList.add(theme); // Обновление текста кнопки function updateButton() { btn.textContent = theme === 'light' ? '🌙 Тёмная тема' : '☀️ Светлая тема'; } updateButton(); // Переключение темы btn.addEventListener('click', () => { body.classList.remove(theme); theme = theme === 'light' ? 'dark' : 'light'; body.classList.add(theme); localStorage.setItem('wikiTheme', theme); updateButton(); }); // Автообновление при смене системной темы window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => { if (!localStorage.getItem('wikiTheme')) { body.classList.remove(theme); theme = e.matches ? 'dark' : 'light'; body.classList.add(theme); updateButton(); } }); })();
Все инструкции и материалы собраны здесь.
[[search]]