main
from enum import Enum class NaturalVectorColors(Enum): """Colors for the vectors.""" # light red U = (255, 20, 0) # light green V = (0, 255, 20) # light blue W = (20, 0, 255)