@charset "UTF-8";

/* src/styles.scss */
:root {
  --crg-bg: #0d1117;
  --crg-surface: #161b22;
  --crg-surface-2: #1c2230;
  --crg-border: #30363d;
  --crg-green: #00ff66;
  --crg-green-dim: #0b9c45;
  --crg-cyan: #39d0ff;
  --crg-amber: #ffcc00;
  --crg-text: #e6edf3;
  --crg-text-dim: #8b949e;
  --crg-mono:
    "JetBrains Mono",
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--crg-bg);
  color: var(--crg-text);
  font-family: var(--crg-mono);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 255, 102, 0.025) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(0, 255, 102, 0.025) 1px,
      transparent 1px);
  background-size: 32px 32px;
}
app-root {
  position: relative;
  z-index: 1;
  display: block;
}
a {
  color: var(--crg-green);
  text-decoration: none;
}
::selection {
  background: var(--crg-green);
  color: var(--crg-bg);
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--crg-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--crg-border);
  border: 3px solid var(--crg-bg);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--crg-green-dim);
}
@keyframes crg-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.crg-cursor::after {
  content: "_";
  color: var(--crg-green);
  animation: crg-blink 1s step-end infinite;
}

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