Using <color-interpolation-method> in CSS animation
I'm trying to animate the color of an element using a CSS animation. Is it possible to tell it to follow one color space in preference to another, like <color-interpolation-method> does for gradients ?
MDN Web Docs
The <color-interpolation-method> CSS data type represents the color space used for interpolation between <color> values. It can be used to override the default interpolation color space for color-related functional notations such as color-mix() and linear-gradient().

front-end