/* ADUST color variables and palette utilities */

:root {
  --adust-blue-primary: #002060;
  --adust-red-accent:  #c00000;
  --adust-gray-dark:   #262626;
  --adust-gray-medium: #7f7f7f;
  --adust-gray-light:  #f2f2f2;
  --adust-white:       #ffffff;
}

/* ADUST palette utilities */
.text-adust-blue { color: var(--adust-blue-primary) !important; }
.bg-adust-blue { background-color: var(--adust-blue-primary) !important; }
.border-adust-blue { border-color: var(--adust-blue-primary) !important; }

.text-adust-red { color: var(--adust-red-accent) !important; }
.bg-adust-red { background-color: var(--adust-red-accent) !important; }
.border-adust-red { border-color: var(--adust-red-accent) !important; }

.text-adust-gray-dark { color: var(--adust-gray-dark) !important; }
.bg-adust-gray-dark { background-color: var(--adust-gray-dark) !important; }
.border-adust-gray-dark { border-color: var(--adust-gray-dark) !important; }

.text-adust-gray { color: var(--adust-gray-medium) !important; }
.bg-adust-gray { background-color: var(--adust-gray-medium) !important; }
.border-adust-gray { border-color: var(--adust-gray-medium) !important; }

.text-adust-gray-light { color: var(--adust-gray-light) !important; }
.bg-adust-gray-light { background-color: var(--adust-gray-light) !important; }
.border-adust-gray-light { border-color: var(--adust-gray-light) !important; }

.text-adust-white { color: var(--adust-white) !important; }
.bg-adust-white { background-color: var(--adust-white) !important; }
.border-adust-white { border-color: var(--adust-white) !important; }
