Dark mode

A quick way to implement a dark theme to your site 🌙.

You can use .theme-light or .theme-dark
A good practice would be to save a Boolean value in the users table.

<!DOCTYPE html>
<html lang="en" class="theme-light">
  <head>
    ...
  </head>
  <body>
    <a href="#" class="link-reset" id="switch">
      Switch
    </a>
  </body>
</html>

ON THIS PAGE