|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1441 |
ariadna |
1 |
// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
|
|
|
2 |
@each $color, $value in $theme-colors {
|
|
|
3 |
.text-bg-#{$color} {
|
|
|
4 |
color: color-contrast($value) if($enable-important-utilities, !important, null);
|
|
|
5 |
background-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
|
|
|
6 |
}
|
|
|
7 |
}
|