CMYK to RGB Converter

Convert print CMYK percentages into screen RGB values.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

CMYK describes the four printing inks — cyan, magenta, yellow and key (black) — while RGB describes the red, green and blue light a screen emits. This converter turns CMYK ink percentages into the equivalent RGB value with a live colour swatch, so you can preview a print colour on screen or pull a print value into web and CSS work.

How it works

The tool applies the standard mathematical CMYK-to-RGB conversion (used when no ICC colour profile is involved). Each ink percentage is divided by 100, then each RGB channel is computed as 255 scaled down by the relevant ink and by black:

R = 255 × (1 − C) × (1 − K) G = 255 × (1 − M) × (1 − K) B = 255 × (1 − Y) × (1 − K)

Higher ink values subtract more light, and the black (K) channel dims all three at once. Results are rounded to whole 0-255 values and shown as a CSS rgb() string.

Example

Convert C 76, M 47, Y 0, K 4:

R = 255 × (1 − 0.76) × (1 − 0.04) ≈ 59 G = 255 × (1 − 0.47) × (1 − 0.04) ≈ 130 B = 255 × (1 − 0) × (1 − 0.04) ≈ 245

The result is rgb(59, 130, 245), a bright blue. Note that this is a mathematical conversion — exact print matching needs ICC profiles, since CMYK is device and paper dependent. Everything runs in your browser, nothing uploaded.

Ad placeholder (rectangle)