Color Picker
Pick any color and instantly get HEX, RGB, HSL, and CMYK values. Copy with one click.
Best for: Pulling a precise hex from a colour wheel, and converting the result to RGB, HSL or CMYK for print or CSS use
Limitations: Picks from the on-screen wheel rather than sampling anywhere on your desktop, and CMYK values are approximate rather than press-accurate
Best suited for: Designers choosing a colour from scratch who need the value in several formats at once
How to Use the Color Picker
Click the color picker square above to open your browser's native color selector. As you choose a color, all values update instantly in real time. Use the Copy buttons to copy any format to your clipboard.
HEX codes (like #7C3AED) are the most common format for web design. Paste them directly into CSS files, design tools like Figma or Sketch, and HTML style attributes. The # prefix is required in CSS but optional in some design tools.
RGB values are useful when you need to control transparency -- combine them with CSS rgba() to add an alpha channel. For example, rgba(124, 58, 237, 0.5) gives you the same purple at 50% opacity.
HSL is the most intuitive format for programmatic color work. Adjusting only the lightness (L) value lets you create tints and shades without changing the hue. Many design systems use HSL for building color scales.
CMYK values are for print design. If you are handing colors off to a print shop or working in Adobe InDesign, use the CMYK values shown here. Note that not all RGB colors can be precisely reproduced in CMYK print due to gamut differences.
Advertisement