Convert CMYK color values to RGB, HEX, HSL, and other color formats. Professional tool for designers, developers, and print professionals.
Conversion Formula: RGB = (1 - C) × (1 - K) × 255, (1 - M) × (1 - K) × 255, (1 - Y) × (1 - K) × 255
Where CMYK values are expressed as decimals from 0 to 1
Color Accessibility
Color Properties
CMYK and RGB are two fundamental color models used in different media. CMYK (Cyan, Magenta, Yellow, Key/Black) is a subtractive color model used in color printing. RGB (Red, Green, Blue) is an additive color model used for electronic displays like monitors and TVs.
CMYK (Subtractive Color Model):
Used for printing, CMYK works by subtracting brightness from white. When you mix all CMYK colors at maximum, you get black (in theory). In practice, a separate black ink (K) is used because mixing CMY often produces a muddy brown rather than true black.
RGB (Additive Color Model):
Used for screens and digital displays, RGB works by adding light. When you mix all RGB colors at maximum intensity, you get white. This is why it's called an "additive" model - you're adding light together.
Normalize CMYK values: Convert percentage values (0-100%) to decimal values (0.0-1.0) by dividing by 100.
Apply conversion formula: Calculate RGB values using the formula:
R = 255 × (1 - C) × (1 - K)
G = 255 × (1 - M) × (1 - K)
B = 255 × (1 - Y) × (1 - K)
Round and convert: Round RGB values to nearest integers (0-255) and convert to HEX by converting each component to hexadecimal.
| CMYK Values | RGB Values | HEX Code | Color Name |
|---|---|---|---|
| C:0%, M:100%, Y:100%, K:0% | R:255, G:0, B:0 | #FF0000 | Red |
| C:100%, M:0%, Y:100%, K:0% | R:0, G:255, B:0 | #00FF00 | Green |
| C:100%, M:100%, Y:0%, K:0% | R:0, G:0, B:255 | #0000FF | Blue |
| C:0%, M:0%, Y:0%, K:100% | R:0, G:0, B:0 | #000000 | Black |
| C:0%, M:0%, Y:0%, K:0% | R:255, G:255, B:255 | #FFFFFF | White |
| C:0%, M:100%, Y:100%, K:10% | R:230, G:0, B:0 | #E60000 | Bright Red |
| C:100%, M:0%, Y:100%, K:20% | R:0, G:204, B:0 | #00CC00 | Bright Green |
| C:50%, M:0%, Y:100%, K:0% | R:128, G:255, B:0 | #80FF00 | Chartreuse |
Why Conversion Matters: