neoscore.core.color
- class neoscore.core.color.Color[source]
Bases:
object
An 8-bit int RGBA color.
- __init__(*args)[source]
- Valid signatures:
Color(css_hex_string)
Color(red, green, blue)
Color(red, green, blue, alpha)
- property red
The 0-255 value of the red color channel
- Type
int
- property green
The 0-255 value of the green color channel
- Type
int
- property blue
The 0-255 value of the blue color channel
- Type
int
- property alpha
The 0-255 value of the alpha color channel
- Type
int