set-color()

// The mixin sets CSS variable color in `hsla()` format, by splitting it into four CSS variables.
@mixin set-color(
  $name,
  $color,
  $lightness: 0%,
  $alpha: 0,
  $prefix: $var-prefix
) {
  @include set-color-hsla($name, $color, $lightness, $alpha, $prefix);
}

Last updated