CMYK to RGB Converter
Convert between CMYK (print) and RGB (screen) color models with live preview.
Color Preview
CMYK Input
Values from 0 to 100%
RGB Output
Values from 0 to 255
Understanding CMYK and RGB
CMYK (Subtractive)
CMYK stands for Cyan, Magenta, Yellow, and Key (Black). It's a subtractive color model used in color printing. Colors are created by absorbing (subtracting) certain wavelengths of light.
- Cyan: Blue-green color (absorbs red)
- Magenta: Purple-red color (absorbs green)
- Yellow: Absorbs blue light
- Black (Key): Adds depth and contrast
Use cases: Printing, offset printing, magazines, brochures
RGB (Additive)
RGB stands for Red, Green, Blue. It's an additive color model used for digital displays. Colors are created by combining different intensities of light.
- Red: 0-255 intensity
- Green: 0-255 intensity
- Blue: 0-255 intensity
Use cases: Computer screens, TVs, smartphones, digital cameras, web design
Conversion Notes
Conversion Formulas
CMYK to RGB:
- R = 255 × (1 - C) × (1 - K)
- G = 255 × (1 - M) × (1 - K)
- B = 255 × (1 - Y) × (1 - K)
RGB to CMYK:
- K = 1 - max(R, G, B) / 255
- C = (1 - R/255 - K) / (1 - K)
- M = (1 - G/255 - K) / (1 - K)
- Y = (1 - B/255 - K) / (1 - K)
Common Color Examples
- Pure Cyan: CMYK(100, 0, 0, 0) = RGB(0, 255, 255) = #00FFFF
- Pure Magenta: CMYK(0, 100, 0, 0) = RGB(255, 0, 255) = #FF00FF
- Pure Yellow: CMYK(0, 0, 100, 0) = RGB(255, 255, 0) = #FFFF00
- Pure Black: CMYK(0, 0, 0, 100) = RGB(0, 0, 0) = #000000
- Rich Black: CMYK(60, 40, 40, 100) = RGB(0, 0, 0) = #000000
Feedback
Help us improve this page by providing feedback:
Sending...
Feedback sent. Thank you!
Error occurred!