배경
의미를 전달 background-color
하고 그라디언트로 장식을 추가하십시오.
배경색
상황별 텍스트 색상 클래스와 유사하게 요소의 배경을 상황별 클래스로 설정합니다. 배경 유틸리티 는 설정되지 않으므로 경우에 따라 color
.text-*
색상 유틸리티 를 사용하고 싶을 것 입니다.
<div class="p-3 mb-2 bg-primary text-white">.bg-primary</div>
<div class="p-3 mb-2 bg-secondary text-white">.bg-secondary</div>
<div class="p-3 mb-2 bg-success text-white">.bg-success</div>
<div class="p-3 mb-2 bg-danger text-white">.bg-danger</div>
<div class="p-3 mb-2 bg-warning text-dark">.bg-warning</div>
<div class="p-3 mb-2 bg-info text-dark">.bg-info</div>
<div class="p-3 mb-2 bg-light text-dark">.bg-light</div>
<div class="p-3 mb-2 bg-dark text-white">.bg-dark</div>
<div class="p-3 mb-2 bg-body text-dark">.bg-body</div>
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
<div class="p-3 mb-2 bg-transparent text-dark">.bg-transparent</div>
배경 그라데이션
클래스 를 추가 .bg-gradient
하면 배경에 배경 이미지로 선형 그래디언트가 추가됩니다. 이 그라디언트는 바닥으로 페이드 아웃되는 반투명 흰색으로 시작합니다.
사용자 정의 CSS에 그라디언트가 필요합니까? 그냥 추가하십시오 background-image: var(--bs-gradient);
.
불투명
v5.1.0에 추가됨
v5.1.0부터 background-color
유틸리티는 CSS 변수를 사용하여 Sass로 생성됩니다. 이를 통해 컴파일 및 동적 알파 투명도 변경 없이 실시간 색상 변경이 가능합니다.
작동 방식
기본 .bg-success
유틸리티를 고려하십시오.
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
--bs-success
(값이 인 ) CSS 변수 의 RGB 버전을 사용 하고 알파 투명도를 위해 25, 135, 84
두 번째 CSS 변수 를 첨부했습니다 ( 로컬 CSS 변수 덕분에 --bs-bg-opacity
기본값이 있음). 1
즉 .bg-success
, 지금 사용할 때마다 계산된 color
값은 rgba(25, 135, 84, 1)
입니다. 각 .bg-*
클래스 내부의 로컬 CSS 변수는 상속 문제를 방지하므로 유틸리티의 중첩 인스턴스가 자동으로 수정된 알파 투명도를 갖지 않습니다.
예시
불투명도를 변경하려면 --bs-bg-opacity
사용자 정의 스타일 또는 인라인 스타일을 통해 재정의하십시오.
<div class="bg-success p-2 text-white">This is default success background</div>
<div class="bg-success p-2" style="--bs-bg-opacity: .5;">This is 50% opacity success background</div>
.bg-opacity
또는 다음 유틸리티 중에서 선택합니다 .
<div class="bg-success p-2 text-white">This is default success background</div>
<div class="bg-success p-2 text-white bg-opacity-75">This is 75% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-50">This is 50% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-25">This is 25% opacity success background</div>
<div class="bg-success p-2 text-dark bg-opacity-10">This is 10% opacity success background</div>
사스
다음 Sass 기능 외에도 색상 등에 대한 포함된 CSS 사용자 정의 속성 (일명 CSS 변수)에 대해 읽어보십시오.
변수
대부분의 background-color
유틸리티는 일반 색상 팔레트 변수에서 재할당된 테마 색상으로 생성됩니다.
$blue: #0d6efd;
$indigo: #6610f2;
$purple: #6f42c1;
$pink: #d63384;
$red: #dc3545;
$orange: #fd7e14;
$yellow: #ffc107;
$green: #198754;
$teal: #20c997;
$cyan: #0dcaf0;
$primary: $blue;
$secondary: $gray-600;
$success: $green;
$info: $cyan;
$warning: $yellow;
$danger: $red;
$light: $gray-100;
$dark: $gray-900;
$gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0));
회색조 색상도 사용할 수 있지만 유틸리티를 생성하는 데 하위 집합만 사용됩니다.
$white: #fff;
$gray-100: #f8f9fa;
$gray-200: #e9ecef;
$gray-300: #dee2e6;
$gray-400: #ced4da;
$gray-500: #adb5bd;
$gray-600: #6c757d;
$gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black: #000;
지도
그런 다음 테마 색상을 Sass 맵에 넣어 유틸리티, 구성 요소 수정자 등을 생성하기 위해 반복할 수 있습니다.
$theme-colors: (
"primary": $primary,
"secondary": $secondary,
"success": $success,
"info": $info,
"warning": $warning,
"danger": $danger,
"light": $light,
"dark": $dark
);
회색조 색상은 Sass 맵으로도 사용할 수 있습니다. 이 맵은 유틸리티를 생성하는 데 사용되지 않습니다.
$grays: (
"100": $gray-100,
"200": $gray-200,
"300": $gray-300,
"400": $gray-400,
"500": $gray-500,
"600": $gray-600,
"700": $gray-700,
"800": $gray-800,
"900": $gray-900
);
RGB 색상은 별도의 Sass 맵에서 생성됩니다.
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
그리고 배경색 불투명도는 유틸리티 API에서 사용하는 자체 맵을 기반으로 합니다.
$utilities-bg: map-merge(
$utilities-colors,
(
"black": to-rgb($black),
"white": to-rgb($white),
"body": to-rgb($body-bg)
)
);
$utilities-bg-colors: map-loop($utilities-bg, rgba-css-var, "$key", "bg");
믹신
백그라운드 유틸리티를 생성하는 데 믹스인이 사용되지는 않지만 자신만의 그라디언트를 생성하려는 다른 상황을 위한 몇 가지 추가 믹스인이 있습니다.
@mixin gradient-bg($color: null) {
background-color: $color;
@if $enable-gradients {
background-image: var(--#{$variable-prefix}gradient);
}
}
// Horizontal gradient, from left to right
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {
background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
}
// Vertical gradient, from top to bottom
//
// Creates two color stops, start and end, by specifying a color and position for each color stop.
@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) {
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
}
@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {
background-image: linear-gradient($deg, $start-color, $end-color);
}
@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
}
@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {
background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
}
@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {
background-image: radial-gradient(circle, $inner-color, $outer-color);
}
@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {
background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
}
유틸리티 API
백그라운드 유틸리티는 의 유틸리티 API에 선언되어 있습니다 scss/_utilities.scss
. 유틸리티 API를 사용하는 방법을 알아보세요.
"background-color": (
property: background-color,
class: bg,
local-vars: (
"bg-opacity": 1
),
values: map-merge(
$utilities-bg-colors,
(
"transparent": transparent
)
)
),
"bg-opacity": (
css-var: true,
class: bg-opacity,
values: (
10: .1,
25: .25,
50: .5,
75: .75,
100: 1
)
),