mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
19 lines
399 B
SCSS
19 lines
399 B
SCSS
//
|
|
// Contextual backgrounds
|
|
//
|
|
|
|
.bg-faded {
|
|
background-color: darken($body-bg, 3%);
|
|
}
|
|
|
|
@include bg-variant('.bg-primary', $brand-primary);
|
|
|
|
@include bg-variant('.bg-success', $brand-success);
|
|
|
|
@include bg-variant('.bg-info', $brand-info);
|
|
|
|
@include bg-variant('.bg-warning', $brand-warning);
|
|
|
|
@include bg-variant('.bg-danger', $brand-danger);
|
|
|
|
@include bg-variant('.bg-inverse', $brand-inverse);
|