/* alignment */
.text-left {
    text-align: start;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: end;
}

/* sizes */

.text-00 {
    font-size: var(--font-size-00);
}

.text-0 {
    font-size: var(--font-size-0);
}

.text-1 {
    font-size: var(--font-size-1);
}

.text-2 {
    font-size: var(--font-size-2);
}

.text-3 {
    font-size: var(--font-size-3);
}

/* weights */

.font-weight-2 {
    font-weight: var(--font-weight-2);
}

.font-weight-3 {
    font-weight: var(--font-weight-3);
}

.font-weight-4 {
    font-weight: var(--font-weight-4);
}

.font-weight-5 {
    font-weight: var(--font-weight-5);
}

.font-weight-7 {
    font-weight: var(--font-weight-7);
}

/* colours */
.text-color-default {
    color: var(--color-text);
}

.text-color-light {
    color: var(--color-text-light);
}

.text-color-blue {
    color: var(--color-blue);
}

.text-color-green {
    color: var(--color-green);
}

.text-color-light-green {
    color: var(--color-green-alt);
}

.text-color-orange {
    color: var(--color-orange);
}

.text-color-red {
    color: var(--color-red);
}

/* decorations */
.underline {
    text-decoration: underline;
}

.no-underline {
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

/* wrapping */
.text-no-wrap {
    white-space: nowrap;
    text-wrap: nowrap;
}
