# Color Name Finder

> Find the closest named color to any hex value. Useful for naming colors, picking palette anchors, and palette inspiration.

URL: https://uttir.com/color-name-finder
Categories: generators
Privacy: All matching happens locally.

## About

Given a hex color, the tool finds the closest named color from a curated palette of 80+ standard CSS named colors (Red, Royal Blue, Hot Pink, etc.). It uses a weighted distance in RGB space, so colors that look similar to the human eye are likely to match.

Useful for naming colors in a design system, picking palette anchors, or just satisfying curiosity about a specific shade.

## How to use

1. **Enter a hex value** — Use the color picker or paste a hex like #ff7e5f.
2. **Read the name** — The closest named color appears with its hex and the distance score.

## Examples

### Royal blue

The exact hex for Royal Blue returns the exact match.

Input:

```
#4169e1
```

Output:

```
Royal Blue (#4169e1)
```

### A sunset orange

A near-match that does not have a standard name.

Input:

```
#ff7e5f
```

Output:

```
Coral (#ff7f50) — closest match
```

## FAQ

### Where do the color names come from?

Standard CSS named colors, the same set browsers use when you write "color: tomato". There are 148 of them; the tool uses a curated subset of the most recognizable ones.

### How is "closest" measured?

A weighted Euclidean distance in RGB space (red counts more, blue less). It is a cheap approximation of perceptual distance. For a perfect match, the result has a distance of 0; for a near-miss, the distance is small but nonzero.

### Can I find the name of a color from a hex like #ff5733?

Yes — paste the hex value, and the tool returns the color name and the closest named color. The output also includes the RGB and HSL values for reference.

## Related tools

- [Color Picker](https://uttir.com/color-picker) — Pick any color and copy it as HEX, RGB, or HSL.
- [Color Palette Generator](https://uttir.com/color-palette-generator) — Generate 5-color palettes from any base color using classic harmony schemes — analogous, complementary, triadic, and more.
- [HEX to RGB](https://uttir.com/hex-to-rgb) — Convert any HEX color code to its RGB and HSL equivalents.

---

For the full HTML page with the live tool, visit https://uttir.com/color-name-finder.
This file is the markdown rendering at https://uttir.com/color-name-finder.md. See https://uttir.com/llms.txt for a site-wide summary.
