tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

color-scheme.html (272B)


      1 <!doctype html>
      2 <style>
      3 div {
      4  background-color: light-dark(beige, brown);
      5  color: light-dark(purple, blue);
      6  forced-color-adjust: none;
      7 }
      8 div:first-of-type {
      9  color-scheme: light;
     10 }
     11 div:last-of-type {
     12  color-scheme: dark;
     13 }
     14 </style>
     15 <div>Light</div>
     16 <div>Dark</div>