Pookkalam by Ismail P

Code

c5 = color(r=255,g=196,b=4, a=0.7)
c4 = color(r=255, g=255, b=255, a=0.1)
c7 = color(r=255, g=255, b=255, a=0.1)
c3 = circle(r=150, fill="#fc780b",a=0.5, stroke="none")
show(c3)
c6 = circle(r=140, fill="#9e052a",a=0.5, stroke="none")
show(c6)
shape1 = rectangle(w=180, h=180,fill=c5,stroke="none") | repeat(21, rotate(50))
show(shape1)
shape = rectangle(w=180, h=180,fill=c4,stroke="none") | repeat(20, rotate(20))
show(shape)
c1 = circle(r=100, fill="#f1f1f1", stroke="none")
c2 = circle(r=88, fill="#33563c",a=0.5, stroke="none")
c3 = circle(r=50, fill="#bdcea1", stroke="none")
show(c1)
show(c2)
show(c3)
shape8 = circle(x=50, y=0, r=50,fill=c7,stroke="#ef911d",stroke_width=0) | repeat(6, rotate(60))
show(shape8)
shape7 = rectangle(w=30, h=30,fill="#e380b7",stroke=0) | repeat(50, rotate(35)|scale(0.92))
show(shape7)