I am trying to set the line color of a stack plot to white, but the solution I researched seems to not be working. What other options are there?
from matplotlib import pyplot as plt
y = [1,3,5]
x = [0,1,2]
fig, ax = plt.subplots()
ax.stackplot(x, y)
ax.fill_between(x, y, facecolor='#ededed')
plt.show()

