benbusby / farside

A smart redirecting gateway for various frontend services
https://farside.link
MIT License
758 stars 46 forks source link

Add dark mode #145

Closed mimvahedi closed 10 months ago

mimvahedi commented 10 months ago

with adding some css like this

@media (prefers-color-scheme: dark) {
  html {
    color: #fff;
    background: #112;
  }
  a:link {
    color: inherit;
  }
  a:visited {
    color: #888;
  }
}