color-midpoint

0.0.2 • Public • Published

Color Difference

Get the color midway between two array-formatted rgb or rgba values as a string.

Installation

npm install color-midpoint

Usage

var colorMidpoint = require('color-midpoint');

// Blue: rgba(11, 92, 208, 1.0)
var blue = [11, 92, 208, 1.0];

// Red: rgba(252, 39, 42, 1.0)
var red = [252, 39, 42, 1.0];

var purple = colorMidpoint(blue, red);

console.log(purple);
// Expected result: `rgba(132, 66, 125, 0.9)`

License

MIT

Package Sidebar

Install

npm i color-midpoint

Weekly Downloads

0

Version

0.0.2

License

MIT

Unpacked Size

3.26 kB

Total Files

4

Last publish

Collaborators

  • samliebl