0.1.0 • Published 7 years ago
color2code v0.1.0
color2code
Features
This module converts a colorname to hex & rgb from CLI or from a Node.js application.
CLI Install
npm install color2code --globalUsage
You can pass in the color name to get it's hex & rgb values.
$ color2code rebeccapurplewill output
{
"name": "rebeccapurple",
"hex": "#663399",
"rgb": "rgb(102, 51, 153)"
}You can also pass in multiple colors to their hex & rgb values
$ color2code rebeccapurple thistle sandybrownwill output
[
{
"name": "rebeccapurple",
"hex": "#663399",
"rgb": "rgb(102, 51, 153)"
},
{
"name": "thistle",
"hex": "#d8bfd8",
"rgb": "rgb(216, 191, 216)"
},
{
"name": "sandybrown",
"hex": "#f4a460",
"rgb": "rgb(244, 164, 96)"
}
]Node app
Install the module locally
$ npm install color2code --saveUpdate index.js as below
const C2C = require('color2code').default;
console.log(C2C('red green orange'));Run
$ node index.js
[ { name: 'red', hex: '#f00', rgb: 'rgb(255, 0, 0)' },
{ name: 'green', hex: '#008000', rgb: 'rgb(0, 128, 0)' },
{ name: 'orange', hex: '#ffa500', rgb: 'rgb(255, 165, 0)' } ]Author
Arvind Ravulavaru arvind.ravulavaru@gmail.com https://thejackalofjavascript.com
License
Contributing
Contributions are highly welcome!