Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.

23 lines
414 B

7 years ago
  1. /**
  2. * classes as modificators for text-color
  3. *
  4. *
  5. * @author Björn Hase
  6. *
  7. */
  8. $text-colors: (
  9. 'success': $base-color-success,
  10. 'warning': $base-color-warning,
  11. 'danger': $base-color-danger,
  12. 'white': white,
  13. 'black': black
  14. ) !default;
  15. @mixin crispy-boilerplate-text-colors() {
  16. @each $name, $color in $text-colors {
  17. .--text-#{$name} {
  18. color: $color;
  19. }
  20. }
  21. }