blob: 49a402d68e668d924fbec150b367ba2188a67592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>sRGB gradient interpolation</title>
<link rel="author" title="Aaron Krajeski" href="mailto:aaronhk@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
<meta name="assert" content="Test srgb as a gradient interpolation space. Reference generated here: https://raphlinus.github.io/color/2021/01/18/oklab-critique.html">
<style>
.test {
width: 480px;
height: 50px;
background: url("resources/srgb-gradient.png");
}
</style>
</head>
<body>
<div class="test"></div>
</body>
</html>
|