Pick colors, convert HEX RGB HSL CMYK, generate palettes. Free for designers.
#FF5733 โ 6 hex digits, used in HTML/CSS most commonlyrgb(255, 87, 51) โ Red Green Blue, 0-255 each, additive (light)hsl(11, 100%, 60%) โ Hue 0-360ยฐ, Saturation 0-100%, Lightness 0-100%. Most intuitive for design.cmyk(0%, 66%, 80%, 0%) โ Cyan Magenta Yellow Black, used in printHEX uses base 16 (0-9 then A-F). Each pair = 0-255 in decimal.
#FF5733 โ R = FF = 255 โ G = 57 = 87 โ B = 33 = 51 โ rgb(255, 87, 51)
Quick reference: 00 = 0, 40 = 64, 80 = 128, C0 = 192, FF = 255
For text on backgrounds, WCAG recommends:
Test contrast at WebAIM Contrast Checker.
Split the 6-digit hex into 3 pairs: R, G, B. Convert each pair from hex to decimal. Example: #FF5733 โ R=FF=255, G=57=87, B=33=51 โ rgb(255, 87, 51). This tool does it automatically when you type a hex code.
HEX/RGB describe colors for screens (additive light โ combining gives white). HSL adds intuitive hue/saturation/lightness control. CMYK is for print (subtractive ink โ combining gives black). For web design, use HEX. For print, use CMYK.
Yes. The native color picker opens on iOS and Android too. Tap the swatch to launch it.
Pick your primary brand color. Then use the "Complementary & Analogous" palette to get harmonious supporting colors. Aim for: 1 primary, 1 secondary, 1 accent, 2 neutrals (dark + light).
Alpha controls how see-through a color is. rgba(255, 0, 0, 0.5) = 50% transparent red. HEX 8-digit version: #FF000080 (last 2 digits = alpha).