To get the default Seaborn color palette, we can take the following steps
- Set the figure size and adjust the padding between and around the subplots.
- Return a list of colors or continuous colormap defining a palette.
- Plot the values in a color palette as a horizontal array.
- To display the figure, use show() method.
Example
import seaborn as sns from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True current_palette = sns.color_palette() sns.palplot(current_palette) plt.show()