korona

1.0.1 • Public • Published

Korona

Take any JavaScript data and get back a reasonably unique hex or rgb color with an optional alpha channel 🖌

Usage

Korona is just a function.

const korona = require('korona');
 
korona('some_data');
// => '#abcdef' [some hex value]

Korona takes an optional options hash as the second argument:

const korona = require('korona');
 
korona('some_data', {mode: 'hex'});
// => '#abcdef' [default mode is hex]
korona('some_data', {mode: 'rgb'});
// => 'rgb(1, 2, 3)' [the same hex value, but in RGB format]
korona('soem_data', {alpha: true});
// => '#abcdef01' [by default, alpha is false]
//  alpha: true will add a fourth, alpha channel to both the hex and rgb modes.

The two options can obviously be combined:

korona('some_data', {mode: 'rgb', alpha: true});
// => 'rgba(1, 2, 3, 0.4)'

License

MIT. See LICENSE.

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i korona

    Weekly Downloads

    0

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    55.2 kB

    Total Files

    6

    Last publish

    Collaborators

    • thesephist