.#{$pui}text {
    @include sizes;

    font-size: inherit;

    @each $name, $color in $color-schema {
        &.is-#{$name} {
            color: $color;
        }
    }

    &.underline {
        text-decoration: underline;
    }

    &.overline {
        text-decoration: overline;
    }

    &.cross {
        text-decoration: line-through;
    }

    &.strong {
        font-weight: $font-weight-bold;
    }

    &.bold {
        font-weight: $font-weight-medium;
    }

    &.mono {
        font-family: $code-font-family;
    }
}