/**
 * @Author 瞿龙俊 - qulongjun@shine.design
 * @Date 2018/9/3 下午9:09
 */
@import "../functions";
@import "../config/color";

@each $name, $color in $sh--state-colors {
  .sh--font-#{$name} {
    color: array-get($color, base) !important;
  }

  .sh--font-inverse-#{$name} {
    color: array-get($color, inverse) !important;
  }

  .sh--bg-#{$name} {
    background-color: array-get($color, base) !important;
  }

  .sh--bg-fill-#{$name} {
    background-color: array-get($color, base) !important;
    color: array-get($color, inverse) !important;
  }
}