Convert colors between different formats like HEX, RGB, HSL, CMYK. Supports color picking, palette generation and color scheme analysis.
Use color picker to select color
Current color in various representation formats
Learn about the characteristics and use cases of different color formats
Uses 6-digit hexadecimal numbers to represent colors, such as #FF5733. This is the most commonly used color format in web development, with the best compatibility, suitable for use in CSS and HTML.
Uses the numerical values of red, green, and blue color channels to represent colors, such as rgb(255, 87, 51). This format is intuitive and easy to understand, suitable for designers and developers to understand color composition.
Uses three attributes of hue, saturation, and lightness to represent colors, such as hsl(12, 100%, 60%). This format is closer to how humans perceive colors, making it easy to adjust the brightness and vibrancy of colors.
Uses three attributes of hue, saturation, and value to represent colors, such as hsv(12, 100%, 100%). This format is commonly used in graphics software, where the value parameter more intuitively represents color brightness.
Uses four color channels of cyan, magenta, yellow, and black to represent colors, such as cmyk(0%, 66%, 80%, 0%). This is the standard format in the printing industry, suitable for design works that need to be printed.
Uses three attributes of perceptual lightness, chroma, and hue to represent colors, such as oklch(60% 50% 12). This is a modern color space that better matches human eye perception, supports a wider color gamut, and is suitable for modern display devices.