// Mixin Format Use Only @mixin text-style($text-clr, $weight, $size, $family) { color: $text-clr; font:{ weight: $weight; size: $size; family: $family; } } @mixin height-width($height, $width) { height: $height; width: $width; }