Plots.jl: using push! to add a new scatter plot series with a specified color

(Please quote your code.)

Do you mean

plt = scatter(x, y, color=“red”)
scatter!(a, b, c=:blue)  # c is abbreviation for colour

Functions with ! at the end add to a pre-existing plot.