Colour Picker Tool
Find the perfect colours for your web design projects. Click on any colour to get its HEX, RGB, and HSL values.
This colour picker (also known as a color picker in American English) shows a variety of colour palettes including Material Design colours, basic web colours, and modern flat UI colours. Click on any colour to see its code values in different formats (HEX, RGB, HSL).
You can copy the colour codes to your clipboard and use them in your CSS, HTML, or design projects.
Red
Pink
Purple
Deep Purple
Indigo
Blue
Light Blue
Standard Colours
Named Colours
Flat UI Colours
Custom Colour Picker
How to Use CSS Colours
You can use colour codes in your CSS in several ways:
HEX Format
.element {
color: #3498db;
background-color: #ecf0f1;
}
RGB Format
.element {
color: rgb(52, 152, 219);
background-color: rgba(52, 152, 219, 0.5); /* With alpha */
}
HSL Format
.element {
color: hsl(204, 70%, 53%);
background-color: hsla(204, 70%, 53%, 0.5); /* With alpha */
}
Colour Tips
- Use colours with good contrast for accessibility.
- Limit your palette to 3-5 colours for a cohesive design.
- HSL makes it easy to create colour variations by adjusting lightness.
- Test your colour combinations for WCAG compliance.
- Some colours may display differently across devices and browsers.