# importing packages import seaborn as sns import matplotlib.pyplot as plt # current colot palette palette = sns.color_palette('PiYG', 11) # diverging color palette sns.palplot(palette) plt.show()