nom d'une couleur!
A semi manual merge of different color name lists. Try it yourself or see the full list.
My goal is to create a as big as possible color name list. I merged different lists, modified the names when they where the same but had different hex values, and I shifted the colors a bit when the same color had different names but the same value.
- User submissions.
- Wikipedia list of named colors
- CSS/HTML Color Names
- ntc.js
- pantone
- htmlcsscolor.com
- OSX Crayons
- Crayola Crayon names
- Different Paint Brand color lists
yarn add color-name-list
npm install color-name-list --save
import namedColors from 'color-name-list';
let someColor = namedColors.find(color => color.hex === '#ffffff')
console.log(someColor.name) // => white
npm install && npm run build