Pookkalam by Naveen V

Code

c = circle(x=0, y=0,r=80, fill="yellow")

dc1 = circle(r=45,y=70,fill="#d40b0b",stroke="black", stroke_width=1)
dc2 = circle(r=34,y=70,fill="orange",stroke="black")
dc3 = circle(r=25,y=70,fill="yellow",stroke="black")
dc4 = circle(r=18,y=70,fill="pink", stroke="black")
descircles = dc1+dc2+dc3+dc4
descircles2 = descircles | translate(y=-141)
Combine = descircles + descircles2
Combine2 = Combine | rotate(90)
add = Combine + Combine2
add2 = add |rotate(45)

el2 = ellipse(h=273,w=30,fill="lightgreen",stroke="black") | rotate(22.5) | repeat(9,rotate(45))

C = circle(x = 0, y = 0, r=143, fill=" #ff00f7 ")
oc = circle(r=5,x=0,y=145,fill='green',stroke="black", stroke_width =0.5)|repeat(100,rotate(4))

es1 = ellipse( y=125, h=14, w=30, fill="black", stroke_width=0.5)
es = ellipse( y=125, h=13, w=20, fill="yellow", stroke_width=0.5)
slc = circle( r=5, y=125, fill="white") 
tes = es1 + es
Es = tes | translate(y=-253)
rEs = Es | repeat(8,rotate(45))

show(oc, C, el2, add2, add, c, rEs)

c1 = circle(x=0, y=0,r=5, fill="#ff6c03", stroke_width=0.5)
c2 = circle(x=25, y=25,r=20, fill="indigo") | repeat(8,rotate(45))
r = rectangle(x=48, y=30, h=25, w=25, fill="red") | rotate(65) | repeat(32, rotate(25))
e1 = ellipse(x=10, y=0, h=13, w=25, fill="yellow", stroke_width=0.5) | repeat(11,rotate(34))

show(r, c2, e1, c1)
print("ഹൃദയം നിറഞ്ഞ ഓണം ആശംസകൾ !")