diff --git a/actors/enums.py b/actors/enums.py index b04cf9d..4bad0a9 100644 --- a/actors/enums.py +++ b/actors/enums.py @@ -26,6 +26,9 @@ class Colors(Enum): Blue = (0, 0, 255) Cyan = (0, 255, 255) Magenta = (255, 0, 255) + WHITE = (255, 255, 255) + RED = (255, 0, 0) + # add others as needed class GhostColor(Enum): BLINKY = (255, 0, 0)