 

.fontSize(@pxValue) {
    @remValue: (@pxValue / 10);
    font-size:~"@{pxValue}px";
    font-size:~"@{remValue}rem";
}

.fontThin() {
    font-family: var(--font-family-base);
    font-weight: 200;
}

.fontLigth() {
    font-family: var(--font-family-base);
    font-weight: 300;
}

.fontRegular() {
    font-family: var(--font-family-base);
    font-weight: 400;
}

.fontMedium() {
    font-family: var(--font-family-base);
    font-weight: 600;
}

.fontBold() {
    font-family: var(--font-family-base);
    font-weight: 700;
}

.fontBlack() {
    font-family: var(--font-family-base);
    font-weight: 800;
}