# roses
from turtle import *
s = Screen()
s.setup(800,800)
s.bgcolor('black')
t = Turtle()
t.ht()
t.color('#ff007f')
t.speed(0)
def draw_rose(x, y, c):
t.pu()
t.goto(x,y)
t.pd()
for i in range(1, 45):
t.begin_fill()
t.circle(i, 100)
t.rt(i)
if i%3 == 0:
t.color('black')
else:
t.color(c)
t.end_fill()
draw_rose(-100,100, 'yellow')
draw_rose(100,100, 'white')
draw_rose(0,100, 'blue')
draw_rose(100,-100, 'green')
draw_rose(-100,-100, '#ff007f')
draw_rose(0,-100, 'purple')
t.pu()
t.goto(-100,300)
t.color('yellow')
t.write('kiwicoding', font=('Arial',40))