Pookkalam by Hari Krishnan U

Code

c1 = circle(r=150, fill="#af05a4")
c2 = circle(r=140,fill="#294ef2")

def square(color, length):
    return rectangle(h=length, w=length, fill=color, stroke='none')

c3 = square(length=198,color='#fcfcfc') | repeat(10,  rotate(10)) 
c4 = square(length=180,color='#fcfc11') | repeat(10,  rotate(10)) 
c5 = circle(r=100,fill="#ff7519",stroke="blue", stroke_width=5)
r1 = rectangle(w=70, h=70, x = 20, y = 20, fill="red", stroke='none')
r2 = r1 | repeat(24, rotate(15))
z = line(stroke="#0d7a23", stroke_width=10) | repeat(6,rotate(60))
c6 = circle(r=10,fill="#ff42c6")
c7 = square(length=7,color='red') | repeat(8,  rotate(10)) 


for i in range(5):
    l = line()
    show(l)

show(c1,c2,c3,c4,c5,r2,z,c6,c7)