/*
 * TurkServis Chat — Gece Atolyesi (dark theme)
 *
 * Canonical copy: turkservis/themes/gece-atolyesi.css
 * Served copy:    client/public/assets/themes/gece-atolyesi.css (keep in sync;
 *                 `npm run turkservis:sync-themes` copies canonical -> served)
 *
 * Intentional late-night workshop dark: warm charcoal, not cyberpunk black.
 * The warm gray ramp from usta-defteri.css already flows into upstream `.dark`
 * variables; this file only adjusts what must differ at night.
 */

html:root.dark {
  /* Brass primary action, slightly lifted for dark surfaces */
  --surface-submit: #97762f;
  --surface-submit-hover: #8a6a24;

  /* Warm off-white text instead of neutral gray */
  --text-primary: #ece5d8;

  /* Lighter teal focus/verified accents against charcoal */
  --ring-primary: #6fc4cb;
}

html:root.dark body {
  background-color: var(--surface-primary);
  color: var(--text-primary);
}

html:root.dark *:focus-visible {
  outline-color: #6fc4cb;
}

html:root.dark ::selection {
  background-color: #0b4a52;
  color: #ece5d8;
}
