@AqualRodinia Lemme tell you how much I dislike Python with Turtle. They document things that used to exist, then deprecate them without warning.
colormode() is a function directly in the turtle module. Ultimately, it should just be turtle.colormode(1), but I wouldn't be surprised if that didn't work either. I'm basing my answer off of here, but who knows.
The color mode could be set to 255. You can set it to 1 by calling screen.colormode(1)
screen = turtle.Screen()
colormode() is a function directly in the
turtle
module. Ultimately, it should just be turtle.colormode(1), but I wouldn't be surprised if that didn't work either. I'm basing my answer off of here, but who knows.