CMYK 값을 0에서 100%로 입력하세요:
이 R,G,B 값들은 0..255 범위에서 주어집니다.
이 red (R) color is calculated from the cyan (C) and black (K) colors:
R = 255 × (1-C) × (1-K)
이 green color (G) is calculated from the magenta (M) and black (K) colors:
G = 255 × (1-M) × (1-K)
이 blue color (B) is calculated from the yellow (Y) and black (K) colors:
B = 255 × (1-Y) × (1-K)
| 색상 | 색상 이름 |
(C,M,Y,K) | (R,G,B) | 16진수 |
|---|---|---|---|---|
| 검은색 | (0,0,0,1) | (0,0,0) | #000000 | |
| 흰색 | (0,0,0,0) | (255,255,255) | #FFFFFF | |
| 빨강 | (0,1,1,0) | (255,0,0) | #FF0000 | |
| 초록 | (1,0,1,0) | (0,255,0) | #00FF00 | |
| 파랑 | (1,1,0,0) | (0,0,255) | #0000FF | |
| 노랑 | (0,0,1,0) | (255,255,0) | #FFFF00 | |
| 시안 | (1,0,0,0) | (0,255,255) | #00FFFF | |
| 마젠타 | (0,1,0,0) | (255,0,255) | #FF00FF |