(theme: Union[Color, bpy.types.bpy_prop_array[float]])
| 779 | """ |
| 780 | |
| 781 | def to_tuple(theme: Union[Color, bpy.types.bpy_prop_array[float]]) -> tuple[float, ...]: |
| 782 | return tuple(theme[:]) |
| 783 | |
| 784 | def mix_colors(color1, color2): |
| 785 | alpha1 = color1[3] * 255 if len(color1) > 3 else 255 |
no outgoing calls
no test coverage detected