Pookkalam by Rions Reji

Code

c1 = circle(x=100, y=0, r=10)
c2 = c1 | repeat(9, rotate(45)) 
c3 = c1 | repeat(9, rotate(90))
c4 = circle(r=145,fill="#90F9FF",stroke="#1dbf5e",stroke_width=10)
c5 = circle(r=120,fill="#DA2F5D",stroke="none")
c6 = circle(r=135,fill="#FF91AF",stroke="none")
c7 = circle(r=130,fill="#FF6E95",stroke="none")
l1 = line(x1=74, y1=48, x2=90, y2=60,stroke_width=2)
l2 = l1 | repeat(8, rotate(45)) 
l3 = l1 | repeat(8, rotate(90))
r1 = rectangle(w=300,h=300,fill="#FFF8B5")
ce1= color(r=250, g=255, b=78, a=0.5)
e1 = ellipse(x=76,y=1,w=130, h=70,fill=ce1,stroke="none")|rotate(40)
e2 = e1 | repeat(9, rotate(45)) 
e3 = e1 | repeat(9, rotate(90))
r3 = rectangle(w=300, h=300,stroke="green") | repeat(9, rotate(10))
ce2= color(r=255, g=17, b=17,a=0.012)
shape1 = circle(x=30, y=0, r=30,fill=ce2,stroke="none") | repeat(200, rotate(30))
ce3= color(r=255, g=17, b=17,a=0.01)
shape2 = circle(x=40, y=0, r=40,fill=ce3,stroke="none") | repeat(200, rotate(30))
shape3 = rectangle(w=40, h=40,stroke="yellow") | repeat(15, rotate(5)|scale(0.92))
show(r1,r3,c4,c6,c7,c5,e1,e2,e3,c2,c3,l1,l2,l3,shape2,shape1,shape3)