/* Extracted from docs/design/design-language-specimen.html (v0.4). */
:root {
  /* light theme — "Field File" */
  --ground:#F5F2EA; --surface:#FCFAF4; --surface-2:#EDE8DB;
  --line:#DBD5C6; --ink:#1C2126; --ink-muted:#5B6268;
  --accent:#A87A1F; --accent-ink:#111417;
  --pos:#276B45; --neg:#A33D2C; --live:#806318;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground:#111417; --surface:#191E22; --surface-2:#212830;
    --line:#2E3742; --ink:#E8E6DF; --ink-muted:#93A0A8;
    --accent:#D9A441; --accent-ink:#161006;
    --pos:#4CAF7D; --neg:#E05D45; --live:#E8C15A;
  }
}
:root[data-theme="dark"] {
  --ground:#111417; --surface:#191E22; --surface-2:#212830;
  --line:#2E3742; --ink:#E8E6DF; --ink-muted:#93A0A8;
  --accent:#D9A441; --accent-ink:#161006;
  --pos:#4CAF7D; --neg:#E05D45; --live:#E8C15A;
}
:root[data-theme="light"] {
  --ground:#F5F2EA; --surface:#FCFAF4; --surface-2:#EDE8DB;
  --line:#DBD5C6; --ink:#1C2126; --ink-muted:#5B6268;
  --accent:#A87A1F; --accent-ink:#111417;
  --pos:#276B45; --neg:#A33D2C; --live:#806318;
}
