Pookkalam by Dilsha

Code

c1 = color(r=0,g=0,b=225,a=0.5)
shape1 = circle(x=0,y=25,r=25, fill=c1, stroke="none")
c2 = color(r=0,g=0,b=225,a=0.5)
shape5 = circle(x=0,y=50,r=50,fill=c2,stroke="none")
c3 = color(r=225,g=0,b=0,a=0.5)
shape9 = circle(x=0,y=75,r=75,fill=c3,stroke="none")
c4 = color(r=0,g=0,b=225,a=0.5)
shape2 = circle(x=0,y=-25,r=25, fill=c4, stroke="none")
c5 = color(r=0,g=0,b=225,a=0.5)
shape6 = circle(x=0,y=-50,r=50,fill=c5,stroke="none")
c6 = color(r=225,g=0,b=0,a=0.5)
shape10 = circle(x=0,y=-75,r=75,fill=c6,stroke="none")
c7 = color(r=0,g=0,b=225,a=0.5)
shape3 = circle(x=25,y=0,r=25, fill=c7, stroke="none")
c8 = color(r=0,g=0,b=225,a=0.5)
shape7 = circle(x=50,y=0,r=50,fill=c7,stroke="none")
c9 = color(r=225,g=0,b=0,a=0.5)
shape11 = circle(x=75,y=0,r=75,fill=c9,stroke="none")
c10 = color(r=0,g=0,b=225,a=0.5)
shape4 = circle(x=-25,y=0,r=25, fill=c10,stroke="none")
c11 = color(r=0,g=0,b=225,a=0.5)
shape8 = circle(x=-50,y=0,r=50,fill=c11,stroke="none")
c12 = color(r=225,g=0,b=0,a=0.5)
shape12 = circle(x=-75,y=0,r=75,fill=c12,stroke="none")
show(shape1, shape2, shape3, shape4)
show(shape5, shape6, shape7, shape8)
show(shape9, shape10, shape11, shape12)