index.css
1 @tailwind base; 2 @tailwind components; 3 @tailwind utilities; 4 5 /* Recharts tooltip dark theme override */ 6 .recharts-tooltip-wrapper .recharts-default-tooltip { 7 @apply bg-slate-800 border border-slate-600 rounded-lg shadow-xl; 8 } 9 .recharts-default-tooltip .recharts-tooltip-label { 10 @apply text-slate-300; 11 } 12 .recharts-default-tooltip .recharts-tooltip-item { 13 @apply text-slate-200; 14 } 15 16 /* Scrollbar */ 17 ::-webkit-scrollbar { 18 width: 6px; 19 height: 6px; 20 } 21 ::-webkit-scrollbar-track { 22 @apply bg-slate-800; 23 } 24 ::-webkit-scrollbar-thumb { 25 @apply bg-slate-600 rounded; 26 } 27 ::-webkit-scrollbar-thumb:hover { 28 @apply bg-slate-500; 29 }