feat(typography): added text colors for basic html tags

closes #430
This commit is contained in:
Brandy Carney
2015-11-12 20:27:14 -05:00
parent c1134db96f
commit 1d37509b9b

View File

@@ -100,3 +100,17 @@ sup {
sub {
bottom: -0.25em;
}
@each $color, $value in $colors {
h1, h2, h3, h4, h5, h6,
p,
span,
a,
small,
sub,
sup {
&[#{$color}] {
color: $value !important;
}
}
}