I was testing some things, and I decided to hard code everything to be Color(0,0,0), which made everything black. I tested Color(77,77,77) which made everything white, although that hex is a gray. I looked into the Color class and looked at it’s constructors. Color(r,g,b) returns a Color object with values r, g, and b being 0-1. As I was setting everything to 77,77,77, that would limit to 1,1,1 which is white. To fix this, try using Color8(r,g,b) instead.