sns.histplot(x=diff,ax=ax,color=[0.8]*3,kde=True) Reducing the alpha value can improve the situation, but this is not always leads to satisfactory results. sns.histplot(x=diff,ax=ax,alpha=0.4,color=[0.8]*3,kde=True) If you really need ahistplotwith akdein a different color, you ...