:root {
  color-scheme: light;
  --paper: #f4efe3;
  --paper-deep: #e9e0cf;
  --surface: #fffdf6;
  --surface-muted: #eee8dc;
  --ink: #0a0a08;
  --ink-soft: #3d3a34;
  --muted: #6b655a;
  --line: #11110e;
  --line-soft: #aca596;
  --hazard: #ffe500;
  --hazard-dark: #e3cb00;
  --signal: #d8391f;
  --blue: #1747c8;
  --success: #187342;
  --warning: #9a5900;
  --danger: #b42318;
  --info: #1747c8;
  --shadow: 7px 7px 0 var(--ink);
  --shadow-small: 4px 4px 0 var(--ink);
  --radius: 0;
  --focus: #1747c8;
  --display: "Avenir Next Condensed", "Arial Narrow Bold", Haettenschweiler, Impact, sans-serif;
  --sans: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", system-ui, sans-serif;
  --mono: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, monospace;
  --content: 1560px;
  --header-height: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

@media (prefers-contrast: more) {
  :root {
    --paper: #fff;
    --surface: #fff;
    --surface-muted: #eee;
    --muted: #292929;
    --line-soft: #333;
  }
}

@media (forced-colors: active) {
  :root {
    --paper: Canvas;
    --surface: Canvas;
    --surface-muted: Canvas;
    --ink: CanvasText;
    --ink-soft: CanvasText;
    --muted: CanvasText;
    --line: CanvasText;
    --hazard: Highlight;
    --signal: LinkText;
    --blue: LinkText;
    --shadow: none;
    --shadow-small: none;
  }
}
