diff --git a/frontend/src/components/ui/particles.tsx b/frontend/src/components/ui/particles.tsx index 1b514d5..ad92107 100644 --- a/frontend/src/components/ui/particles.tsx +++ b/frontend/src/components/ui/particles.tsx @@ -41,6 +41,7 @@ interface ParticlesProps { refresh?: boolean; vx?: number; vy?: number; + color?: string; } const Particles: React.FC = ({ @@ -52,6 +53,7 @@ const Particles: React.FC = ({ refresh = false, vx = 0.1, vy = 0.1, + color = "#ff00ff", }) => { const canvasRef = useRef(null); const canvasContainerRef = useRef(null);