Skip to main content

Free Closest Color Name Finder – Match Any Color to a Name

Closest Color Name Finder matches any HEX, RGB, or HSL color to the nearest CSS named colors online for free. See the top matches by distance in your browser.

Written & reviewed by Helperzy Editorial Team · Updated July 2026

148 CSS coloursTop 5 matchesCIE76 ΔEHEX / RGB / HSLFree

Your colour

#4A90D9

Closest named colours

cornflowerblue

#6495ED · ΔE 10.65 (clearly different)

steelblue

#4682B4 · ΔE 13.97 (clearly different)

dodgerblue

#1E90FF · ΔE 21.60 (clearly different)

deepskyblue

#00BFFF · ΔE 23.37 (clearly different)

lightskyblue

#87CEFA · ΔE 28.73 (clearly different)

ΔE legend (CIE76): under 1 = imperceptible, 1–2 = very close, up to 5 = close, over 5 = clearly different.

100% Private

Colour matching runs locally in your browser. Nothing is uploaded.

How to Use Closest Color Name Finder

1

Enter Your Color

Type a color in HEX, RGB, or HSL, such as #3498db or rgb(52, 152, 219). Any of the three formats works, since each is converted to the same internal color space before the matching runs.

2

Read the Top Matches

The finder shows the five nearest CSS named colors with their ΔE distances. Compare the distances to see how faithful each name is, remembering that a value below one is an imperceptible difference.

3

Use the Best Name

Pick the name with the smallest ΔE as the closest description, or choose from the list if you prefer a keyword you recognise. Copy it into your code, spec, or notes wherever a human-readable color name is needed.

What a Closest Color Name Finder Does and How It Works

A closest colour name finder takes any colour you give it, in HEX, RGB, or HSL, and tells you which named colours it most resembles, ranked by how near each one is. There are 148 CSS named colours, keywords like steelblue, tomato, and rebeccapurple, and while a random hex code rarely lands exactly on one of them, it usually sits close to a few. Rather than pretend there is a single right answer, this tool returns the top five matches with a distance number for each, because two names can be almost equally close and it is more honest, and more useful, to show that spread than to force one label. Designers, developers, and writers use it to give a colour a human-readable name, to sanity-check a palette, or simply to answer the question of what to call a particular shade. Getting a sensible match needs the right kind of distance, and plain RGB distance is not it. Two colours can be numerically near in RGB yet look clearly different to the eye, so the tool first converts the input to the CIE Lab colour space using the D65 illuminant. Lab is designed so that geometric distance in it corresponds more closely to perceived difference. It then computes ΔE using the CIE76 formula, which is the straight-line distance in Lab: the square root of the squared difference in L, plus the squared difference in a, plus the squared difference in b. Each of the 148 named colours is converted to Lab once, the ΔE from your colour to every name is measured, and the five smallest values are returned as the closest matches. The ΔE number is worth reading, not just glancing at. As a rough legend, a ΔE below one is imperceptible, meaning most people cannot see the difference at all; a ΔE of roughly one to two is very close, a near match a careful eye might just notice; and a ΔE above five is a clearly different colour. So if your colour returns a top match with a ΔE of 0.8, that name is effectively spot on. If the top match is 6 and the second is 6.4, no CSS keyword is really close and the two names are near-equidistant, which is precisely why showing five results with their distances beats returning one. The tool accepts HEX, RGB, and HSL input interchangeably, converting each to Lab through the same path so the ranking is consistent whatever form you started from. Here is a concrete case. Feed in #3498db, a mid blue. Converted to Lab and measured against every CSS name, it sits in the region between steelblue and dodgerblue, with those two among the nearest matches and their ΔE values showing which is closer. That is far more informative than being told simply blue, because it points you at real keywords you can use in code or in a spec, and the distances tell you how faithful each name is to your actual colour. If you needed a CSS keyword rather than a hex literal, you would now know steelblue is the closest recognised name and roughly how much it deviates. A few notes keep the results in perspective. Named colours are a fixed, fairly sparse set, so many shades simply will not have a close CSS name, and a large ΔE on the top match is the tool telling you honestly that there is no good keyword, not that it failed. CIE76 is a good, widely understood distance metric but a slightly older one; more recent formulas such as CIEDE2000 weight differences a little differently, so a name that is close under CIE76 will almost always still be close, with only minor reordering at the margins. Screen calibration can also shift how a colour looks versus its numbers, so trust the ΔE value over your eye when they disagree. Everything runs locally in your browser, the named-colour table and all the maths live on your device, so the tool works offline once loaded and no colour you enter is uploaded, logged, or stored anywhere.

Closest Color Name Finder Formula & Method

Convert the input color to CIE Lab (D65 illuminant): (L, a, b). CIE76 ΔE to each named color = sqrt((ΔL)² + (Δa)² + (Δb)²). Rank all 148 CSS named colors by ΔE and return the 5 smallest. ΔE legend: < 1 imperceptible, 1–2 very close, > 5 clearly different. Input may be HEX, RGB or HSL — all are converted to Lab first.

Examples: Closest Color Name Finder

Input

#3498db

Result

Closest: steelblue / dodgerblue region (with ΔE distances)

In Lab this mid blue sits between two named blues; the top five and their ΔE show which is nearest.

Input

#ff6347

Result

Top match: tomato (ΔE ≈ 0)

This hex is the exact CSS 'tomato' value, so its ΔE is near zero — an imperceptible difference.

Input

#708090

Result

Top match: slategray (ΔE ≈ 0)

Matches the CSS 'slategray' keyword almost exactly, confirming a very close name.

Frequently Asked Questions – Closest Color Name Finder

It converts your color to the CIE Lab space, then measures the ΔE distance to each of the 148 CSS named colors and returns the five nearest. Showing several matches with their distances is more honest than forcing a single label.