/* www.pantone.com/color-finder/Rhodamine-Red-C */ $dark-color: #171E26; $rhodamine-color: #E10098; $text-color: #202020;

@mixin headline-font($size: 48px, $color: $text-color) {

font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
color: $color;
font-size: $size;
line-height: $size * 1.4;

}

@mixin body-font($size: 18px, $color: $text-color) {

font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
color: $color;
font-size: $size;
line-height: $size * 1.6;

}

@mixin code-font($size: 13px, $color: $text-color) {

font-family: 'Roboto Mono', Menlo, Monaco, monospace;
font-weight: 400;
color: $color;
font-size: $size;
line-height: $size * 17/13;

}