Pookkalam by Erin Edward

Code

bg = rectangle(w=300, h=300, fill="white")
c2 = circle(fill="orange", stroke="none")

e2 = ellipse(h=10, w=30, fill="violet") | translate(x=100) |repeat(10, rotate(46))
c3 = circle(fill="orange", stroke="none", r=30)
c4 = circle(fill="gold", stroke="none", r=70)

f = e2+c3| repeat(40, rotate(20))
f1 = e2+c3|scale(0.5)| repeat(40, rotate(10))
show(bg, c2,c4, f1, f)