http://www.perlmonks.org?node_id=1229889


in reply to Gtk3 and CSS styles

Educated guess: my $theming = ".GtkTextView {\nbackground-color: #000000;\ncolor: #FF0000;\n}";


holli

You can lead your users to water, but alas, you cannot drown them.

Replies are listed 'Best First'.
Re^2: Gtk3 and CSS styles
by Anonymous Monk on Feb 14, 2019 at 08:37 UTC

    Thanks to a typo, I stumbled on the answer. Thanks, wobbly fingers!

    my $theming = "textview text {\nbackground-color: #000000;\ncolor: #FF +0000;\n}"; $provider->load_from_data($theming);
Re^2: Gtk3 and CSS styles
by Anonymous Monk on Feb 14, 2019 at 08:05 UTC

    Nope. I tried *TextView as well.