Spaces:
Sleeping
Sleeping
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@600;700&family=JetBrains+Mono:wght@400;500;600&display=swap'); | |
| :root { | |
| --bg: #0A0A0F; | |
| --surface: #13131A; | |
| --surface2: #1C1C28; | |
| --border: #2A2A3D; | |
| --purple: #7C3AED; | |
| --purple-l: #A855F7; | |
| --teal: #14B8A6; | |
| --amber: #F59E0B; | |
| --red: #EF4444; | |
| --green: #4ADE80; | |
| --text: #F8F8FF; | |
| --text2: #A0A0B8; | |
| --text3: #6B6B8A; | |
| --font-heading: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif; | |
| --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif; | |
| --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| scroll-padding-top: 80px; | |
| } | |
| body { | |
| background: var(--bg); | |
| color: var(--text); | |
| font-family: var(--font-body); | |
| font-size: 15px; | |
| line-height: 1.7; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| ::selection { | |
| background: rgba(124, 58, 237, 0.35); | |
| color: var(--text); | |
| } | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: var(--bg); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: var(--border); | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--text3); | |
| } | |
| @layer base { | |
| * { | |
| @apply border-[color:var(--border)]; | |
| } | |
| } | |