Description
Hi, I have just realized that ax.set_title()
uses as default the color defined in rcParams["text.color"]
instead of using the color from rcParams["axes.labelcolor"]
. Why is that?
In my case, I was trying to create an style for dark figure background and light axes background. Therefore, as the title is on top of the figure background like the axis labels and ticklabels, I expected them to have the same color. Below there are two examples, both have axes.labelcolor white but they have different text.color.
Maybe 'color': rcParams['axes.labelcolor']
could be added to the default fontdict like axes.titlesize and axes.titleweight?
I added an ax.set_title
to the style sheet reference script and only solarized theme will be modified by this. It could affect user made themes though, but I feel that it is more coherent like this.