/* TLC Bootstrap theme — brand VALUES on Bootstrap NAMES.
   Load AFTER bootstrap.css.

   --bs-success is the BRIGHT ops green (#00b52b), not Bootstrap's $success.
   Bootstrap's $success (#198754) lives on .btn-green as a fixed fill.
   Do not point .btn-green at --bs-success — the split is the feature.

   TWO FAMILIES (Craig, 2026-08-20):

     ACCESSIBLE (named) — public pages
       .btn-green   #198754  white  4.53 PASS   (Bootstrap $success, NOT the token)
       .btn-yellow  #ffd700  dark   11.34 PASS  (same fill as --bs-warning, dark ink)
       .btn-red     #e60000  white  4.81 PASS

     BRIGHT (semantic) — ops / portal / secure-zone only
       .btn-success  var(--bs-success)  white  2.75  deliberate
       .btn-warning  var(--bs-warning)  white  1.40  deliberate
       .btn-danger   var(--bs-danger)   white  4.81  PASS

   White ink on .btn-success / .btn-warning is a CLASS exception, not estate-wide.
   Do not flip those two to dark ink. Do not "fix" .btn-yellow to white — dark
   ink is why that class exists. .tlc-veil / .tlc-toast stay bright (ops-only). */
:root {
  --bs-success: #00b52b;
  --bs-success-rgb: 0, 181, 43;
  --bs-danger: #e60000;
  --bs-danger-rgb: 230, 0, 0;
  --bs-warning: #ffd700;
  --bs-warning-rgb: 255, 215, 0;
}
