crayola

0.0.1 • Public • Published

crayola Build Status

Get Crayola Names and Color Codes

Currently 133 colors.

The Crayola Names and Color Codes are just a JSON file extracted from this article.

Install

$ npm install --save crayola

Usage

var crayola = require('crayola');
 
crayola();
//=> { hex: '#FEFE22', name: 'Laser Lemon', rgb: '(254, 254, 34)' }
 
crayola().hex;
//=> #FEFE22
 
crayola().name;
//=> Laser Lemon
 
crayola().rgb;
//=> (254, 254, 34)
 
crayola.colors;
//=> [{ hex: '#FEFE22', name: 'Laser Lemon', rgb: '(254, 254, 34)'}, ...]

API

crayola()

Returns a random crayola color.

crayola().hex;

Returns a random crayola hex color code

crayola().name;

Returns a random crayola color name

crayola().rgb;

Returns a random crayola rgb color code

crayola.colors

Array with all the colors.

CLI

$ npm install --global crayola
$ crayola --help
 
Example
  $ crayola.hex
  #FF5349 
  
  $ crayola.name
  Red Orange
  
  $ crayola.rgb
  (255, 83, 73)

License

Entirely based on superb by Sindre Sorhus. MIT © André Ruffert

Dependencies (2)

Dev Dependencies (1)

Package Sidebar

Install

npm i crayola

Weekly Downloads

23

Version

0.0.1

License

MIT

Last publish

Collaborators

  • andreruffert