Extract #rrggbb Codes · Copy Individual Colors · Export All at Once
Drop any image — photo, logo, screenshot, or illustration — and get every dominant color as a hex code within seconds. Click any swatch to copy its #rrggbb value, or export the full list in one click. The tool also provides RGB and HSL equivalents for every color, so you always have the format your project needs.
Open the extractor and start immediately — no account, nothing stored on any server.
Open the Color Palette Extractor →Hex color notation encodes the red, green, and blue channels of a color as two hexadecimal digits each, producing a six-character string prefixed with #. It is the most widely supported color format in CSS, HTML attributes, and design tools like Figma, Sketch, and Adobe XD. Hex codes are case-insensitive and can be shortened to three characters when both digits in each pair are identical — #aabbcc becomes #abc. When you need to apply transparency, convert to rgba() or add a two-digit alpha suffix in eight-character hex (#rrggbbaa).
Hex codes encode the same RGB values in a compact six-character format. #3a5a8c is identical to rgb(58, 90, 140). Hex is preferred in CSS and HTML because it is shorter; RGB is easier to read programmatically when you need to manipulate individual channels.
Yes. After extraction, the copy-all button places every hex code on the clipboard as a comma-separated or newline-separated list, depending on the export format you select. Individual codes can also be copied with a single click on any swatch.
Absolutely. Hex codes work anywhere a CSS color is accepted — inline style attributes, stylesheet rules, SVG fill and stroke properties, and HTML color attributes. Just prefix the six characters with a # symbol if it is not already included.