//
// Text Mixins
//
@mixin text-hover-variant($color) {
  @include transition($transition-base);
    &:hover {
      color: $color;
    }
}

