diff --git a/client/components/LoadingScreen.tsx b/client/components/LoadingScreen.tsx index 2afee0bd..68ea433f 100644 --- a/client/components/LoadingScreen.tsx +++ b/client/components/LoadingScreen.tsx @@ -100,17 +100,28 @@ export default function LoadingScreen({ {/* Animated Loading Bars */}
- {[...Array(5)].map((_, i) => ( -
- ))} + {[...Array(5)].map((_, i) => { + const colorMap: Record = { + "from-yellow-500 to-yellow-400": "bg-yellow-400", + "from-green-500 to-green-400": "bg-green-400", + "from-blue-500 to-blue-400": "bg-blue-400", + "from-red-500 to-red-400": "bg-red-400", + "from-cyan-500 to-cyan-400": "bg-cyan-400", + "from-aethex-500 to-neon-blue": "bg-aethex-400", + }; + const barColor = colorMap[accentColor] || "bg-aethex-400"; + return ( +
+ ); + })}