/* appcrane.dev theme: "Orchid". The only colour literals on appcrane.dev live here.
   One theme, dark: there is no light mode and no toggle, so no prefers-color-scheme rule
   and no data-theme attribute. Every page's <head> links this file before any other
   stylesheet, and the page CSS names these tokens rather than literals.
   scripts/check-theme.mjs enforces both, and checks the pairs it lists for AA.

   --at-accent is deliberately >30 degrees of hue away from --at-ok, --at-warn and
   --at-crit: before this palette the brand accent and the "warn" amber were the same
   colour, so "needs attention" and "click here" rendered identically in a deploy table. */
:root {
  color-scheme: dark;
  --at-scheme: dark;
  --at-bg: #181318;
  --at-surface: #211A22;
  --at-surface-2: #2C232E;
  --at-line: #3C2F3E;
  --at-line-2: #55445A;
  --at-text: #EBE0E9;
  --at-text-2: #CFC0CC;
  --at-muted: #A9939F;
  --at-accent: #E06FC4;
  --at-accent-2: #F0A0DA;
  --at-accent-ink: #1F0618;
  --at-accent-soft: #3A1B33;
  --at-ok: #4FB88A;
  --at-warn: #D9A343;
  --at-crit: #EE6550;
  --at-info: #79B8F5;
  --at-shadow: rgb(0 0 0 / 1);
}

html { background: var(--at-bg); }
