You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
389 B
18 lines
389 B
1 year ago
|
// Background Gradient Utilities
|
||
|
|
||
|
@each $color, $value in $theme-colors {
|
||
|
.bg-gradient-#{$color} {
|
||
|
background-color: $value;
|
||
|
background-image: linear-gradient(180deg, $value 10%, darken($value, 15%) 100%);
|
||
|
background-size: cover;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Grayscale Background Utilities
|
||
|
|
||
|
@each $level, $value in $grays {
|
||
|
.bg-gray-#{$level} {
|
||
|
background-color: $value !important;
|
||
|
}
|
||
|
}
|