From 88fca6fb55563ebd221890e28055d023ff4530dd Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 12 Mar 2025 16:11:51 +0100 Subject: [PATCH] Update particles.tsx --- frontend/src/components/ui/particles.tsx | 2 ++ 1 file changed, 2 insertions(+) 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);