Convert and compare HEX, RGB, HSL, and CMYK codes instantly. Empower your design and perfect your print with this intuitive, high-precision tool.
Get the most out of your color conversions—follow these quick tips:
A color code converter translates colors between different color models used in digital and print environments.
R', G', B' = R / 255, G / 255, B / 255
K = 1 - max(R', G', B')
C = (1 - R' - K) / (1 - K)
M = (1 - G' - K) / (1 - K)
Y = (1 - B' - K) / (1 - K)
R', G', B' = R / 255, G / 255, B / 255
maxVal = max(R', G', B')
minVal = min(R', G', B')
L = (maxVal + minVal) / 2
if maxVal == minVal:
H = S = 0 # achromatic
else:
delta = maxVal - minVal
S = delta / (1 - abs(2 * L - 1))
H = ... (depends on maxVal)
Start converting now and bring your brand's colors to life—across every screen and every page.
Color Name | HEX | RGB | CMYK | HSL |
---|---|---|---|---|
Orange Red | #FF4500 | rgb(255, 69, 0) | 0% 73% 100% 0% | hsl(16, 100%, 50%) |
Deep Sky Blue | #00BFFF | rgb(0, 191, 255) | 100% 25% 0% 0% | hsl(195, 100%, 50%) |
Pure Black | #000000 | rgb(0, 0, 0) | 0% 0% 0% 100% | hsl(0, 0%, 0%) |
Pure White | #FFFFFF | rgb(255, 255, 255) | 0% 0% 0% 0% | hsl(0, 0%, 100%) |
Neutral Gray | #808080 | rgb(128, 128, 128) | 0% 0% 0% 50% | hsl(0, 0%, 50%) |