15 CSS blend modes that will supercharge your images

Default avatar.
July 03, 2014
15 CSS blend modes that will supercharge your images.

One of the most invaluable features of Photoshop—arguably, the feature that powered it ahead of its competition—is blend modes. Blend modes take two pixels laid on top of each other and combine them in different ways, for example the darker color blend mode will simply render the darker of the two pixels. When expanded across a whole image, blend modes can produce some stunning effects.

Although Adobe's Photoshop didn't invent blend modes, its implementation is certainly the most emulated. But now, you don't need Photoshop to style your imagery in this way, because we can do it all, dynamically, with CSS3.

Browser Support

As it stands, browser support for CSS' background-blend-mode property is improving. Earlier versions of browsers required vendor prefixes and or the activation of experimental features, but caniuse.com reports support in the current versions of Chrome, Firefox and Opera, with Safari following soon.

There's no sign of IE support yet, but as blend modes are a progressive enhancement we can start considering using them now.

How to use background-blend-mode

There are a number of blend mode options in the CSS3 candidate recommendations, but the most useful for our purposes is background-blend-mode. This property allows us to blend two images, or an image and a background color.

Here's the code we need:

<div class="blend"></div>

And here's our basic CSS:

.blend
{
 width:782px;
 height:540px;
 background:#3db6b8 url("lighthouse.jpg") no-repeat center center;
}

We're now ready to add the blend modes.

To do this, we're going to add another class to our div, for example "multiply":

<div class="blend multiply"></div>

And then we'll create a second style rule:

.blend.multiply
 {
 background-blend-mode: multiply;
 }

If you'd like to take a look at the code you can download the source files here.

Multiply

Multiply, as the name suggests, multiplies the base pixel by the blend color, resulting in a darker color. Multiplying black results in black, and multiplying white leaves the image unchanged.

background-blend-mode: multiply;

Screen

Screen multiplies the inverse of the two pixel colors. Screen is the opposite of multiply and using screen on white will result in a white image and on black will leave the image unchanged.

background-blend-mode: screen; 

Overlay

Overlay is a complex blend mode. The multiplication depends on the base color: light colors get lighter, dark colors get darker.

background-blend-mode: overlay;

Darken

Darken, darkens an image. It looks at the two overlapping pixels and selects the darker of the two.

background-blend-mode: darken;

Lighten

The polar opposite of darken, lighten lightens an image by comparing the two overlapping pixels and choosing the lighter of the two.

background-blend-mode: lighten;

Color dodge

Color dodge brightens the base color to reflect the blend color by decreasing contrast.

background-blend-mode: color-dodge;

Color burn

Color burn is the polar opposite of color dodge, it darkens the base color resulting in an increase in contrast.

background-blend-mode: color-burn;

Hard light

Hard light either multiplies, or screens the colors depending on the blend color. If the blend is lighter than 50% gray the image will be lightened, otherwise it will be darkened. It's a great way to enhance the highlights and shadows in an image.

background-blend-mode: hard-light;

Soft light

Soft light is similar to hard light, but instead of Multiplying or screening the colors, soft light uses dodge and burn for a subtler effect.

background-blend-mode: soft-light;

Difference

Difference compares the two overlapping pixels and subtracts the color with the greater brightness from the other.

background-blend-mode: difference;

Exclusion

Exclusion is similar to difference, but it produces less contrast so is a little more usable.

background-blend-mode: exclusion;

Hue

Hue takes the luminance and saturation of the base color and the hue of the blend color and merges them.

background-blend-mode: hue;

Saturation

Saturation, like hue, merges two of the values of the base color with one property of the blend color, in this case the saturation.

background-blend-mode: saturation;

Color

Color follows the same pattern as hue and saturation, this time however it's the luminance of the base color and the hue and saturation of the blend color.

background-blend-mode: color;

Luminosity

Luminosity is the opposite of color, it combines the hue and saturation of the base color and the luminance of the blend color.

background-blend-mode: luminosity;

The image used throughout the article is lighthouse image via Shutterstock.

Sara Vieira

Sara Vieira is a freelance Web Designer and Developer with a passion for HTML5/CSS3 and jQuery. You can follow her on twitter or check out her website.

Read Next

LimeWire Developer APIs Herald a New Era of AI Integration

Generative AI is a fascinating technology. Far from the design killer some people feared, it is an empowering and…

20 Best New Websites, March 2024

Welcome to our pick of sites for March. This month’s collection tends towards the simple and clean, which goes to show…

Exciting New Tools for Designers, March 2024

The fast-paced world of design never stops turning, and staying ahead of the curve is essential for creatives. As…

Web Tech Trends to Watch in 2024 and Beyond

It hardly seems possible given the radical transformations we’ve seen over the last few decades, but the web design…

6 Best AI Productivity Apps in 2024

There’s no escaping it: if you want to be successful, you need to be productive. The more you work, the more you…

3 Essential Design Trends, February 2024

From atypical typefaces to neutral colors to unusual user patterns, there are plenty of new website design trends to…

Surviving the Leap from College to Real-World Design

So, you’ve finished college and are ready to showcase your design skills to the world. This is a pivotal moment that…

20 Mind-Bending Illusions That Will Make You Question Reality

Mind-bending videos. Divisive Images. Eye-straining visuals. This list of optical illusions has it all. Join us as we…

15 Best New Fonts, February 2024

Welcome to February’s roundup of the best new fonts for designers. This month’s compilation includes some innovative…

The 10 Best WordPress Quiz Plugins in 2024

Whether it’s boosting your organic search visibility or collecting data for targeted email marketing campaigns, a great…

20 Best New Websites, February 2024

It’s almost Valentine’s Day, so this latest collection is a billet-doux celebrating the best of the web this month.

Everything You Need to Know About Image Formats In 2024

Always trying to walk the tightrope between image quality and file size? Looking to branch out from JPGs and PNGs this…