Pookkalam by Archana Lejikumar

Code

f = color(r=255, g=0, b=0)
c1 = ellipse(w=200, h=10, fill=f, stroke="yellow", stroke_width=2) | repeat(75, rotate(5))
c2 = circle(r=50, fill="indigo",stroke="none")
c3 = rectangle(w=65, h=65, fill="yellow") | repeat(100, rotate(60) | scale(0.9))
c4 = ellipse() | repeat(50, rotate(10))
c6 = circle(r=150, fill="yellow",stroke="none")
g = color(r=200, g=0, b=0)
c5 = ellipse(w=300, h=10, fill=g, stroke="indigo", stroke_width=2) | repeat(60, rotate(5))
c7 = rectangle(w=30, h=30, fill="#e75480") | repeat(40, rotate(60) | scale(0.9))
show(c6, c5, c1, c4, c2, c3, c7)