/* src/styles.css */
:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #6b7280;
  --card: #f5f5f7;
  --border: #e2e2e6;
  --accent: #2563eb;
  --ok: #16a34a;
  --err: #dc2626;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101014;
    --fg: #f2f2f4;
    --muted: #9ca3af;
    --card: #1a1a20;
    --border: #2a2a32;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

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