Initial commit from sbadmin2 template

This commit is contained in:
2025-11-23 10:49:07 +00:00
commit 74f5d3599a
1879 changed files with 201633 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// 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;
}
}