@import './colors.scss';
@import './auction-colors.scss';

.green {
  color: $success !important;
  &:hover {
    color: $success-hover !important;
  }
}

.green-bg {
  background-color: $success !important;
}

// Red
.red {
  color: $danger;
  &:hover {
    color: $danger-hover;
  }
}
.red-bg {
  background-color: $danger !important;
}

// Yellow
.yellow {
  color: $warning;
  &:hover {
    color: $warning-hover;
  }
}
.yellow-bg {
  background-color: $warning !important;
}

.orange {
  color: $orange;
}

.light-gray {
  color: $gray-05;
}

.primary-blue {
  color: $auction-blue;
}

.disabled-gray {
  color: $gray-20;
}
