@import '../../style/themes/index';

@new-badge-prefix-cls: ~'@{ant-prefix}-new-badge';

// 基本样式
.@{new-badge-prefix-cls} {
  display: inline-block;
  height: auto;
  padding: 4px 10px;
  color: @text-color;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  white-space: nowrap;
  background-color: #e4e4e4;
  border-radius: 20px;
  cursor: default;

  &-green {
    color: #135133;
    background-color: #d2e7dd;
  }

  &-blue {
    color: #214e83;
    background-color: #d4f4fb;
  }

  &-red {
    color: #83212b;
    background-color: #f7d7da;
  }

  &-yellow {
    color: #664d0e;
    background-color: #fceec4;
  }

  &-purple {
    color: #4b589d;
    background-color: #d6daea;
  }
}
