Color Name Lookup-- Identify Colors
Find the closest CSS color name for any HEX color. Identify and name colors instantly.
Color Name Lookup Tool
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
Color Picker
Pick colors visually
HEX to RGB
Convert HEX to RGB
RGB to HEX
Convert RGB to HEX
HSL Converter
Convert HSL colors
Palette Generator
Generate color palettes
Contrast Checker
Check WCAG contrast
Gradient Generator
Create CSS gradients
Shade & Tint
Generate shades & tints
Color Blender
Blend two colors
Complementary Finder
Find complementary colors
Colorblind Sim
Simulate color blindness
CSS Color Converter
Convert CSS color names
Random Color
Generate random colors
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.