""" A simple FiveThirtyEight palette for Seaborn plots. """ import seaborn as sns import matplotlib.pyplot as plt five_thirty_eight = [ "#30a2da", "#fc4f30", "#e5ae38", "#6d904f", "#8b8b8b", ] sns.set_palette(five_thirty_eight) sns.palplot(sns.color_palette()) plt.show()