No site do Gnome: link Eu recebo este código:
notebook {
background-color: #a939f0;
}
Mas eu tentei e não funcionou.
Meu código, escrito com o Python:
def init_style(self):
self.default_style = b"""
window label {
color:#ff0000;
}
notebook {
background-color: #a939f0;
}
"""
my_style_provider = Gtk.CssProvider()
my_style_provider.load_from_data(self.default_style)
Gtk.StyleContext.add_provider_for_screen(
Gdk.Screen.get_default(),
my_style_provider,
Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION
)
As palavras no rótulo ficam vermelhas, mas o histórico do bloco de anotações não muda.