//text-color
@each $color, $value in $theme-colors {
  @if $color != 'white' {
    .text-#{$color} {
      color: $value;
    }
  }
}
