No Description
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.

_backgrounds.scss 930B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // Backgrounds
  3. //
  4. @each $color, $value in $colors {
  5. @include bg-variant(".bg-#{$color}", $value);
  6. }
  7. @each $color, $value in $theme-colors {
  8. @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
  9. }
  10. @each $color, $value in $colors {
  11. @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
  12. }
  13. // Background colors with transparency
  14. @each $color, $value in $theme-colors {
  15. @include bg-translucent-variant(".bg-translucent-#{$color}", $value);
  16. }
  17. // Sections backgrounds
  18. @each $color, $value in $section-colors {
  19. @include bg-variant(".section-#{$color}", $value);
  20. }
  21. @each $color, $value in $theme-colors {
  22. @include bg-gradient-variant(".bg-gradient-#{$color}", $value);
  23. }
  24. // Shape (svg) fill colors
  25. @each $color, $value in $theme-colors {
  26. .fill-#{$color} {
  27. fill: $value;
  28. }
  29. .stroke-#{$color} {
  30. stroke: $value;
  31. }
  32. }
  33. .fill-opacity-8 {
  34. fill-opacity: .8;
  35. }