This simple web application allows you to search for visually similar colors from a large dataset of named colors (Color Pizza API).
- Open
index.htmlin your web browser.- You can simply double-click the file, or serve it using a local server (e.g., VS Code "Live Server" extension).
- Wait for the colors to load (approx 30,000 colors).
- Enter a color in the search bar. You can enter:
- Calculate visually similar colors (e.g.,
Brick,#9C661F). - Standard Color Names (e.g.,
Red,Blue). - Hex Codes (e.g.,
#ff0000,ffee00). - RGB Values (e.g.,
rgb(255, 0, 0)).
- Calculate visually similar colors (e.g.,
- Press
Enteror clickSearch. - The application will find the visually closest 50 colors from the official list and display them.
- Visual Similarity Search: Finds colors that look like your input, rather than just matching the name.
- Large Dataset: Uses the Color Pizza API (over 30,000 named colors).
- Format Support: Accepts Names, Hex, and RGB inputs.