:root {
  --rls-red: #E32D00;
  --rls-red-tint: #F39780;
}

/* Theme Colors */

.has-red-text {
  color: var(--rls-red) !important;
}

.has-tint-text {
  color: var(--rls-red-tint) !important;
}

.has-black-text {
  color: black;
}

.has-grey-text {
  color: #767676;
}

.has-white-text {
  color: white;
}

.has-white-color {
  color: white !important;
}

.has-red-bg {
  background-color: var(--rls-red);
}

.has-grey-bg {
  background-color: #767676;
}

.has-black-bg {
  background-color: black;
}