Say I have a boxplot like the one shown below:
I would like to achieve a different coloring
The boxes end up in the artists list on the returned axes, so you just need to manipulate the attributes on those objects:
artists
ax = sns.boxplot(data=x) box = ax.artists[0] box. set_facecolor("white")
etc.