
ColorBlend.js is a tiny JavaScript library that provides a quick way to blend two colors programmatically.
It takes two color values in RGB format and returns the blended color between them at a specified intensity (0-1).
How to use it:
1. Download and import the ColorBlend.js.
<script src='index.js'></script>
2. Feed the ColorBlend.js with your two chosen colors and specify the intensity (0-1) as follows:
// var resultColor = colorBlend.overlay(firstColor, secondColor, intensity); var resultColor = colorBlend.overlay([255,255,255], [0,0,0], .5);







