the home site for me: also iteration 3 or 4 of my site
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

bug: remove background color animation

-10
-4
sass/css/mods.css
··· 27 27 color: var(--accent-light); 28 28 } 29 29 30 - .theme-transition { 31 - transition: background-color 0.3s ease; 32 - } 33 - 34 30 .tags-data { 35 31 display: flex; 36 32 flex-direction: row;
-6
static/js/script.js
··· 25 25 updateTheme(isDarkMode); 26 26 themeSound.play(); 27 27 localStorage.setItem("theme", isDarkMode ? "dark" : "light"); 28 - 29 - // Add transition class to body for smooth transition 30 - document.body.classList.add("theme-transition"); 31 - setTimeout(() => { 32 - document.body.classList.remove("theme-transition"); 33 - }, 300); 34 28 }; 35 29 36 30 // Event listener for theme toggle