// >----------------------------------------------------------------<
// >                             IMPORT                             <
// >----------------------------------------------------------------<

@use "typography__variables" as *;
@use "typography__mixins" as *;


// >----------------------------------------------------------------<
// >                           TYPOGRAPHY                           <
// >----------------------------------------------------------------<

$typography-elements: (
    h1,
    h2,
    h3,
    h4,
    // h5,
    // h6,
    // s1,
    // s2,
    p1,
    p2,
    // p3,
    // ct,
    button,
    // ov,
    // sb,
    link,
);

@each $item in $typography-elements {
    .#{$item} {
        @include setFontColor( var(--color__ + $item), var(--color__ + $item + _inverse) );
    };
};
