CMYK to RGB Converter

CMYK in, RGB out — with the working shown.

To convert CMYK to RGB, normalise the input, convert CMYK back to RGB, write out the RGB value, then check the gamut. For example, cmyk(81% 47.8% 0% 3.1%) in CMYK is rgb(47 129 247) in RGB.

This is a free CMYK to RGB converter. Type or paste any cyan, magenta, yellow and key (black) ink percentages into the field above and the RGB value updates as you type, along with every other notation the web understands. RGB is three channels from 0 to 255 describing how hard the display drives its red, green and blue subpixels.

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 CMYK to RGB

  1. Normalise the input. Read the CMYK value and scale each component into the 0–1 range the maths expects.
  2. Convert CMYK back to RGB. CMYK is not the display's native model, so the first move is always back to red, green and blue.
  3. Write out the RGB value. Convert back through sRGB and format the result as RGB.
  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: cmyk(81% 47.8% 0% 3.1%) converts to rgb(47 129 247). That color is Dodger Blue, and the tool above shows each intermediate step for whatever value you enter.

Common CMYK to RGB values

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

ColorCMYKRGB
Whitecmyk(0% 0% 0% 0%)rgb(255 255 255)
Blackcmyk(0% 0% 0% 100%)rgb(0 0 0)
Redcmyk(0% 100% 100% 0%)rgb(255 0 0)
Limecmyk(100% 0% 100% 0%)rgb(0 255 0)
Bluecmyk(100% 100% 0% 0%)rgb(0 0 255)
Yellowcmyk(0% 0% 100% 0%)rgb(255 255 0)
Cyancmyk(100% 0% 0% 0%)rgb(0 255 255)
Magentacmyk(0% 100% 0% 0%)rgb(255 0 255)
Silvercmyk(0% 0% 0% 24.7%)rgb(192 192 192)
Graycmyk(0% 0% 0% 49.8%)rgb(128 128 128)
Marooncmyk(0% 100% 100% 49.8%)rgb(128 0 0)
Olivecmyk(0% 0% 100% 49.8%)rgb(128 128 0)
Greencmyk(100% 0% 100% 49.8%)rgb(0 128 0)
Purplecmyk(0% 100% 0% 49.8%)rgb(128 0 128)
Tealcmyk(100% 0% 0% 49.8%)rgb(0 128 128)
Navycmyk(100% 100% 0% 49.8%)rgb(0 0 128)
Orangecmyk(0% 35.3% 100% 0%)rgb(255 165 0)
Pinkcmyk(0% 24.7% 20.4% 0%)rgb(255 192 203)
Goldcmyk(0% 15.7% 100% 0%)rgb(255 215 0)
Crimsoncmyk(0% 90.9% 72.7% 13.7%)rgb(220 20 60)

CMYK and RGB, briefly

CMYK is four subtractive ink percentages used for print. Valid range: 0–100% per plate.

RGB is three channels from 0 to 255 describing how hard the display drives its red, green and blue subpixels. Valid range: 0–255 per channel.

A note on CMYK: these values come from the standard naive formula with no ICC profile attached. They are indicative and useful for a mockup. For anything going on a press, get a printed proof on the actual stock — no formula substitutes for that.

Frequently asked questions

How do you convert CMYK to RGB?

1. Read the CMYK value and scale each component into the 0–1 range the maths expects. 2. CMYK 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 RGB. 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 cmyk(0% 100% 100% 0%) in RGB?

Pure red, cmyk(0% 100% 100% 0%), is rgb(255 0 0) in RGB. There is a table of twenty common colors converted to RGB further up this page.

What is cmyk(81% 47.8% 0% 3.1%) in RGB?

cmyk(81% 47.8% 0% 3.1%) converts to rgb(47 129 247). 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 CMYK to RGB conversion lossless?

No. CMYK describes ink on paper and has no meaning without an ICC profile for a specific press, paper and ink set. The values here use the standard naive formula, which is fine for a mockup and should not be sent to a printer as-is — get a proof instead.

Can I use RGB directly in CSS?

Yes. rgb(47 129 247) is valid CSS and works in every current browser.

Does this CMYK to RGB 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.