Remix.run Logo
magic_hamster a day ago

This is nicely done, but can you please explain why you need this? What is the use of the color names when you already know the actual color value and can use it?

chownie a day ago | parent | next [-]

N=1 but I'm colourblind and frequently I need to talk to someone about a UI colour while not having any idea what the colour is called, this kind of thing is useful for me.

andoando 32 minutes ago | parent | next [-]

Wouldnt it be 10x better to just show them the color?

polonbike a day ago | parent | prev | next [-]

N>1, proportion of colourblind people depends on the origin, but there are many of us. In Europe, nearly 10% of males are impacted by one of the colourblind variant, aka millions of people. Some of those people are dev, designers, or working alongside some sort color requirements, but none of them are graphists and can choose colors. Having a tool to provide a name instead of an hex code is useful to discuss colors with other stakeholders (customers, colleagues, etc...)

rustc a day ago | parent [-]

> Having a tool to provide a name instead of an hex code is useful to discuss colors with other stakeholders (customers, colleagues, etc...)

But how useful are names that this website shows, e.g. the first few random names I got were "Singapore Orchid", "Scented Spring", "Lamiaceae", and "Lunatic Sky Dancer"?

meodai a day ago | parent [-]

I provide all kind of name lists. Depends a lot on what you are trying to accomplish. But there are plenty of lists providing more recognizable ones.

pimlottc a day ago | parent | prev | next [-]

I would also find such a tool useful, but names like “Watermelon Sugar”, “Tidal”, or “Singapore Orchid” don’t really help me at all. Just tell me something like “dark brown”, “pale green”, “hot pink”, “tan”, etc.

IshKebab a day ago | parent | next [-]

Yeah I agree. Maybe useful if it wasn't nonsense paint colour names.

meodai a day ago | parent [-]

The API provides plenty of lists that should fit your less ‘nonsensical’ needs.

meodai a day ago | parent | prev [-]

If you scroll down a bit, you will see that the api provides all kind of lists, there are plenty that are more descriptive or simpler depending on what you are going for.

meodai a day ago | parent | prev | next [-]

That's great to hear! I've gotten some very positive feedback from sight-impaired users for this little tool that uses the API: https://words.github.io/color-description/ — it turns colors into descriptive text (no AI involved)

unconed a day ago | parent | prev [-]

I made a similar tool that can work on images and the camera. In addition to color picking, it adds moving stripes so you can visually tell the difference between colors you might otherwise not tell apart.

https://unblind.tech

auscompgeek a day ago | parent | prev | next [-]

This can be useful for accessibility. For example you might have a colour palette that users can add to, but the colours are only stored as hex codes. Giving a screen reader user just RGB values isn't as helpful as providing a name alongside it.

meodai a day ago | parent | prev [-]

Thanks! Good question – it's mostly about readability and communication. Hex codes are precise but not intuitive. Names give context, like saying “salmon” instead of #fa8072. That’s helpful in design tools, UI previews, generative art, or even debugging.

Also, the API works the other way around too – you can search by name to get the matching color: https://api.color.pizza/v1/docs/#api-Default-getColorNames. I did not add it to the website yet, because I don't have good UI ideas for it yet.