/* ===================================================================
   antirhodos.css — matches http://antirhodos.alx.kemet color palette
   Overrides OpenGist's Tailwind v4 @theme CSS custom properties.
   Only variables that are dominantly used for DARK-mode surfaces/text/
   borders are touched, so the light/dark toggle still means something —
   light mode keeps OpenGist's own stock look.
   =================================================================== */

:root {
  /* dark-mode surfaces: gray-800 = page/nav bg (outer canvas),
     gray-900 = recessed content wells (code blocks, editor) */
  --color-gray-800: #1f1a14;
  --color-gray-900: #171717;
  --color-black: #141008;

  /* dark-mode borders (both 600 and 700 shades are used almost
     exclusively as borders in this app, not backgrounds) */
  --color-gray-600: #44361f;
  --color-gray-700: #44361f;

  /* dark-mode text: slate-300 is the dominant body-text token,
     gray-400/slate-400 are muted/secondary text */
  --color-slate-300: #e3c8a2;
  --color-slate-400: #a8946d;
  --color-gray-400: #a8946d;
  --color-gray-300: #c9a565;

  /* brand/accent (primary) — shared between light and dark, so picked
     a gold dark enough to still read on a white background too */
  --color-primary-200: #e8d4b0;
  --color-primary-300: #d9c090;
  --color-primary-400: #c9a565;
  --color-primary-500: #b8934a;
  --color-primary-600: #8a6f3f;
  --color-primary-700: #6b5530;
  --color-primary-900: #44361f;
  --color-primary-950: #241f16;
}
