In the example below, how can I change the background color of "Title" to be red (with alpha=.5), not the font color of "Title"?
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1,2,3,], [1,2,3], label='Series')
legend = ax.legend(title='Title')
# Access to the legend title box adapted from
# https://stackoverflow.com/a/63570572
legend._legend_title_box._text.set_color('red')