Pookkalam by Razeena M A

Code

#outer circle
c = circle(r=150, fill='#341118')
c3=circle(r=25,fill='#006400')


c2=circle(r=80,fill='white',stroke='#A52A2A',stroke_width=2)
show(c)
s1=rectangle(w=191,h=191,fill='yellow',stroke='none')|rotate(10)|repeat(9,rotate(15))
s2=rectangle(w=171,h=171,fill='crimson',stroke='none')|rotate(17)|repeat(10,rotate(15))
s3=rectangle(w=151,h=151,fill='#8B0000',stroke='none')|rotate(24)|repeat(10,rotate(15))
s4=rectangle(w=131,h=131,fill='#006400',stroke='none')|rotate(31)|repeat(10,rotate(15))
s5=rectangle(w=212,h=212,fill='gold',stroke='none')|rotate(3)|repeat(10,rotate(15))
show(c3,s5,s1,s2,s3,s4,c2)

shape= circle(x=50, y=0, r=45 ,fill='orange',stroke='maroon')| repeat(6, rotate(60))
show(shape)
r=circle(r=66,fill='',stroke="none")
s=circle(r=25,fill='yellow',stroke="maroon" ,stroke_width=6)
t=circle(r=15,fill='black',stroke="crimson",stroke_width=4)
show(r,s,t)