| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| html { | |
| color-scheme: dark; | |
| } | |
| body { | |
| @apply bg-gray-950 text-white; | |
| font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | |
| } | |
| } | |
| @layer utilities { | |
| .glass { | |
| @apply bg-white/5 backdrop-blur-xl border border-white/10; | |
| } | |
| .glass-strong { | |
| @apply bg-white/[0.08] backdrop-blur-xl border border-white/10; | |
| } | |
| .text-gradient { | |
| @apply text-transparent bg-clip-text bg-gradient-to-r from-violet-400 via-fuchsia-400 to-cyan-400; | |
| } | |
| .scrollbar-thin::-webkit-scrollbar { | |
| width: 6px; | |
| } | |
| .scrollbar-thin::-webkit-scrollbar-thumb { | |
| background: rgba(139, 92, 246, 0.4); | |
| border-radius: 3px; | |
| } | |
| } | |