Convert CMYK percentages into an RGB color (red, green, blue channel values). CMYK is commonly used in print workflows, while RGB is the default color model for screens.
How it works
CMYK values describe how much cyan, magenta, yellow, and black ink contributes. This converter scales CMYK percentages back into the normalized 0–1 ranges used by the conversion formula, then computes the corresponding RGB components.
When to use it
- Translate print-oriented CMYK numbers into screen-ready RGB values.
- Compare how a palette might look on a digital preview vs a printed output.
- Bridge workflows between design tools and web color systems.
Limitations
Assumes CMYK percentages are independent input values. Real print systems may vary due to paper, profiles, and ink curves, so exact colors can differ from professional rendering pipelines.
Example
Input C=0, M=100, Y=100, K=0 produces RGB close to 0,0,255.