:root,
[data-bs-theme="light"] {
  /* Brand Primary: RGB 255 255 0 | HEX #FFFF00 */
  --bs-primary: #49207f;
  --bs-primary-rgb: 73, 32, 127;
  --bs-primary-text-emphasis: #ffff;
  --bs-primary-bg-subtle: #e4deec;
  --bs-primary-border-subtle: #c9badd;

  /* Brand Secondary: RGB 73 32 127 | HEX #49207F */
  --bs-secondary: #49207f;
  --bs-secondary-rgb: 73, 32, 127;
  --bs-secondary-text-emphasis: #ffff;
  --bs-secondary-bg-subtle: #e4deec;
  --bs-secondary-border-subtle: #c9badd;

  /* Use secondary for links to keep contrast on light backgrounds */
  --bs-link-color: #49207f;
  --bs-link-color-rgb: 73, 32, 127;
  --bs-link-hover-color: #5f30a1;
  --bs-link-hover-color-rgb: 95, 48, 161;
  --bs-focus-ring-color: rgba(73, 32, 127, 0.35);
}

[data-bs-theme="dark"] {
  --bs-primary: #ffff33;
  --bs-primary-rgb: 255, 255, 51;
  --bs-primary-text-emphasis: #ffff80;
  --bs-primary-bg-subtle: #5a5a1f;
  --bs-primary-border-subtle: #7a7a2b;

  --bs-secondary: #7a43c4;
  --bs-secondary-rgb: 122, 67, 196;
  --bs-secondary-text-emphasis: #caa9f2;
  --bs-secondary-bg-subtle: #3a2a56;
  --bs-secondary-border-subtle: #5b4487;

  --bs-link-color: #a77cf0;
  --bs-link-color-rgb: 167, 124, 240;
  --bs-link-hover-color: #c7a6fb;
  --bs-link-hover-color-rgb: 199, 166, 251;
  --bs-focus-ring-color: rgba(167, 124, 240, 0.35);
}

/* Readability fixes for yellow primary */
.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-active-color: #ffffff;
}
