Creativo
Color Converter
Convert colors between HEX, RGB, HSL, HSV, and CMYK formats
Preguntas Frecuentes
What is HEX color?
HEX color is a 6-character code representing red, green, and blue values in hexadecimal format (e.g., #FF5733).
What is the difference between HSL and HSV?
Both represent color with Hue and Saturation, but HSL uses Lightness (black to white) while HSV uses Value (darkness to brightness).
How to Use the Color Converter
Convert colors between HEX, RGB, and HSL formats.
- Enter a color in any format (HEX, RGB, or HSL).
- See the equivalent values in the other formats.
- Copy the value you need.
Color Conversion
HEX to RGB
R = hex[0:2], G = hex[2:4], B = hex[4:6] (base 16)
Each pair of hex digits is one 0β255 channel.
Example:
Input: #3366CC
Calculation: 33β51, 66β102, CCβ204
Result: rgb(51, 102, 204)
Real-World Use Cases
Web Design
Move between CSS color formats.
Brand Palettes
Document brand colors in every format.
Tips
Tips
- HSL is easiest for tweaking lightness and saturation.
- Use 8-digit HEX (#RRGGBBAA) for transparency.