/*
 * theme.css — WRITTEN BY THE PLATFORM. Do not edit.
 *
 * Palette: Soft Cyberpunk Matrix (technology)
 * Source colours: #100e1b #111718 #09e1ab #098ae1 #f6304f
 *
 * 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: #edfcf9;
  --surface: #f7fefc;
  --surface-2: #e2f0ee;
  --border: #cedbda;
  --border-strong: #abb5b6;
  --ink: #100e1b;
  --muted: #686d74;
  --accent: #098ae1;
  --accent-hover: #0875bf;
  --accent-ink: #100e1b;
  --accent-text: #0775be;
  --accent-strong: #0663a1;
  --accent-soft: #cdecf6;
  --accent-border: #86c9ee;
  --success: #15803d;
  --success-ink: #ffffff;
  --success-soft: #d3ede2;
  --success-strong: #137638;
  --warning: #b45309;
  --warning-ink: #ffffff;
  --warning-soft: #e6e8dc;
  --warning-strong: #a64c08;
  --danger: #b91c1c;
  --danger-ink: #ffffff;
  --danger-soft: #e7e1de;
  --danger-strong: #b91c1c;

  --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;
}

/* 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.
 */
