tor-browser

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

gradient-eval-002.html (930B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Gradient interpolation</title>
      5  <meta name="fuzzy" content="maxDifference=1-2;totalPixels=0-10000">
      6  <link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
      7  <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      8  <meta name="assert" content="Tests gradient interpolation in Lab when endpoints are specified in Lab and in gamut">
      9  <link rel="match" href="gradient-eval-002-ref.html">
     10  <style>
     11   :root {
     12       --start: lab(60% -50 50);  /* rgb(20.71% 64.94% 17.04%) */
     13       --end: lab(60% 50 -50);    /* rgb(76.52% 42.74% 91.9%) */
     14       --t: 0.5;
     15       --big: 131070000px;
     16   }
     17   .test {
     18       width: 100px;
     19       height: 100px;
     20       background: linear-gradient(in lab, var(--start) calc(var(--big) * (0 - var(--t))), var(--end) calc(var(--big) * (1 - var(--t))));
     21   }
     22 </style>
     23 </head>
     24 <body>
     25  <div class="test"></div>
     26 </body>
     27 </html>