Is there a way to make a PyGTK widget partly transparent, so that the widgets behind it can be seen through it? Specifically I’m trying to do this on a label, for typographic effect; I don’t want to change the color instead, as it may not look right on all themes.
Share
No, not possible. It is possible to make entire windows partially transparent, if window manager supports compositing, but not individual widgets.
I guess what you want can be achieved differently by “blending” colors:
To make it completely correct you can also listen to “style-set” signal.