הינטערגרונט
קאַנוויי טייַטש דורך 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);
.
אָופּאַסאַטי
צוגעגעבן אין וו5.1.0
זינט וו5.1.0, background-color
יוטילאַטיז זענען דזשענערייטאַד מיט Sass ניצן CSS וועריאַבאַלז. דאָס אַלאַוז פֿאַר פאַקטיש-צייט קאָליר ענדערונגען אָן זאַמלונג און דינאַמיש אַלף דורכזעיקייַט ענדערונגען.
וויאזוי עס ארבעט
באַטראַכטן אונדזער פעליקייַט .bg-success
נוצן.
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
מיר נוצן אַ RGB ווערסיע פון אונדזער --bs-success
(מיט די ווערט פון 25, 135, 84
) CSS בייַטעוודיק און אַטאַטשט אַ צווייטע CSS בייַטעוודיק, --bs-bg-opacity
, פֿאַר די אַלף דורכזעיקייַט (מיט אַ פעליקייַט ווערט 1
דאַנק צו אַ היגע CSS בייַטעוודיק). אַז מיטל ווען איר נוצן .bg-success
איצט, דיין קאַמפּיוטאַד color
ווערט איז rgba(25, 135, 84, 1)
. די היגע CSS בייַטעוודיק אין יעדער .bg-*
קלאַס אַוווידז ירושה ישוז אַזוי נעסטעד ינסטאַנסיז פון די יוטילאַטיז טאָן ניט אויטאָמאַטיש האָבן אַ מאַדאַפייד אַלף דורכזעיקייַט.
בייַשפּיל
צו טוישן די אָופּאַסאַטי, אָווועררייד --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>
סאַס
אין אַדישאַן צו די פאלגענדע סאַס פאַנגקשאַנאַליטי, באַטראַכטן לייענען וועגן אונדזער אַרייַנגערעכנט 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
);
גרייַסקאַלע פארבן זענען אויך בנימצא ווי אַ סאַס מאַפּע. די מאַפּע איז נישט געניצט צו דזשענערייט קיין יוטילאַטיז.
$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 פארבן זענען דזשענערייטאַד פון אַ באַזונדער סאַסס מאַפּע:
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value");
און הינטערגרונט קאָליר אָופּאַסאַטיז בויען אויף דעם מיט זייער אייגענע מאַפּע וואָס איז קאַנסומד דורך די יוטילאַטיז אַפּי:
$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);
}
Utilities API
הינטערגרונט יוטילאַטיז זענען דערקלערט אין אונדזער יוטילאַטיז אַפּי אין scss/_utilities.scss
. לערנען ווי צו נוצן די Utilities 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
)
),