Dark Mode is Cool

I was skeptical about the "dark mode" hype but it turned out pretty darn good with this theme. Now the hesitation is whether to make dark the new default.

Home page:

Dark Mode Demo

Article page:

Dark Mode Demo

By the way here is the simple media query that does the magic.

@media (prefers-color-scheme: dark) {
  /* Your rules */
}

Reference: https://css-tricks.com/dark-modes-with-css/