Free Developer Tool
Extract precise HEX, RGB, and HSL color codes to perfectly match your brand design system.
Colour Formats
Tonal Palette
Click any swatch to select it as the active colour.
CSS Variables
:root {
--color-primary: #E84D1C;
--color-primary-rgb: 232, 77, 28;
--color-primary-hsl: 14, 82%, 51%;
}How It Works
Click anywhere on the colour wheel to pick visually, or type a known HEX, RGB, or HSL value directly into the inputs.
Use the hue, saturation, and lightness sliders to dial in the exact shade you need.
Copy the value as HEX for CSS, RGB for design tools, or HSL for dynamic theming.
Note down your picked colours. Use complements, analogous colours, or triadic combinations for a harmonious palette.
FAQ
HEX is the most common for solid colours. Use RGBA when you need transparency (the A is the alpha/opacity channel). HSL is great for programmatic colour manipulation — it's more intuitive for defining colour relationships.
HSL (Hue, Saturation, Lightness) is used in CSS. HSB (Hue, Saturation, Brightness) is used in design tools like Photoshop and Figma. They look similar but behave differently — a pure colour in HSL is at 50% lightness, while in HSB it's at 100% brightness.
Use complementary colours (opposite on the colour wheel) for high contrast, analogous colours (adjacent) for harmony, or triadic combinations (three evenly spaced colours) for vibrant variety. Stick to one dominant colour, one accent, and one neutral.