Hacking

What it felt like to hit the Hacker News front page
Hacking

What it felt like to hit the Hacker News front page

heyjonny about const applyTheme = () => { const stored = localStorage.theme; const prefersDark = window.matchMedia( "(prefers-color-scheme: dark)", ).matches; document.documentElement.classList.toggle( "dark", stored === "dark" || (!stored && prefersDark), ); }; // Apply theme…