Color¶ Bases: NamedTuple An RGBA color with 8-bit (0-255) channels. Source code in src/py_premiere/models/color.py 8 9 10 11 12 13 14class Color(NamedTuple): """An RGBA color with 8-bit (`0`-`255`) channels.""" red: int green: int blue: int alpha: int = 255 Attributes¶ alpha class-attribute instance-attribute ¶ alpha = 255 blue instance-attribute ¶ blue green instance-attribute ¶ green red instance-attribute ¶ red