CSS
Mixins
Background color
Text color
Border color
@import "mixins/bg-color";
@import "mixins/text-color";
.body {
@include bg-color(bg-color, 'colors.gray.500');
@include text-color(text-color, 'colors.red.500');
}Last updated
Was this helpful?