mixins.scss 275 B

123456789101112131415161718192021222324252627
  1. @mixin light-bg-text-color($color) {
  2. section.has-light-background {
  3. &,
  4. h1,
  5. h2,
  6. h3,
  7. h4,
  8. h5,
  9. h6 {
  10. color: $color;
  11. }
  12. }
  13. }
  14. @mixin dark-bg-text-color($color) {
  15. section.has-dark-background {
  16. &,
  17. h1,
  18. h2,
  19. h3,
  20. h4,
  21. h5,
  22. h6 {
  23. color: $color;
  24. }
  25. }
  26. }