Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Last active February 13, 2025 17:26
Show Gist options
  • Save LeaVerou/752ccaec7435edfc36eb48a4c3317f1e to your computer and use it in GitHub Desktop.
Save LeaVerou/752ccaec7435edfc36eb48a4c3317f1e to your computer and use it in GitHub Desktop.
Safari color space conversion bug
/**
* Safari color space conversion bug
*/
div {
width: 10em;
height: 2em;
border: 1px solid silver;
}
<section style="--color: #e5f6ff;">
<p>Raw color:
<div style="background: var(--color)"></div>
<p>color-mix(in oklch, var(--color), var(--color)):
<div style="background: color-mix(in oklch, var(--color), var(--color));"></div>
<p>oklch(from var(--color) l c h)</p>
<div style="background: oklch(from var(--color) l c h);"></div>
</section>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment