Color Name Finder

Find the closest CSS named color for any HEX value.

Enter a HEX color and the tool finds the closest CSS3 / X11 named color (the ~140 names browsers accept like 'crimson' or 'cornflowerblue'), plus a few alternatives ranked by perceptual distance.

Common use cases

  • Find a memorable English name for a brand HEX value
  • Pick a web-safe named color when readability of code matters
  • Identify a third-party design's named color from a screenshot HEX
  • Compare visually similar named colors before committing to one

Frequently asked questions

How is closeness measured?
We use the redmean approximation — a fast perceptually weighted RGB distance that's a good middle ground between cheap Euclidean RGB and full CIEDE2000.
How many names are matched?
All ~140 CSS3 / X11 named colors that browsers natively support — the same list you can use directly in CSS like color: rebeccapurple.
Why are 'aqua' and 'cyan' identical?
They are. CSS keeps both names for legacy reasons; the matcher returns whichever scores first.

Related tools