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 {
|
|
|
|
.text-bg-#{$color} {
|
2022-05-21 01:28:31 +08:00
|
|
|
color: color-contrast($value) if($enable-important-utilities, !important, null);
|
2023-07-17 11:41:29 +08:00
|
|
|
background-color: RGBA(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
|
2022-04-28 11:40:23 +08:00
|
|
|
}
|
|
|
|
}
|