Sass Mixins
// Text
@mixin text($size, $l-height: null, $weight: null, $color: null) {
font-size: $size;
line-height: $l-height;
font-weight: $weight;
color: $color;
}
// Text Usage
h3 {
@include text(1.25em, 1.2, $color: $color-text-dark);
margin-bottom: 1.7em;
}