Source code for utils.Color
from enum import Enum
[docs]
class Color(Enum):
    """
    This enumeration represents the list of colors Robobo's LEDs can show.
    """
    OFF = 'off'
    WHITE = 'white'
    RED = 'red'
    BLUE = 'blue'
    CYAN = 'cyan'
    MAGENTA = 'magenta'
    YELLOW = 'yellow'
    GREEN = 'green'
    ORANGE = 'orange'