mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-23 20:54:22 +01:00
11 lines
506 B
SCSS
11 lines
506 B
SCSS
@use "../functions";
|
|
@use "../variables";
|
|
|
|
// All-caps `RGBA()` function used because of this Sass bug: https://github.com/sass/node-sass/issues/2251
|
|
@each $color, $value in variables.$theme-colors {
|
|
.text-bg-#{$color} {
|
|
color: functions.color-contrast($value) if(variables.$enable-important-utilities, !important, null);
|
|
background-color: RGBA(var(--#{variables.$prefix}#{$color}-rgb), var(--#{variables.$prefix}bg-opacity, 1)) if(variables.$enable-important-utilities, !important, null);
|
|
}
|
|
}
|