// Typography

// [converter] $parent hack
@mixin text-emphasis-variant($parent, $color) {
  #{$parent} {
    color: $color;
  }
  .#{$class-prefix}-html-a#{$parent}:hover,
  .#{$class-prefix}-html-a#{$parent}:focus {
    color: darken($color, 10%);
  }
}
