canvas-effects
SKILL.md
Canvas Effects Best Practices
Apply when implementing animated visual effects with HTML Canvas.
Setup
Basic Canvas Component Pattern
interface CanvasEffectConfig {
density: number; // 0-1
speed: number; // animation speed multiplier
color: string; // hex or rgb
enabled: boolean;
}