Color Name Finder
Find the nearest CSS color name for any HEX code. Browse all 140 CSS named colors.
Best for: Putting a human name to a hex code from a design handoff, and finding the closest named colour when a client asks what to call it
Limitations: Returns the nearest named colour rather than an exact match, and it covers common web and CSS names rather than Pantone references
Best suited for: Designers writing documentation who need to describe a colour in words, not codes
How to Use the Color Name Finder
Use the color picker or type a HEX code to find the nearest CSS named color. The tool calculates the Euclidean distance in RGB color space between your input and all 140 CSS named colors, then returns the closest match.
The Delta value shows how close the match is -- 0 means an exact match, higher values mean the nearest named color is further away from your input. Most custom brand colors will have some delta, since they are designed specifically rather than matching a standard named color.
Use the CSS color name in stylesheets where readability matters more than precision. Named colors are memorable and self-documenting: color: coral reads better than color: #FF7F50. However, for exact brand colors, always use the precise HEX or RGB value.
Browse all 140 CSS named colors in the grid below. Use the search box to filter by name. Click any swatch to copy its HEX code. This is a useful reference when choosing CSS color values for prototypes and quick designs.
Advertisement
Frequently Asked Questions
Who Uses a Colour Name Lookup
The common case is translating between a hex value a designer supplied and a name a developer can write in CSS. Front end developers reach for it when a handover file gives raw values but the codebase uses named colours for readability. Content and email teams use it because some email clients handle named colours more predictably than modern syntax.
A specific example: you receive a brand palette as six hex codes and need to know whether any map to a CSS keyword you can use directly. The full keyword list and each name's exact hex equivalent are documented in the MDN named colour reference, and this tool gives you the nearest match when a value falls between two names.