:root {
  --text-primary-subtle: #cfe2ff;
  --text-secondary-subtle: #e2e3e5;
  --text-success-subtle: #d1e7dd;
  --text-info-subtle: #cff4fc;
  --text-warning-subtle: #fff3cd;
  --text-danger-subtle: #f8d7da;
  --text-light-subtle: #fcfcfd;
  --text-dark-subtle: #ced4da;
}

.text-orange {
    color: orange;
}
.text-primary-subtle {
    color: var(--text-primary-subtle);
}
.text-secondary-subtle {
    color: var(--text-secondary-subtle);
}
.text-success-subtle {
    color: var(--text-success-subtle);
}
.text-info-subtle {
    color: var(--text-info-subtle);
}
.text-warning-subtle {
    color: var(--text-warning-subtle);
}
.text-danger-subtle {
    color: var(--text-danger-subtle);
}
.text-light-subtle {
    color: var(--text-light-subtle);
}
.text-dark-subtle {
    color: var(--text-dark-subtle);
}

