HEX Color Picker
Pick any color and instantly get its HEX code. HEX is the most common color format in web design, used in CSS, HTML, and design tools.
#3498db
rgb(52, 152, 219)
hsl(204, 70%, 53%)
oklch(0.653 0.135 242.7)
cmyk(76%, 31%, 0%, 14%)
Use Cases
Web design — CSS colors
Graphic design tools (Figma, Photoshop)
Brand color documentation
Email templates and newsletters
Tips
HEX codes always start with # followed by 6 characters (0-9, A-F)
Shorthand: #RGB expands to #RRGGBB (e.g., #F00 = #FF0000)
HEX doesn't support transparency — use rgba() instead
FAQ
What is a HEX color code?
A HEX color code is a 6-character alphanumeric code representing a color in RGB format. Each pair of characters represents red, green, and blue values from 00 (0) to FF (255).
How do I find a color's HEX code?
Use our color picker to visually select any color and instantly see its HEX code. You can also enter RGB or HSL values to convert to HEX.
What is #000000?
#000000 is black — zero red, zero green, zero blue. #FFFFFF is white — maximum values for all three.
How do I add transparency to HEX?
Use 8-digit HEX (#RRGGBBAA) where the last two characters are alpha. Example: #FF000080 is 50% transparent red.