2019-08-17 20:19:00 +02:00
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
.link-#{$color} {
|
2022-10-03 21:39:31 +02:00
|
|
|
color: $value if($enable-important-utilities, !important, null);
|
2019-08-17 20:19:00 +02:00
|
|
|
|
2020-10-13 09:58:06 +02:00
|
|
|
@if $link-shade-percentage != 0 {
|
2019-08-17 20:19:00 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2022-10-03 21:39:31 +02: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-17 20:19:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|