class GeneralConfig: width = 1000 height = 1000 fps = 150 window_caption = "GOL" class Colors: ORANGE = (255, 140, 0) RED = (255, 0, 0) GREEN = (5, 112, 0) BLACK = (0, 0, 0) WHITE = (255, 255, 255) GREY = (84, 84, 84) class SquareConfig: width = 10 height = 10 unclicked_color = Colors.BLACK clicked_color = Colors.WHITE