@use 'colors' as *;
@use 'typography' as *;

:root {
    @each $ff, $shades in $font-family {
        @each $shade, $value in $shades {
            --tp-#{$ff}-#{$shade}: #{$value};
        }
    }

    @each $color, $shades in $colors {
        @each $shade, $value in $shades {
            --tp-#{"" + $color}-#{"" + $shade}: #{$value};
        }
    }
}
