I have a DataFrame in pandas and I'm plotting two columns out in a line graph using matplotlib. However, I can't figure out how to change the individual color of each line. I can only change both or none.
Using .plot() I can only change both eg. c='red' but I want different colors for each line.

.plot(figsize=(16,6), color=['green', 'brown']).