gradient-eval-003.html (956B)
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="Gradient interpolation takes place in the specified space rather than in the colorspace of the endpoints"> 9 <link rel="match" href="gradient-eval-003-ref.html"> 10 <style> 11 :root { 12 --start: rgb(34.04% 57.84% 91.39%); /* lab(60% 0 -50) */ 13 --end: rgb(64.07% 56.14% 19.72%); /* lab(60% 0 50) */ 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>