Color picker / Color converter (RGB, HSL, CMYK, HEX)
Choose a color in color picker to see it's respective RGB, HSL, CMYK, HEX values.
Or enter color codes to see color changes.
RGB colors
The RGB color model is an additive color model in which
Red,
Green and
Blue light are added together in various ways to reproduce a broad array of colors.
It consists of following properties:
-
Red color - number in range [0 - 255]
-
Green color - number in range [0 - 255]
-
Blue color - number in range [0 - 255]
See additional information [Wikipedia]
HSV colors
HSV stands for
Hue,
Saturation, and
Value, and is also often called HSB (B for brightness).
It consists of following properties:
-
Hue - number that represent color in range [0 - 360]
-
Saturation - intensity of the color in range [0 - 100%] or [0 - 1]
-
Value (brightness) - brightness of the color in range [0 - 100%] or [0 - 1]
See additional information [Wikipedia]
CMYK colors
The CMYK color model is a subtractive color model, mainly used in color printing by combining 4 colors: cyan, magenta, yellow, black.
It consists of following properties:
-
Cyan - number in range [0 - 100]
-
Magenta - number in range [0 - 100]
-
Yellow - number in range [0 - 100]
-
Key (Black) - number in range [0 - 100]
See additional information [Wikipedia]
HEX/Web colors
Used to describe colors in web pages and computers, by representing RGB colors in hexadecimal format.
Each RGB color is coverted to hexadecimal value in range [00 - FF] and combined together.
See additional information [Wikipedia]