File size: 2,248 Bytes
0ba4f29 | 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | @import "tailwindcss";
@theme {
--font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}
/* Custom Scrollbars for the Queue and chat panels */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.02);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.12);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.25);
}
/* Audio Waveform Equalizer Keyframes */
@keyframes eq-scale-1 {
0%, 100% { transform: scaleY(0.3); }
50% { transform: scaleY(0.9); }
}
@keyframes eq-scale-2 {
0%, 100% { transform: scaleY(0.45); }
50% { transform: scaleY(1.0); }
}
@keyframes eq-scale-3 {
0%, 100% { transform: scaleY(0.25); }
50% { transform: scaleY(0.85); }
}
@keyframes eq-scale-4 {
0%, 100% { transform: scaleY(0.35); }
50% { transform: scaleY(0.95); }
}
.eq-bar-1 { animation: eq-scale-1 1.2s ease-in-out infinite; }
.eq-bar-2 { animation: eq-scale-2 1.0s ease-in-out infinite; }
.eq-bar-3 { animation: eq-scale-3 1.4s ease-in-out infinite; }
.eq-bar-4 { animation: eq-scale-4 0.8s ease-in-out infinite; }
/* Pulsating ambient backglow */
@keyframes glow-pulse {
0%, 100% { opacity: 0.15; filter: blur(40px); }
50% { opacity: 0.35; filter: blur(60px); }
}
.glow-ambient {
animation: glow-pulse 8s ease-in-out infinite;
}
/* Premium Gold Aesthetic utilities */
.gold-glow {
box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.gold-glow-hover {
transition: all 0.3s ease;
}
.gold-glow-hover:hover {
box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
transform: translateY(-2px);
}
.gold-text-gradient {
background: linear-gradient(135deg, #FFF3B0 0%, #D4AF37 50%, #9B7D24 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gold-border-glow {
border: 1px solid rgba(212, 175, 55, 0.2) !important;
box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.03), 0 0 8px rgba(212, 175, 55, 0.03);
}
.gold-gradient-bg {
background: linear-gradient(135deg, #D4AF37 0%, #aa7c11 100%);
}
|