പശ്ചാത്തലം
അർത്ഥം അറിയിക്കുകയും 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 വേരിയബിളുകൾ ഉപയോഗിച്ച് സാസ് ഉപയോഗിച്ചാണ് യൂട്ടിലിറ്റികൾ സൃഷ്ടിക്കുന്നത്. കംപൈലേഷനും ഡൈനാമിക് ആൽഫ സുതാര്യത മാറ്റങ്ങളും കൂടാതെ തത്സമയ വർണ്ണ മാറ്റങ്ങൾ ഇത് അനുവദിക്കുന്നു.
ഇത് എങ്ങനെ പ്രവർത്തിക്കുന്നു
ഞങ്ങളുടെ ഡിഫോൾട്ട് .bg-success
യൂട്ടിലിറ്റി പരിഗണിക്കുക.
.bg-success {
--bs-bg-opacity: 1;
background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
ആൽഫ സുതാര്യതയ്ക്കായി ഞങ്ങൾ --bs-success
(ന്റെ മൂല്യമുള്ള 25, 135, 84
) CSS വേരിയബിളിന്റെ RGB പതിപ്പ് ഉപയോഗിക്കുകയും രണ്ടാമത്തെ CSS വേരിയബിൾ അറ്റാച്ചുചെയ്യുകയും ചെയ്യുന്നു, ( ഒരു പ്രാദേശിക CSS വേരിയബിളിന് നന്ദി, സ്ഥിര മൂല്യത്തോടെ). അതിനർത്ഥം നിങ്ങൾ ഇപ്പോൾ ഉപയോഗിക്കുന്ന ഏത് സമയത്തും, നിങ്ങളുടെ കമ്പ്യൂട്ട് ചെയ്ത മൂല്യം . ഓരോ ക്ലാസിലെയും ലോക്കൽ CSS വേരിയബിൾ അനന്തരാവകാശ പ്രശ്നങ്ങൾ ഒഴിവാക്കുന്നു, അതിനാൽ യൂട്ടിലിറ്റികളുടെ നെസ്റ്റഡ് സംഭവങ്ങൾക്ക് സ്വയമേവ പരിഷ്കരിച്ച ആൽഫ സുതാര്യത ഉണ്ടാകില്ല.--bs-bg-opacity
1
.bg-success
color
rgba(25, 135, 84, 1)
.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;
മാപ്പ്
തീം വർണ്ണങ്ങൾ പിന്നീട് ഒരു സാസ് മാപ്പിൽ ഇടുന്നു, അതിനാൽ ഞങ്ങളുടെ യൂട്ടിലിറ്റികൾ, ഘടക മോഡിഫയറുകൾ എന്നിവയും അതിലേറെയും സൃഷ്ടിക്കുന്നതിന് അവയ്ക്ക് മേൽ ലൂപ്പ് ചെയ്യാം.
$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");
യൂട്ടിലിറ്റികൾ 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
)
),