2019-08-18 02:19:00 +08:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
.link-#{$color} {
|
2022-10-04 03:39:31 +08:00
|
|
|
color: $value if($enable-important-utilities, !important, null);
|
2019-08-18 02:19:00 +08:00
|
|
|
|
2020-10-13 15:58:06 +08:00
|
|
|
@if $link-shade-percentage != 0 {
|
2019-08-18 02:19:00 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2022-10-04 03:39:31 +08:00
|
|
|
color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage)) if($enable-important-utilities, !important, null);
|
2019-08-18 02:19:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|