Changing the colors of the axis labels in a Matplotlib plot updates the x-axis label and the y-axis label each to a new color.
Solution for How to change the color of the axis labels of a plot in Matplotlib in Python : You can use matplotlib.axes.Axes.label.set_color() to change the color of the axis labels Call matplotlib.axes.xaxis.label.set_color(x_color) and matplotlib.axes.yaxis.label.set_color(y_color) to set the colors of the axis labels.