/* src/styles.css */
:root {
  --bg: #0e1220;
  --panel: #171b2b;
  --panel-2: #1b2032;
  --text: #e7e8ee;
  --muted: #a7adc4;
  --primary: #00ffa6;
  --tile: #23283d;
  --tile-hover: #2b3150;
  --ring: #00e0a0;
  --radius: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Segoe UI",
    Roboto,
    sans-serif;
}
app-root {
  display: block;
  height: 100%;
  width: 100%;
}

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