How are these affected when gamut mapping is limited to oklch and oklab notations?
Edit:
For me personally it is also a bit a side-track :) I keep stumbling over this because I think it is important. But it isn't directly related to this issue.
Discussing limits to specific color spaces and/or color notations should be a separate issue.
The value as mentioned in that comment can be expressed in many different ways.
https://colorjs.io/apps/convert/?color=oklch(90%25%2090%25%200deg)&precision=4
For example with
hwb(329.3 10.37% -52.94%)
orlab(83.87 115.6 1.847)
.Implementing gamut mapping only for
oklab
,oklch
would be highly problematic.I immediately think of these :
oklch(from lab(83.87 115.6 1.847) l c h)
lch(from oklch(90% 90% 0deg) l c h)
color-mix(in lch, oklch(90% 90% 0deg), oklch(90% 90% 0deg))
How are these affected when gamut mapping is limited to
oklch
andoklab
notations?Edit:
For me personally it is also a bit a side-track :) I keep stumbling over this because I think it is important. But it isn't directly related to this issue.
Discussing limits to specific color spaces and/or color notations should be a separate issue.
Originally posted by @romainmenke in https://github.com/w3c/csswg-drafts/issues/9449#issuecomment-1978878975