I\'m making a scatter plot which looks like this:
(MWE at bottom of qu
You can obtain the legend handles and change their colors doing:
ax = plt.gca() leg = ax.get_legend() leg.legendHandles[0].set_color('red') leg.legendHandles[1].set_color('yellow')