| @import "tailwindcss"; | |
| :root { | |
| --background: #050505; | |
| --foreground: #f8fafc; | |
| } | |
| @theme inline { | |
| --color-background: var(--background); | |
| --color-foreground: var(--foreground); | |
| --font-sans: var(--font-geist-sans); | |
| --font-mono: var(--font-geist-mono); | |
| } | |
| body { | |
| background: var(--background); | |
| color: var(--foreground); | |
| font-family: var(--font-sans); | |
| } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| height: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #1e293b; | |
| border-radius: 10px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #334155; | |
| } | |
| /* Neon Glows */ | |
| .neon-border-cyan { | |
| box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); | |
| } | |
| .neon-text-cyan { | |
| text-shadow: 0 0 10px rgba(6, 182, 212, 0.5); | |
| } | |
| /* Glassmorphism */ | |
| .glass { | |
| background: rgba(15, 23, 42, 0.6); | |
| backdrop-filter: blur(12px); | |
| border: 1px solid rgba(255, 255, 255, 0.05); | |
| } | |