// Tags

@mixin tag-variant($color) {

background-color: $color;

&[href] {
  @include hover-focus {
    background-color: darken($color, 10%);
  }
}

}