color-visited()

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

Last updated