Update script.js

This commit is contained in:
Zane V
2025-09-26 07:19:49 -04:00
committed by GitHub
parent be52c80b54
commit 709b08f6f5

View File

@@ -488,7 +488,7 @@ function addMouseTrail() {
}
draw(ctx) {
ctx.fillStyle = `rgba(255, 255, 255, ${this.opacity})`;
ctx.fillStyle = `rgba(0, 122, 204, ${this.opacity})`; // Blue color (#007acc)
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();