/*
 * theme.css — WRITTEN BY THE PLATFORM. Do not edit.
 *
 * Palette: Select Data Analytics Blue (technology)
 * Source colours: #022a2c #044f64 #07a7af #0adced #ebfdfe
 *
 * Every value below is either one of those five or derived from them, and each
 * one is contrast-corrected against this palette's own background. Consume
 * them with var(--token); never write a colour value in app code.
 */

:root {
  --canvas: #f1fdfe;
  --surface: #f9feff;
  --surface-2: #e5f2f4;
  --border: #d0dfe1;
  --border-strong: #a9bebf;
  --ink: #022a2c;
  --muted: #536b6d;
  --accent: #0adced;
  --accent-hover: #09bbc9;
  --accent-ink: #022a2c;
  --accent-text: #066f79;
  --accent-strong: #067984;
  --accent-soft: #d1f8fc;
  --accent-border: #89eef6;
  --success: #15803d;
  --success-ink: #ffffff;
  --success-soft: #d7eee7;
  --success-strong: #137638;
  --warning: #b45309;
  --warning-ink: #ffffff;
  --warning-soft: #eae9e1;
  --warning-strong: #a64c08;
  --danger: #b91c1c;
  --danger-ink: #ffffff;
  --danger-soft: #eae2e3;
  --danger-strong: #b91c1c;
  --chart-1: #069daa;
  --chart-2: #6b8fe1;
  --chart-3: #99559c;
  --chart-4: #d67068;
  --chart-5: #8d6a06;
  --chart-6: #769a3b;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow: 0 1px 2px rgba(15, 18, 26, 0.05);
  --shadow-raised: 0 1px 2px rgba(15, 18, 26, 0.06), 0 8px 24px rgba(15, 18, 26, 0.06);

  --font-sans: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* The same palette on a dark page — written here, never by the app. It
   applies while <html> carries data-theme="dark", which the platform's own
   toggle sets and remembers; an app that never renders that toggle is exactly
   as it was. Do not repoint any of these from app code: a token that
   references another token here is a cycle, and CSS makes every property in
   a cycle invalid. */
html[data-theme="dark"] {
  --canvas: #021010;
  --surface: #1b2828;
  --surface-2: #0f1c1c;
  --border: #253131;
  --border-strong: #4e5858;
  --ink: #f1fdfe;
  --muted: #919e9f;
  --accent: #0adced;
  --accent-hover: #2fe1f0;
  --accent-ink: #022a2c;
  --accent-text: #0adced;
  --accent-strong: #0adced;
  --accent-soft: #043d41;
  --accent-border: #066c73;
  --success: #15803d;
  --success-ink: #ffffff;
  --success-soft: #06291a;
  --success-strong: #499c68;
  --warning: #b45309;
  --warning-ink: #ffffff;
  --warning-soft: #291f0e;
  --warning-strong: #c57a40;
  --danger: #b91c1c;
  --danger-ink: #ffffff;
  --danger-soft: #2a1313;
  --danger-strong: #d16969;
  --chart-1: #0adced;
  --chart-2: #9ebdfe;
  --chart-3: #d58ada;
  --chart-4: #fca29b;
  --chart-5: #ce9e26;
  --chart-6: #82d584;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-raised: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.55);
}

/* app.css — this app's own CSS.
 *
 * Empty on this template: it is served and seeded so that the frozen
 * assets.ts can import it on EVERY template in the chain (a frozen file may
 * not import a file that is not seeded — that broke ~190 apps once). Only
 * templates that list it in `writable` let the app put anything here.
 */
