Skip to content

Commit 13453dc

Browse files
jeffcrouseclaude
andcommitted
Make particleField effect more visible
Co-Authored-By: Claude Opus 4.6 <[email protected]>
1 parent b4c15ac commit 13453dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/bg-effects.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@
115115
resize();
116116
window.addEventListener('resize', resize);
117117

118-
const count = 40;
118+
const count = 60;
119119
const particles = Array.from({ length: count }, () => ({
120120
x: Math.random() * canvas.width,
121121
y: Math.random() * canvas.height,
122-
r: 1 + Math.random(),
123-
alpha: 0.08 + Math.random() * 0.07,
122+
r: 1.5 + Math.random() * 1.5,
123+
alpha: 0.15 + Math.random() * 0.1,
124124
vx: (Math.random() - 0.5) * 0.3,
125125
vy: (Math.random() - 0.5) * 0.3,
126126
phase: Math.random() * Math.PI * 2,

0 commit comments

Comments
 (0)