Just add a new CSS rule, tune it and forget about buttons to keep those 
dark-siders happy 😄

[https://web.dev/prefers-color-scheme](https://web.dev/prefers-color-scheme)/
    
    
    @media (prefers-color-scheme: dark) {
     body {
      color:white;
      background:#444
     }
     a:link {
      color:#5bf
     }
     a:visited {
      color:#ccf
     }
    }
    
    
    Run

Reply via email to