(function() { const body = document.body; const prefersDark = window.matchMedia('(prefers-color-scheme: dark)'); // ๐Ÿงน Hapus dulu class default dari tema biar nggak ke-lock di dark body.classList.remove('dark-theme', 'light-theme'); function applyTheme(mode) { if (mode === 'dark') { body.classList.add('dark-theme'); body.classList.remove('light-theme'); } else { body.classList.add('light-theme'); body.classList.remove('dark-theme'); } updateLogos(mode); } function updateLogos(mode) { document.querySelectorAll('.logo-light, .logo-dark').forEach(img => { img.style.display = 'none'; }); if (mode === 'dark') { document.querySelectorAll('.logo-dark').forEach(img => img.style.display = 'inline'); } else { document.querySelectorAll('.logo-light').forEach(img => img.style.display = 'inline'); } } // ๐Ÿ”ฅ Terapkan tema default sesuai preferensi OS/device applyTheme(prefersDark.matches ? 'dark' : 'light'); // ๐Ÿ” Dengar perubahan realtime dari sistem (tanpa reload) prefersDark.addEventListener('change', e => { applyTheme(e.matches ? 'dark' : 'light'); }); // ๐Ÿ–ฒ๏ธ Tombol toggle manual (tanpa localStorage) const toggleBtn = document.querySelector('#theme-toggle'); if (toggleBtn) { toggleBtn.addEventListener('click', () => { const isDark = body.classList.contains('dark-theme'); applyTheme(isDark ? 'light' : 'dark'); }); } })(); Komentar di: Syarat dan Cara Live TikTok di HP https://fokus.co.id/cara-bisa-live-di-tiktok Media Berita Terbaru Terpopuler Hari Ini Sun, 26 Jan 2025 17:26:01 +0000 hourly 1 https://wordpress.org/?v=6.8.3