blob: 4646bc9a32433389b7014ce766345354fcbb7c8d [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: Specifying Lab and LCH</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#specifying-lab-lch">
<link rel="match" href="lab-007-ref.html">
<meta name="assert" content="lab() with no alpha, negative b axis">
<style>
.test { color: red; }
.test { color: lch(56 58 275)}
.match { color: rgb(12.81%, 53.10%, 92.76%)} /* lch(56 58 275) converted to sRGB */
</style>
<body>
<p>Test passes if the two lines of filler text are the same color.</p>
<p class="test">Filler text. Filler text. Filler text. </p>
<p class="match">Filler text. Filler text. Filler text. </p>
</body>