File size: 942 Bytes
19d6abb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | @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);
}
|