summaryrefslogtreecommitdiffstats
path: root/src/_mixins.scss
blob: 506b8ee3b40a89ee7a4a0d0bbbf2fb53a656b718 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@use 'functions' as fn;

@mixin set-font($basis, $values: ()) {
    $values: fn.set-font($basis, $values);

    @each $prop, $value in $values {
        @if $value != null {
            #{$prop}: $value;
        }
    }
}

@mixin heading-strong($size) {
    color:     fn.foreign-color(--heading, --strong);
    font-size: $size;
}

@mixin heading-medium($size) {
    @include set-font(--standard, (
        --line-height: null,
        --size:        $size,
        --weight:      bold,
        --transform:   uppercase,
        --spacing:     1px
    ));

    transform: none;
    color:     fn.foreign-color(--heading, --strong);
}

@mixin heading-faint($size) {
    @include set-font(--standard, (
        --line-height: null,
        --size:        $size,
        --weight:      500,
        --transform:   uppercase,
        --spacing:     1px
    ));

    transform: none;
    color:     fn.foreign-color(--heading, --light);
}