创意
即时、私密且免费
颜色转换器.
Convert colors between HEX, RGB, HSL, HSV, and CMYK formats
设备端计算无需注册
01
输入数值
输入时结果会更新。
02 / 答案
常见问题
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.