Tested tool guide
Tested browser tools
Checked August 16, 2026
What CIE LAB Color Converter does, with a checked example
CIE LAB Color Converter translates a color between CIE L*a*b* coordinates and RGB or six-digit Hex notation. LAB describes lightness and two opponent color axes, while Hex records the same three channels used by RGB. The tool can also compare two LAB colors and report their Delta E distance. A common surprise is that LAB does not identify an RGB color space or reference white by itself. Different conversion assumptions, gamut handling, and rounding can therefore produce different RGB values for the same LAB coordinates.
Worked example
A concrete input and expected output from the current implementation.
Input
Color 1 Hex: #000000
Color 2 Hex: #000000
->
Expected output
Color 1 RGB: 0, 0, 0; LAB: L*=0, a*=0, b*=0
Color 2 RGB: 0, 0, 0; LAB: L*=0, a*=0, b*=0
Delta E: 0
Black has zero RGB channel values and maps to zero lightness with neutral LAB axes. The two LAB points are identical, so their distance is exactly zero under every standard Delta E formula.