Hi,
I want to create a TextView with a transparent background (GTK4)
Currently, I have this:

I’ve tried applying a CSS style using the following code:
GtkCssProvider* provider = gtk_css_provider_new();
gtk_css_provider_load_from_data( provider,
"textview text { background-color: rgba(1.0, 1.0, 1.0, 0.5); }",
-1);
gtk_style_context_add_provider( gtk_widget_get_style_context(textview),
GTK_STYLE_PROVIDER(provider),
GTK_STYLE_PROVIDER_PRIORITY_USER);
…but it only turns my widget darker:

I’ve also tried gtk_widget_set_opacity(..), but it makes the text transparent as well
Is there any way to achieve it? Thanks
