Convert CIELAB color values into standard RGB channels.
Input formats
Provide colors using lab(L a b) syntax, with lightness as a percentage from 0% to 100% and the a and b axes as plain numbers. 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. lab(61.03% 63.55 55.96) becomes rgb(255, 87, 51).
Out-of-gamut values
CIELAB can describe colors no sRGB screen can reproduce. When a and b push a color outside that range, each RGB channel clamps to 0-255, which can shift the result slightly from the exact LAB value that was entered.