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.

25 lines
379 B

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