Backgrounds

A utility to create custom background colors with inline styles and gradient to include over solid backgrounds.

Examples

Blue
<div class="bg" style="--bg-col:RoyalBlue; --bg-text:white;">Blue</div>

The .gradient utility can be used with the .background class or any background color styles:

Gradient
<div class="bg gradient" style="--bg-col:RoyalBlue; --bg-text:white;">Gradient</div>

Using the module

Add the sassmods.scss to your custom styles as below then include the Sass mixin anywhere below.

custom.scss
@use "sassmods/scss/sassmods" as *;
@include background-css;
@include gradient-css;

See customizing for information about using the Sass and CSS variables in the source code (see below) to customize the styles, and Sass variables (on the using SassMods page) for other ways to use the variables to create custom styles.

Source

_backgrounds.scss
// ---------------------------------------------------------- 
// Backgrounds
// ----------------------------------------------------------
$gradient:    linear-gradient(180deg, rgba(white, .15), rgba(white, 0)) !default;

@mixin background {
  color: var(--txt);
  background-color: var(--bg);
}

@mixin background-css {
  .background {
    @include background;
  }
}

@mixin gradient {
  background-image: $gradient;
}

@mixin gradient-css {
  .gradient {
    @include gradient;
  }
}