With seaborn stylesΒΆ

You can use seaborn styles with mpltern in the same way as Matplotlib.

with seaborn styles
import matplotlib.pyplot as plt
from mpltern.datasets import get_spiral
import seaborn as sns


sns.set_style('darkgrid')

ax = plt.subplot(projection='ternary')

ax.plot(*get_spiral())

ax.set_tlabel('Top')
ax.set_llabel('Left')
ax.set_rlabel('Right')

plt.show()

Gallery generated by Sphinx-Gallery