A package for generate colors between two colors
npm install color-gradient --save
var generate = require("color-gradient");
// generate(start_color, end_color, midpoint, options)
var colors = generate("#ffffff", "#000000", 6, { has_heads: true, output: "rgb" });
["rgb(255,255,255)", "rgb(219,219,219)", ..."rgb(0,0,0)"];
Option | Type | Defalut | Description |
---|---|---|---|
output | String | 'rgb' | 'rgb' or 'hex' change output type |
has_heads | Boolean | true | Include input data with start and end |
npm test
- RGB input support