JA EN

Blend Mode

A mathematical method for compositing pixel values from two layers. Includes modes like Multiply, Screen, and Overlay for varied visual effects.

A blend mode (also called a compositing or drawing mode) determines how the pixel values of an upper layer combine mathematically with those of a lower layer to produce the final displayed colour. Popularised by Photoshop in the 1990s, blend modes are now available in CSS via mix-blend-mode and in the Canvas 2D API.

Key blend modes and their formulae (values normalised to 0-1):

Practical applications include:

In CSS, mix-blend-mode controls blending between elements, while background-blend-mode blends multiple background images within a single element. Both are GPU-accelerated, enabling real-time interactive effects without JavaScript computation overhead.

Related Terms

Related Articles