1// Customize the colors... 🎨
2icConfetti.colors = [.red, .green, .yellow, .blue]
3
4// Tailor the confetti images. White template images work the best. 🖼
5icConfetti.images = [
6 UIImage(named: "Box")!,
7 UIImage(named: "Circle")!,
8 UIImage(named: "Triangle")!,
9 UIImage(named: "Spiral")!
10]
11
12// Throttle the velocities... 🏎
13icConfetti.velocities = [100, 128, 144, 512]