Pick a Color
🎨 Quick Color Palette
Frequently Asked Questions
What is a HEX color code?
A HEX color code is a six-character alphanumeric code preceded by a #. The first two digits represent red (R), the next two represent green (G), and the last two represent blue (B). For example, #1a56db means R=26, G=86, B=219.
When should I use HEX vs RGB vs HSL?
HEX is most common in web development (CSS, HTML). RGB is useful when you need to control opacity (rgba). HSL is best for programmatically creating color variations (hue, saturation, lightness are more intuitive to adjust).