Color Name Finder
Find the nearest named CSS color for any HEX or RGB value. Browse all 140+ CSS named colors with HEX and RGB values. Free, browser-based.
CSS Named Colors
CSS defines 140+ named colors — from aliceblue to yellowgreen. These names can be used directly in any CSS property instead of HEX or RGB values. This tool finds the closest named color to any custom color you enter, using Euclidean distance in RGB color space.
Color Distance Formula
The distance between two colors is calculated as: √((r₁−r₂)² + (g₁−g₂)² + (b₁−b₂)²). A distance of 0 means an exact match. A distance under 30 is a very close match. A distance over 100 means the nearest named color is quite different from your input.
Practical Use
Named colors are great for prototyping and communication ("use DodgerBlue for the primary") but for production code, HEX or HSL values give more precision. Use this tool to find intuitive names for colors when communicating design decisions.