2022-04-28 11:40:23 +08:00
|
|
|
// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
|
|
|
|
@each $color, $value in $theme-colors {
|
|
|
|
$color-rgb: to-rgb($value);
|
|
|
|
.text-bg-#{$color} {
|
2022-05-21 01:28:31 +08:00
|
|
|
color: color-contrast($value) if($enable-important-utilities, !important, null);
|
|
|
|
background-color: RGBA($color-rgb, var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
|
2022-04-28 11:40:23 +08:00
|
|
|
}
|
|
|
|
}
|