/**
 * Mixin to add transparent background classes.
 *
 * Creates a selector based on the $parent provided and the $colour and $value given.
 */

// sass-lint:disable no-color-literals

@mixin transparent-background-variant($parent, $colour, $value) {
  #{$parent} {
    background-color: rgba($colour, $value);
  }
}
