HDR Gradients

xyz
oklch(75% .3 180deg)
L
C
H
A

HD Examples

Gradient CSS

:root {
  --hdr-gradient: linear-gradient(
    to right in oklab,
    oklch(70% 0.5 340),
    oklch(90% 0.5 200)
  );
  --sdr-gradient: linear-gradient(to right, #ff00fa, #0ff);

  background: var(--hdr-gradient);
}