Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

color-code-picker

aquasmit34ISC2.0.0

Grab the color codes from its name

colorcode, codepicker, hexcolor

readme

Color-Code-Picker

This is command line utility to get the hexadecimal color code for any standard color name. It also returns, if a given color is websafe or not.

Version

2.0.0

Installation

You need node.js installed. You can use either use npm or git.

Option 1: Using npm

$ npm install color-code-picker

Option 1: Using git

$ git clone https://github.com/aquasmit/color-code-picker.git

Get Started

Open your app root directory. Here create new file app.js & add below lines to it.

var colorcodepicker = require('color-code-picker');
colorcodepicker.init();

From terminal, cd into your app root directory & fire below command.

$ node ./app.js --color="<color-name>"

Replace <color-name> by the color for which you want hex color code. For example, if you want the hexadecimal color code for RED color then above command should look like as follows

$ node ./app.js --color="red"

This will return hexcode for red color. Also it will return if this color is websafe or not.

Happy Coding!