color-hover()

@mixin color-hover($color, $lightness: 0%) {
  &:hover {
    @include color($color, $lightness);
  }
}

Last updated