Convert CMYK to RGB is very easy here. Enter yan color magenta color yellow color black key color (Rang from 0 to 1)will get RBG Color (Rang from 0 to 255).
R = 255 × (1-C) × (1-K), G = 255 × (1-M) × (1-K), B = 255 × (1-Y) × (1-K)
Color | Color name |
(C,M,Y,K) | (R,G,B) | Hex |
---|---|---|---|---|
White | (0,0,0,0) | (255,255,255) | #FFFFFF | |
Black | (0,0,0,1) | (0,0,0) | #000000 | |
Green | (1,0,1,0) | (0,255,0) | #00FF00 | |
Red | (0,1,1,0) | (255,0,0) | #FF0000 | |
Yellow | (0,0,1,0) | (255,255,0) | #FFFF00 | |
Blue | (1,1,0,0) | (0,0,255) | #0000FF | |
Magenta | (0,1,0,0) | (255,0,255) | #FF00FF | |
Cyan | (1,0,0,0) | (0,255,255) | #00FFFF |