A color library which contains all colors in material design.
$ npm install --save color-lib
const color = require('color-lib')
color.blue.hex // #2196f3
color.orange['500'] // #ff9800
color.deepOrange['a100'] // #ff9e80
// note that `black` and `white` only has a hex value
color.black.hex
// no color.black['500'] !!!
For all colors, see Google's color spec. All names are camelCased.
MIT © EGOIST