Specifying plot colours using Plots.jl, getting multicolour lines

Hi there,

I’m tring to plot two different datasets on the same axis, the first as a blue line and the second as a red line. I have tried

plot(sol, idxs = [idx1, idx2], linecolor=[:blue,:red])

but instead of one line being blue and one red, both lines are a combination of both colours as seen below:
image

Does anyone know how to fix this?

Thank you!

You need:

linecolor=[:blue :red])

Thank you!