1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Firebox 🔥
//

world.frame()

let col = color.hsb(197, 42, 92)

let s = 30

times(100, () => {
  let c = display.circle(random.pos(), s)
  
  c.color = col.randomHue()
  c.borderWidth = s/3
  c.borderColor = c.color.darker(2)
  
  physics.add(c)
})

random-hue.js