CMYK to RGB
Convert print CMYK values to digital RGB colors.
CYAN
0%
MAGENTA
0%
YELLOW
0%
KEY (BLACK)
0%
rgb(255, 255, 255)
#FFFFFF
Pick Color from Image
Click or Drag Image Here
Supports JPG, PNG, WEBP
Click on the image to sample CMYK values.
About CMYK to RGB Conversion
Print (CMYK) vs Screen (RGB)
CMYK (Cyan, Magenta, Yellow, Key/Black) is a subtractive color model used in color printing. In contrast, RGB (Red, Green, Blue) is an additive color model used for digital screens. Converting between them is essential when taking print designs to the web.
Conversion Formula
R = 255 × (1-C) × (1-K)
G = 255 × (1-M) × (1-K)
B = 255 × (1-Y) × (1-K)
Where C, M, Y, K are values between 0 and 1.