Convert LCH color values into standard RGB channels.
Input formats
Provide colors using lch(L C H) syntax: lightness as a percentage, chroma as a plain number, and hue as a degree value from 0 to 360. Each line is parsed independently in batch mode.
RGB output
The output prints as rgb(r, g, b) with each channel from 0 to 255. lch(61.03% 84.68 41.36) becomes rgb(255, 87, 51).
Gamut clamping
Not every combination of lightness, chroma, and hue maps to a color an sRGB screen can show. When chroma is pushed too high for a given lightness and hue, each RGB channel clamps to the 0-255 range, which can shift the result from the exact LCH value entered.