|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +@layer base { |
| 6 | + :root { |
| 7 | + --background: 0 0% 100%; |
| 8 | + --foreground: 222.2 84% 4.9%; |
| 9 | + |
| 10 | + --card: 0 0% 100%; |
| 11 | + --card-foreground: 222.2 84% 4.9%; |
| 12 | + |
| 13 | + --popover: 0 0% 100%; |
| 14 | + --popover-foreground: 222.2 84% 4.9%; |
| 15 | + |
| 16 | + --primary: 196 100% 50%; |
| 17 | + --primary-foreground: 210 40% 98%; |
| 18 | + |
| 19 | + --secondary: 210 40% 96.1%; |
| 20 | + --secondary-foreground: 222.2 47.4% 11.2%; |
| 21 | + |
| 22 | + --muted: 210 40% 96.1%; |
| 23 | + --muted-foreground: 215.4 16.3% 46.9%; |
| 24 | + |
| 25 | + --accent: 210 40% 96.1%; |
| 26 | + --accent-foreground: 222.2 47.4% 11.2%; |
| 27 | + |
| 28 | + --destructive: 0 84.2% 60.2%; |
| 29 | + --destructive-foreground: 210 40% 98%; |
| 30 | + |
| 31 | + --border: 214.3 31.8% 91.4%; |
| 32 | + --input: 214.3 31.8% 91.4%; |
| 33 | + --ring: 196 100% 50%; |
| 34 | + |
| 35 | + --radius: 0.5rem; |
| 36 | + } |
| 37 | + |
| 38 | + .dark { |
| 39 | + --background: 222.2 84% 4.9%; |
| 40 | + --foreground: 210 40% 98%; |
| 41 | + |
| 42 | + --card: 222.2 84% 4.9%; |
| 43 | + --card-foreground: 210 40% 98%; |
| 44 | + |
| 45 | + --popover: 222.2 84% 4.9%; |
| 46 | + --popover-foreground: 210 40% 98%; |
| 47 | + |
| 48 | + --primary: 196 100% 50%; |
| 49 | + --primary-foreground: 222.2 47.4% 11.2%; |
| 50 | + |
| 51 | + --secondary: 217.2 32.6% 17.5%; |
| 52 | + --secondary-foreground: 210 40% 98%; |
| 53 | + |
| 54 | + --muted: 217.2 32.6% 17.5%; |
| 55 | + --muted-foreground: 215 20.2% 65.1%; |
| 56 | + |
| 57 | + --accent: 217.2 32.6% 17.5%; |
| 58 | + --accent-foreground: 210 40% 98%; |
| 59 | + |
| 60 | + --destructive: 0 62.8% 30.6%; |
| 61 | + --destructive-foreground: 210 40% 98%; |
| 62 | + |
| 63 | + --border: 217.2 32.6% 17.5%; |
| 64 | + --input: 217.2 32.6% 17.5%; |
| 65 | + --ring: 196 100% 50%; |
| 66 | + } |
| 67 | + |
| 68 | + .light { |
| 69 | + --background: 0 0% 100%; |
| 70 | + --foreground: 222.2 84% 4.9%; |
| 71 | + |
| 72 | + --card: 0 0% 100%; |
| 73 | + --card-foreground: 222.2 84% 4.9%; |
| 74 | + |
| 75 | + --popover: 0 0% 100%; |
| 76 | + --popover-foreground: 222.2 84% 4.9%; |
| 77 | + |
| 78 | + --primary: 196 100% 50%; |
| 79 | + --primary-foreground: 210 40% 98%; |
| 80 | + |
| 81 | + --secondary: 210 40% 96.1%; |
| 82 | + --secondary-foreground: 222.2 47.4% 11.2%; |
| 83 | + |
| 84 | + --muted: 210 40% 96.1%; |
| 85 | + --muted-foreground: 215.4 16.3% 46.9%; |
| 86 | + |
| 87 | + --accent: 210 40% 96.1%; |
| 88 | + --accent-foreground: 222.2 47.4% 11.2%; |
| 89 | + |
| 90 | + --destructive: 0 84.2% 60.2%; |
| 91 | + --destructive-foreground: 210 40% 98%; |
| 92 | + |
| 93 | + --border: 214.3 31.8% 91.4%; |
| 94 | + --input: 214.3 31.8% 91.4%; |
| 95 | + --ring: 196 100% 50%; |
| 96 | + } |
| 97 | +} |
| 98 | + |
| 99 | +@layer base { |
| 100 | + * { |
| 101 | + @apply border-border; |
| 102 | + } |
| 103 | + body { |
| 104 | + @apply bg-background text-foreground; |
| 105 | + } |
| 106 | +} |
| 107 | + |
| 108 | +/* Custom scrollbar */ |
| 109 | +::-webkit-scrollbar { |
| 110 | + width: 8px; |
| 111 | +} |
| 112 | + |
| 113 | +::-webkit-scrollbar-track { |
| 114 | + background: rgba(15, 23, 42, 0.3); |
| 115 | +} |
| 116 | + |
| 117 | +::-webkit-scrollbar-thumb { |
| 118 | + background: rgba(148, 163, 184, 0.5); |
| 119 | + border-radius: 4px; |
| 120 | +} |
| 121 | + |
| 122 | +::-webkit-scrollbar-thumb:hover { |
| 123 | + background: rgba(148, 163, 184, 0.7); |
| 124 | +} |
| 125 | + |
| 126 | +/* Gradient animations */ |
| 127 | +@keyframes gradient-shift { |
| 128 | + 0% { |
| 129 | + background-position: 0% 50%; |
| 130 | + } |
| 131 | + 50% { |
| 132 | + background-position: 100% 50%; |
| 133 | + } |
| 134 | + 100% { |
| 135 | + background-position: 0% 50%; |
| 136 | + } |
| 137 | +} |
| 138 | + |
| 139 | +.animate-gradient { |
| 140 | + background-size: 200% 200%; |
| 141 | + animation: gradient-shift 5s ease infinite; |
| 142 | +} |
0 commit comments