Color Name Lookup-- Identify Colors

Find the closest CSS color name for any HEX color. Identify and name colors instantly.

Color Name Lookup Tool

Enter a HEX color and click Lookup to find its closest CSS color name

Why Use Our Color Name Lookup?

Instant Lookup

Find the closest CSS color name for any HEX color.

Visual Compare

Side-by-side comparison of input and closest match.

Distance Score

See how close or far your color is from the match.

One-Click Copy

Copy the color name or HEX value instantly.

100% Private

All processing in your browser. No server requests.

Free Forever

No signup, no limits. Free color name identification.

Other Color Tools

Complete Color Name Lookup Guide

Color name matching works by computing the distance between your input color and each of the 148 CSS named colors in RGB color space. We use Euclidean distance, which calculates the straight-line distance in 3D RGB space.

The formula is: distance = sqrt((r1-r2)^2 + (g1-g2)^2 + (b1-b2)^2). A distance of 0 means an exact match. The theoretical maximum distance (from black #000000 to white #ffffff) is approximately 441.67.

The algorithm compares your input against every CSS named color and returns the one with the smallest distance. If an exact match is found (distance = 0), the search terminates immediately for efficiency.