css-validator icon indicating copy to clipboard operation
css-validator copied to clipboard

`color-mix` causes value error

Open clemeth opened this issue 10 months ago • 0 comments

The color-mix functional notation is supported by all major browsers, but the validator does not recognize it.

So far, I have encountered errors like the following:

Value Error : color in is not a color value : color-mix(in srgb,blue,green)

Input:

.foo {
  color: color-mix(in srgb, blue, green);
}

clemeth avatar Jan 28 '25 18:01 clemeth