from pydantic import BaseModel [docs]class Color(BaseModel): """An RGBA color""" a: float b: float g: float r: float