import turtle

# Setup turtle screen and turtle
screen = turtle.Screen()
screen.bgcolor("black")

# Create a turtle instance
t = turtle.Turtle()
t.speed(0)  # Fastest drawing speed

# Define colors for the star pattern
colors = ["red", "yellow", "blue", "green", "purple", "orange"]

# Draw a colorful star pattern
for i in range(36):
    t.color(colors[i % 6])  # Cycle through colors
    t.forward(200)          # Move forward
    t.right(144)            # Turn right by 144 degrees (star angle)
    t.forward(200)
    t.right(144)            # Repeat star pattern
    t.right(10)             # Slight rotation for pattern effect

# Finish drawing
turtle.done()
