chiro-canto/node_modules/colormap
Samuel ORTION 0384e3ee48 Added free space stat on home page 2021-04-15 12:29:53 +02:00
..
res Added free space stat on home page 2021-04-15 12:29:53 +02:00
.travis.yml Added free space stat on home page 2021-04-15 12:29:53 +02:00
README.md Added free space stat on home page 2021-04-15 12:29:53 +02:00
colorScale.js Added free space stat on home page 2021-04-15 12:29:53 +02:00
colormaps.png Added free space stat on home page 2021-04-15 12:29:53 +02:00
example.js Added free space stat on home page 2021-04-15 12:29:53 +02:00
index.js Added free space stat on home page 2021-04-15 12:29:53 +02:00
license.md Added free space stat on home page 2021-04-15 12:29:53 +02:00
night.jpg Added free space stat on home page 2021-04-15 12:29:53 +02:00
package.json Added free space stat on home page 2021-04-15 12:29:53 +02:00
test.js Added free space stat on home page 2021-04-15 12:29:53 +02:00

README.md

colormap Build Status

all colormap output

Usage

npm install colormap

let colormap = require('colormap')

let colors = colormap({
    colormap: 'jet',
    nshades: 10,
    format: 'hex',
    alpha: 1
})

API

list = colormap(options?)

Property Default Meaning
colormap 'jet' Color map name from the image above or a custom color scale — a sequence of {index, rgb} objects, where index is 0..1 number and rgb is a length 3/4 array with values for the color stop.
nshades 72 Number of colors in returned array, the minimum number depends on colormap.
format 'hex' 'hex' for #aabbcc, 'rgbaString' for rgba(255, 255, 255, 1), 'rba' for [255, 255, 255, 1], 'float' for [1, 1, 1, 1].
alpha 1 Alpha range, can be an array with alpha values or just 2 values for start/end colors.

Credits

Color maps are inspired by matplotlib color scales, cmocean oceanographic colormaps, cosine gradients and others. Thanks to authors of these libs for their invaluable work.