Closed
Description
In the current CSS Color 5 draft's color-adjust() function, https://drafts.csswg.org/css-color-5/#coloradjust, the colorspace is argument is last, which is inconsistent with color-mix(), where it is first, and makes parsing a bit more complicated since we don't know which adjusters are allowed until after we have parsed them.
Please consider moving the colorspace to the beginning, changing the grammar from:
color-adjust() = color-adjust( <color> [ color-adjuster <colorspace>? ]? )
to
color-adjust() = color-adjust(<colorspace>?, <color> [ color-adjuster ]? )