What is oklch()?
Lightness - Chroma - Hue / OpacityOne of the new CSS color Level 4 functions is the oklch() function which uses the Oklch cylindrical coordinate model. It is specified by Oklab Lightness in percent, by an radius representing chroma and an hue angle. The opacity can be set additionally.
p {
/* oklch(Lightness Chroma Hue / Opacity) */
color: oklch(33% 0.1 0 / .5);
}