I'm trying to overlay shaded convex hulls to the different groups in a scatter seaborn.relplot
using Matplotlib. Based on this
However, the convex hulls are not filled in with the same color as the edge, even though I specified that
plt.fill(points[simplex, 0], points[simplex, 1],
facecolor = color, alpha=0.5,
edgecolor = color, # color is an RGB tuple like (0.12, 0.46, 0.71)
)