Seaborn: Specify an exact color
问题 You can specify a color for plots, but Seaborn will mute the color a bit during plotting. Is there a way to turn off this behavior? Example: import matplotlib import seaborn as sns import numpy as np # Create some data np.random.seed(0) x = np.random.randn(100) # Set the Seaborn style sns.set_style('white') # Specify a color for plotting current_palette = matplotlib.colors.hex2color('#86b92e') # Make a plot g = sns.distplot(x, color=current_palette) # Show what the color should look like sns