LCH to HEX Converter

LCH in, HEX color code out — with the working shown.

To convert LCH to HEX, normalise the input, convert LCH back to RGB, write out the HEX value, then check the gamut. For example, lch(55.09% 68.11 284.75) in LCH is #2f81f7 in HEX.

This is a free LCH to HEX converter. Type or paste any lightness, chroma and hue into the field above and the HEX value updates as you type, along with every other notation the web understands. HEX is a six-digit hexadecimal number, two digits per channel, written with a leading #.

Conversions run entirely in your browser using the same color engine as the rest of the site: values round-trip through linear sRGB and CIE XYZ rather than through an approximation, so what you copy is accurate to the last digit the format can carry.

How to convert LCH to HEX

  1. Normalise the input. Read the LCH value and scale each component into the 0–1 range the maths expects.
  2. Convert LCH back to RGB. LCH is not the display's native model, so the first move is always back to red, green and blue.
  3. Write out the HEX value. Convert back through sRGB and format the result as HEX.
  4. Check the gamut. Clamp anything that falls outside what an sRGB display can show, so the value you copy is the value you get.

Worked example: lch(55.09% 68.11 284.75) converts to #2f81f7. That color is Dodger Blue, and the tool above shows each intermediate step for whatever value you enter.

Common LCH to HEX values

The twenty colors people look up most often, converted from LCH to HEX. Every row is computed by the same engine as the tool above.

ColorLCHHEX
Whitelch(100% 0 0)#ffffff
Blacklch(0% 0 0)#000000
Redlch(53.24% 104.55 40)#ff0000
Limelch(87.73% 119.78 136.02)#00ff00
Bluelch(32.3% 133.81 306.28)#0000ff
Yellowlch(97.14% 96.91 102.85)#ffff00
Cyanlch(91.11% 50.12 196.38)#00ffff
Magentalch(60.32% 115.54 328.23)#ff00ff
Silverlch(77.7% 0 0)#c0c0c0
Graylch(53.59% 0 0)#808080
Maroonlch(25.54% 61.29 38.38)#800000
Olivelch(51.87% 58.13 102.85)#808000
Greenlch(46.23% 71.85 136.02)#008000
Purplelch(29.78% 69.31 328.23)#800080
Teallch(48.25% 30.07 196.38)#008080
Navylch(12.97% 80.27 306.28)#000080
Orangelch(74.94% 82.5 73.14)#ffa500
Pinklch(83.59% 24.37 7.84)#ffc0cb
Goldlch(86.93% 87.15 91.26)#ffd700
Crimsonlch(47.04% 78.48 25.35)#dc143c

LCH and HEX, briefly

LCH is CIE Lab expressed in polar coordinates, so chroma and hue are separate dials. Valid range: L 0–100, C 0–150, H 0–360°.

HEX is a six-digit hexadecimal number, two digits per channel, written with a leading #. Valid range: #000000 to #ffffff.

Frequently asked questions

How do you convert LCH to HEX?

1. Read the LCH value and scale each component into the 0–1 range the maths expects. 2. LCH is not the display's native model, so the first move is always back to red, green and blue. 3. Convert back through sRGB and format the result as HEX. 4. Clamp anything that falls outside what an sRGB display can show, so the value you copy is the value you get. The converter on this page does all of it as you type, and shows the working underneath.

What is lch(53.24% 104.55 40) in HEX?

Pure red, lch(53.24% 104.55 40), is #ff0000 in HEX. There is a table of twenty common colors converted to HEX further up this page.

What is lch(55.09% 68.11 284.75) in HEX?

lch(55.09% 68.11 284.75) converts to #2f81f7. It is a dodger blue, and you can paste any other value into the field at the top of the page to convert it.

Is LCH to HEX conversion lossless?

Within sRGB, yes — converting to HEX and back returns the value you started with. The only rounding happens when a component is written out to a fixed number of decimal places.

Can I use HEX directly in CSS?

Yes. #2f81f7 is valid CSS and works in every current browser.

Does this LCH to HEX converter support transparency?

Alpha is preserved wherever the target notation can carry it — eight-digit hex, rgb() / a, hsl() / a and the modern CSS spaces all round-trip an alpha channel. CMYK has no alpha, so it is dropped there.

Is my color data sent anywhere?

No. Every conversion on this site runs in your browser with no network request, no account and no analytics. You can disconnect and it keeps working.