color-steps
v1.0.2
Published
A utility for calculating intermediate steps between two colors.
Downloads
14
Readme
color-steps
A utility for calculating intermediate steps between two colors.
API
This package exports a single function that takes three arguments:
color1
- a CSS color stringcolor2
- a CSS color stringcount
- the desired number of intermediate colors to return, defaults to6
The return value is an array of colors in rgba
format (or rgb
if all colors have an alpha value of 1
).
CLI
This package also exposes a single executable (called color-steps
) that accepts command-line arguments which are the same as the function arguments detailed above.
color-steps "red" "blue" 10
Try it
$ npx color-steps "black" "white" 5
rgb(43,43,43)
rgb(85,85,85)
rgb(128,128,128)
rgb(170,170,170)
rgb(212,212,212)