Name Color
What It Does
The Name Color node identifies the closest standard CSS color name for any color. It compares the input color to all named web colors and returns the name with the smallest perceptual difference.
Inputs
Color
The color to identify
Color
Yes
Outputs
Value
The name of the closest matching CSS color
String

How to Use It
Drag the Name Color node into your graph.
Connect any color to the "Color" input (like
#E91BCB
).The node will automatically find the closest CSS color name.
The output will be a string like "fuchsia", "mediumorchid", or "firebrick".

Tips
This node uses perceptual distance (Delta E) for matching to available CSS colors and provide accurate naming.
CSS named colors are limited, so the result might not be an exact match.
See Also
String to Color: For the reverse operation - converting color names to colors.
Delta E: For calculating the difference between colors.
Use Cases
Color Communication: Convert exact color values to human-readable names for team discussions.
Design Documentation: Generate descriptive color names for design specifications.
Data Visualization: Simplify color data by grouping similar colors under standard names.
Last updated