How can I change and/or get the fill color of an Element?
I would like to do something like this
import gizeh as gz
circle = gz.circle(10, xy = (100, 100), fill = (1, 0, 0))
circle.fill = (0, 1, 0)
I tried looking at the source code, but got lost in context, transform_ctx etc. And can't find the part where the fill color is saved.