Javascript utility for blending colors.
npm install colorblendjs --save
Require the file:
var colorblend = require('colorblendjs');
Use it!
// currently a color must be a `rgb` array like [160, 179, 197];
// intensity goes from 0 to 1
var resultColor = colorBlend.overlay(firstColor, secondColor, intensity);