rgbcolor

1.0.1 • Public • Published

node-rgbcolor

A nodejs module to parse color values Based on rgbcolor.js by Stoyan Stefanov sstoo@gmail.com http://www.phpied.com/rgb-color-parser-in-javascript/

Usage

var RGBColor = require('rgbcolor');
 
var color = new RGBColor('darkblue');
 
if (color.ok) { // 'ok' is true when the parsing was a success
    // log channels
    console.log(color.r + '' + color.g + '' + color.b);
    // log HEX and RGB
    console.log(color.toHex());
    console.log(color.toRGB());
}

/rgbcolor/

    Package Sidebar

    Install

    npm i rgbcolor

    Weekly Downloads

    1,316,631

    Version

    1.0.1

    License

    MIT OR SEE LICENSE IN FEEL-FREE.md

    Last publish

    Collaborators

    • yetzt