@charset "UTF-8";
[data-dark=false] {
  --primary: #0795d9;
  --secondary: #7dd3fc;
  --text: #000000;
  --background: #ffffff;
  --background-alt: #fafafa;
  --light-gray: #e0e0e0;
  --gray: #808080;
  --dark-gray: #404040;
  --overlay: #00000020;
}

[data-dark=true] {
  --primary: #0795d9;
  --secondary: #075985;
  --text: #ffffff;
  --background: #181818;
  --background-alt: #1c1c1c;
  --light-gray: #404040;
  --gray: #808080;
  --dark-gray: #b0b0b0;
  --overlay: #ffffff10;
}

:root {
  /* 🌐 Font families (updated) */
  --title: "Space Grotesk", sans-serif;
  --heading: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --code: "Fira Code", monospace;
  /* 🔠 Font sizes */
  --large: 1.2rem;
  --xl: 1.4rem;
  --xxl: 1.6rem;
  /* 💪 Font weights */
  --thin: 200;
  --regular: 400;
  --semi-bold: 500;
  --bold: 600;
  /* 📏 Text line spacing */
  --spacing: 2;
  --compact: 1.5;
  /* ✨ Effects */
  --rounded: 3px;
  --shadow: 0 0 10px 0 var(--overlay);
  --transition: 0.2s ease;
}

/*# sourceMappingURL=-theme.css.map */