/* src/styles.css */
:root {
  --bg: #0b141a;
  --panel: #111b21;
  --panel2: #202c33;
  --chatBg: #0b141a;
  --text: #e9edef;
  --muted: #8696a0;
  --border: #2a3942;
  --input: #202c33;
  --bubbleIn: #202c33;
  --bubbleOut: #005c4b;
}
body.light {
  --bg: #f6f7f8;
  --panel: #ffffff;
  --panel2: #ffffff;
  --chatBg: #eef2f4;
  --text: #0b141a;
  --muted: rgba(11,20,26,.60);
  --border: rgba(11,20,26,.10);
  --input: rgba(11,20,26,.04);
  --bubbleIn: #ffffff;
  --bubbleOut: rgba(0,168,132,.14);
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
}

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