Skip to content Paweł Grzybek

Make some magic with CSS blend modes

It was an ordinary Wednesday morning, I was enjoying my morning espresso shot at Engine Creative, when suddenly my lovely colleague Chloe put on my desk the latest issue of net magazine freshly delivered by the postman. I had a quick glance at the cover art that boldly stated “Make magic with CSS”. Pfff — I totally ignored it — I know everything about CSS, don’t I? It was a really nice espresso.

It is an ordinary Sunday morning, I’m enjoying my morning espresso shot on my sofa — time for some press. After reading the first three paragraphs of “Make magic with CSS” by Aga Naplocha I’ve realised that I had really fallen behind on my CSS skills. It is a really nice espresso but I’m going to brew more because today is the day to catch up on some CSS magic — blend modes.

Blend modes essentials

If you have ever used any image editing software like Adobe Photoshop, Affinity Photo or Sketch App you probably have some experience with blend modes. Yes — it is one of those features that designers love as it’s essentially a shortcut method for doing beautiful things but front-end developers hate them because they are laborious to implement. A-ha! Not anymore! I will show you how in a second but first let’s brush up on some theory courtesy of Wikipedia.

Blend modes in digital image editing are used to determine how two layers are blended into each other. However, as each pixel has a numerical representation, a large number of ways to blend two layers is possible.

Blend modes in Adobe Photoshop, Sketch App and Affinity Photo

For lots of designers and developers working with blend modes is a very experimental process. Memorizing all the mathematical calculations isn’t required to use them effectively. It doesn’t take much time to juggle with some options in Photoshop but it can be very time consuming when the same needs to be done in CSS or JavaScript. A little bit of understanding helps and I will do my best to help you with that.

Blend modes by group

Photoshop and Sketch separate blending options into a few meaningful groups. Unfortunately Affinity Photo presents its options in a non-grouped manner (this would be worth adding in a future version). I’m not going to describe the algorithm behind each of them as there are plenty of detailed explanations out there — a brief summary of each group is enough to grasp the concept.

Grouped blend modes in Sketch App

Normal

No mathematical algorithm is applied. If you are wondering why the very random looking “Dissolve” mode belongs to this group, you’ve just answered your own question — random. The example below shows the “Normal” blend mode.

Blend mode - Normal group

Darken

As the name suggests — the result will be darker than the initial look of the blended layer. The base colour is pure white. Every pixel darker than white results in a darkened output of blended pixels. Using this mode with pure white layers won’t generate any effect. Darken generates inverted effects to modes from the “Lighten” category. The example below shows the “Darken” blend mode.

Blend mode - Darken group

Lighten

As the name suggests — the result will be lighter than the initial look of the blended layer. The base colour is a pure black. Every pixel brighter than black results in a lightened output of blended pixels. Using this mode with pure black layers won’t generate any effect. Lighten generates inverted effects to modes from the “Darken” category. The example below shows the “Lighten” blend mode.

Blend mode - Lighten group

Contrast

Darken blend modes use pure white as the neutral point. Lighten ones use pure black. The Contrast group uses 50% gray as the base colour to recalculate the blended result. The purpose of this category is to manipulate the contrast of an image. The example below shows the “Hard Light” blend mode.

Blend mode - Contrast group

Inversion

This set of blend modes calculate the difference or colour inversion between two layers. This produces results where colours are cancelled or inverted in the colour wheel. The example below shows the “Difference” blend mode.

Blend mode - Inversion group

Component

The Component group allows us to blend primary colour components: hue, saturation and brightness. The example below shows the “Hue” blend mode.

Blend mode - Component group

Software vs. web reality

Web design software is much more generous with the available options than the web platform is. Adobe Photoshop gives us access to 27 blend modes, Sketch gives us 16 options and Affinity Photo offers a crazy 30 variations.

According to the recent Compositing and Blending Level Spec, CSS comes with 16 values that we can use in our projects. These are exactly the same values as are available in Sketch.

Working with CSS blend modes

Enough theory — time for some practice. As mentioned a second ago, CSS allows us to use the following values:

There are two CSS properties out there that allow us to work with blend modes: background-blend-mode and mix-blend-mode. The effect that those properties produce is identical but the use case for them is different. Let’s have a quick look at both of them.

background-blend-mode

As it says on the tin background-blend-mode applies a blend mode to background-color or background-image. It can take multiple values when we use more than one background. Using it with gradients can produce really impressive results — but I will leave the creativity to you. Let’s have a look at a simple example.

.box {
  background-color: #D3545B;
  background-image: url('image.jpg');
  background-blend-mode: multiply;
}

See the Pen 2017-04-28-1 by Pawel Grzybek (@pawelgrzybek) on CodePen.

mix-blend-mode

It would be a bit restrictive to use blend modes with backgrounds only. That’s the reason why mix-blend-mode exists. It allows us to blend any element with its backdrop.

.page {
  background-image: url('image.jpg');
}

.box {
  background-image: repeating-linear-gradient(
    45deg,
    #D3545B,
    #D3545B 2rem,
    transparent 2rem,
    transparent 3rem
  );
  mix-blend-mode: darken;
}

See the Pen 2017-04-28-2 by Pawel Grzybek (@pawelgrzybek) on CodePen.

A word of advice! There is a bug in Chrome. Blending with the body element is broken in Google’s browser — it works like a charm in other ones though.

But Internet Explorer, Edge and Safari…

Let’s be honest — the browser support isn’t fantastic. Internet Explorer and Edge don’t support it at all. Desktop and mobile Safari has a real issue with all non-separable blend modes: hue, saturation, color, luminosity.

Blend modes support in the browsers

Let me introduce a new term now — “no blend modes first”. Your project on an old-school browser shouldn’t be any less functional as the one on the latest version of Google Chrome. Take the support for a crazy feature as an opportunity, not as something that should dictate your design decisions. But if you really, really must…

if(!window.getComputedStyle(document.body).mixBlendMode) {
  document.body.className += ' no-mix-blend-mode';
}

if(!window.getComputedStyle(document.body).backgroundBlendMode) {
  document.body.className += ' no-background-blend-mode';
}
.box {
  background-color: #D3545B;
  background-image: url('image.jpg');
  background-blend-mode: hard-light;
}

.no-background-blend-mode .box {
  background-image: url('some-fallback-image.jpg');
}

And here is the result on the latest version of Google Chrome and IE 9.

Cross browser Internet Explorer 9 CSS blend mode

See the Pen 2017-04-28-3 by Pawel Grzybek (@pawelgrzybek) on CodePen.

I missed you CSS

Aga, thanks for giving me the inspiration to write this article. I promise to catch up on some of the latest CSS magic — actually I really miss it.

Hopefully this article helped you out guys. For me, writing it was a really enjoyable path to learning it. I officially announce that I’m starting to use CSS blend modes in production today. Until next time CSS magicians!

Comments

  • A
    Allen Yuan

    Nice tutorial

    👆 you can use Markdown here

    Your comment is awaiting moderation. Thanks!
    • Pawel Grzybek
      Pawel Grzybek

      Thanks a lot @disqus_vmsTsmU5VO:disqus :)

      👆 you can use Markdown here

      Your comment is awaiting moderation. Thanks!
  • L
    Lee Roy

    How would you go about bringing background-reactive graphics to ebooks (.epub)?

    Say you have a book, it displays graphics with black on white... but if the user wants to read on a dark background, the graphics should automatically switch to the white variant.

    I have a feeling that this could be accomplished with blend modes, but not sure if EPUB readers support it.

    Here's one of my attempts. I had a PhotoSwipe gallery and wanted to show the controls overlayed, without putting a background behind them. If the page background was white, I had to make them black. But then on zoom if the product image was dark and behind the black controls, they wouldn't be visible: Demo

    Here's what I did to make the controls turn bright on dark backgrounds:

    Start off with a transparent PNG sprite with the controls white.
    Applied this CSS to the element that held the buttons:


    .pswp__top-bar {
    /* EDITED Dev experiment make buttons stand out on white OR black */
    /* Not supported on: IE, Edge, Safari, iOS, Opera Mini, Android Browser */
    filter: brightness(1.3);
    mix-blend-mode: exclusion;
    }

    Related:


    BackgroundCheck – Automatically switch to a darker or a lighter version of an element depending on the brightness of images behind it.


    jamiebrittain/colourBrightness.js: A lightweight and easy-to-use jQuery plugin that determines if the background colour of an element is light or dark.




    👆 you can use Markdown here

    Your comment is awaiting moderation. Thanks!
  • A
    Aaron Loften

    I dont like the fallback.
    If you have an image that looks good without the mix-blend(or an image of how it should look with the mix-blend) then just use that image!

    =/

    Consistency should be the top goal when using a fallback and if the result is similar/the same to just use the fallback, then why bother with the css??

    Example, using mix-blend to make a white background of a jpg transparent. If you have an image of what it will look like afterward, just use it! Especially if you plan on taking the image just to use it as a fallback.

    This is especially true in the examples you gave above where the image changes significantly(like when blending two images instead of a background color with an image).

    Still a good article. Dont take offense to it. We just need to remember consistency and simplicity are some of the best attributes for a developer's code.

    👆 you can use Markdown here

    Your comment is awaiting moderation. Thanks!
    • d
      david_b79

      If you want to use the same image in multiple capacities it makes sense to not have multiple saved versions that all get cached. Using blend mode allows us to have one version of an image and use it to varying effect while still only caching one image.

      👆 you can use Markdown here

      Your comment is awaiting moderation. Thanks!
  • G
    Graphic Aid

    Nice Blog.We want more.
    Graphic Aid | Clipping Path | Neck Joint | Color Correction | Jewelry Retouching | Masking | PSD to HTML | Web Banner | Web Design

    👆 you can use Markdown here

    Your comment is awaiting moderation. Thanks!
  • A
    Ashraf

    Thank you for sharing this valuable information with us. It's really helpful and informative article.

    👆 you can use Markdown here

    Your comment is awaiting moderation. Thanks!

Leave a comment

👆 you can use Markdown here

Your comment is awaiting moderation. Thanks!