/* src/styles.scss */
:root {
  --color-background: #171513;
  --color-ink: #1c1a18;
  --color-ink-soft: #4a433b;
  --color-paper: #eee3cf;
  --color-paper-light: #f8f0df;
  --color-paper-dark: #d8c6a9;
  --color-red: #9e3f32;
  --color-red-dark: #733027;
  --color-muted: #756b5f;
  --color-line: rgb(35 29 24 / 0.42);
  --font-display:
    Georgia,
    "Times New Roman",
    serif;
  --font-typewriter:
    "Courier New",
    Courier,
    monospace;
  --font-ui:
    Inter,
    system-ui,
    sans-serif;
  --radius-paper: 0.2rem;
  --shadow-paper: 0 0.75rem 2rem rgb(0 0 0 / 0.28);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  color-scheme: dark;
  background: var(--color-background);
}
body {
  min-inline-size: 20rem;
  min-block-size: 100dvb;
  margin: 0;
  font-family: var(--font-ui);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
