Convert CMYK (Cyan, Magenta, Yellow, Black) to RGB color format
Convert CMYK (Cyan, Magenta, Yellow, Black) color values to RGB format instantly with our free online CMYK to RGB converter. This tool helps designers, print professionals, and digital artists transform print-ready CMYK colors into screen-optimized RGB values for web and digital applications. Simply input your CMYK percentages and get the corresponding RGB and HEX color codes in real-time.
CMYK to RGB conversion transforms print colors (subtractive) to screen colors (additive). This is needed when viewing print designs on screen, importing print files to digital workflows, or converting CMYK images for web use.
The conversion reverses the subtractive model: R = 255 × (1-C) × (1-K), G = 255 × (1-M) × (1-K), B = 255 × (1-Y) × (1-K). The K component affects all channels equally, darkening the result proportionally.
CMYK 0-100% maps to RGB 0-255. Pure black (K=100) gives RGB(0,0,0). The conversion is straightforward math, but results may not match original design intent due to gamut differences. ICC profiles provide more accurate conversions.
View print designs on screen.
Preview brochure before printingConvert print images for web use.
Convert print files to digital formats.
Adapt print materials for digital channels.
function cmykToRgb(c, m, y, k) {
// Convert percentages to 0-1 range
c /= 100; m /= 100; y /= 100; k /= 100;
// Calculate RGB
const r = 255 * (1 - c) * (1 - k);
const g = 255 * (1 - m) * (1 - k);
const b = 255 * (1 - y) * (1 - k);
return {
r: Math.round(r),
g: Math.round(g),
b: Math.round(b)
};
}
// Example
cmykToRgb(100, 0, 0, 0); // Pure cyan → {r: 0, g: 255, b: 255}
cmykToRgb(0, 0, 0, 100); // Pure black → {r: 0, g: 0, b: 0}Input CMYK as percentages (0-100). Output RGB as integers (0-255). K affects all channels proportionally.
Use CMYK to RGB when viewing print designs on screen, converting print images for web, or importing CMYK files into digital workflows.
Approximately. CMYK has a smaller gamut than RGB. Some dull/dark CMYK colors may look more vibrant in RGB. Exact appearance depends on monitor calibration.
Convert hex to rgb instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.
Convert hsv to rgb instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.
Convert random color instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.
Convert rgb to cmyk instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.
Convert rgb to hex instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.
Convert rgb to hsv instantly. Perfect for web designers, developers, and digital artists. Supports batch conversion, copy to clipboard, and real-time preview.