# importing packages import seaborn as sns import matplotlib.pyplot as plt # current colot palette palette = sns.color_palette() # plots the color palette as a # horizontal array sns.palplot(palette) plt.show()