//////////////////////////////////////////
// THEME / MIXINS / BACKGROUND BLEND MODES
//////////////////////////////////////////


// Multiply
@mixin bg-multiply($imp:null) {

  @supports (background-blend-mode: multiply) {
    background-blend-mode: multiply $imp;
  }

}


// Soft Light
@mixin bg-soft-light($imp:null) {

  @supports (background-blend-mode: soft-light) {
    background-blend-mode: soft-light $imp;
  }

}