_text-emphasis.scss 364 B

12345678910111213141516
  1. // stylelint-disable declaration-no-important
  2. // Typography
  3. @mixin text-emphasis-variant($parent, $color) {
  4. #{$parent} {
  5. color: $color !important;
  6. }
  7. @if $emphasized-link-hover-darken-percentage != 0 {
  8. a#{$parent} {
  9. @include hover-focus {
  10. color: darken($color, $emphasized-link-hover-darken-percentage) !important;
  11. }
  12. }
  13. }
  14. }