Using Seaborn Facet Grids, how can I change the color of the margin title only?
Note that g.set_titles(color = 'red') changes both titles.
p = sns.load_dataset('penguins')
sns.displot(data=p, x='flipper_length_mm',
col='species', row='sex',
facet_kws=dict(margin_titles=True)
)

