2025-06-12

Dark mode

Here are some articles I stumbled upon while making research for different ways of implementing a dark mode.



More fun, than functional:


Tip! Listen for system preference change:

window.matchMedia('(prefers-color-scheme: dark)')
      .addEventListener('change',({ matches }) => {
  if (matches) {
    console.log("change to dark mode!")
  } else {
    console.log("change to light mode!")
  }
})