/*
 * GENERATED by scripts/theme-evidence.ts — do not edit.
 *
 * Repaints a captured console screen in the site's terracotta dark scheme by
 * re-declaring the console's own --color-* theme properties. Source of truth is
 * src/config/palette.ts; run `pnpm --filter=@sms/marketing theme:evidence`
 * after changing it.
 */
@media (prefers-color-scheme: dark) {
  html:not([data-shot-theme='light']) {
  --color-primary: #e26d5c;
  --color-primary-hover: #d2573f;
  --color-primary-rgb: 226 109 92;
  --color-sidebar: #151110;
  --color-sidebar-text: #f2ebe3;
  --color-background: #1c1714;
  --color-background-alt: #262019;
  --color-surface: #262019;
  --color-secondary-bg: #3a241f;
  --color-table-header: #151110;
  --color-row-hover: #392f27;
  --color-text-primary: #f2ebe3;
  --color-text-primary-rgb: 242 235 227;
  --color-text-secondary: #b9aa9c;
  --color-text-muted: #b9aa9c;
  --color-border: #392f27;
  --color-border-light: #4a3d33;
  --color-border-subtle: #392f27;
    color-scheme: dark;
  }
}
html[data-shot-theme='dark'] {
  --color-primary: #e26d5c;
  --color-primary-hover: #d2573f;
  --color-primary-rgb: 226 109 92;
  --color-sidebar: #151110;
  --color-sidebar-text: #f2ebe3;
  --color-background: #1c1714;
  --color-background-alt: #262019;
  --color-surface: #262019;
  --color-secondary-bg: #3a241f;
  --color-table-header: #151110;
  --color-row-hover: #392f27;
  --color-text-primary: #f2ebe3;
  --color-text-primary-rgb: 242 235 227;
  --color-text-secondary: #b9aa9c;
  --color-text-muted: #b9aa9c;
  --color-border: #392f27;
  --color-border-light: #4a3d33;
  --color-border-subtle: #392f27;
  color-scheme: dark;
}
