Skip to content

Instantly share code, notes, and snippets.

@danhollick
Created February 3, 2020 16:53
Show Gist options
  • Select an option

  • Save danhollick/d128ee7d9e6142a89af99e058f8ff306 to your computer and use it in GitHub Desktop.

Select an option

Save danhollick/d128ee7d9e6142a89af99e058f8ff306 to your computer and use it in GitHub Desktop.
Overlay colors
function overlay(foreground, alpha, backgound) {
const overlaid = foreground.map((channel, i) =>
Math.round(channel * alpha + backgound[i] * (1 - alpha))
)
return overlaid
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment