Spaces:
Build error
Build error
File size: 730 Bytes
326e3c8 | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-color: #09090b;
color: #ffffff;
}
/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #09090b;
}
::-webkit-scrollbar-thumb {
background: #1f1f1f;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #333;
}
.glass-panel {
background: rgba(20, 20, 20, 0.6);
border: 1px solid rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
}
.gradient-text {
background: linear-gradient(to right, #fff, #a5a5a5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.glow-effect {
box-shadow: 0 0 40px -10px rgba(139, 92, 246, 0.3);
} |