/*
 * theme.css — WRITTEN BY THE PLATFORM. Do not edit.
 *
 * Palette: Your colours (custom)
 * Source colours: #1b0a02 #3b2a1a #fff4e0 #c1440e #b44c22 #ffffff
 *
 * 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: #fff4e0;
  --surface: #fffaf1;
  --surface-2: #f4e8d5;
  --border: #dfd3c1;
  --border-strong: #bbae9d;
  --ink: #3b2a1a;
  --muted: #746859;
  --accent: #c1440e;
  --accent-hover: #a43a0c;
  --accent-ink: #ffffff;
  --accent-text: #b44c22;
  --accent-strong: #a43a0c;
  --accent-soft: #f6dbc3;
  --accent-border: #e3a582;
  --success: #15803d;
  --success-ink: #ffffff;
  --success-soft: #e3e6cc;
  --success-strong: #116d34;
  --warning: #b45309;
  --warning-ink: #ffffff;
  --warning-soft: #f6e1c6;
  --warning-strong: #a64c08;
  --danger: #b91c1c;
  --danger-ink: #ffffff;
  --danger-soft: #f7dac8;
  --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.
 */
