What do you want to change the color to? By default, ggplot will map continuous variables in the color aesthetic to a scale from black to blue, but there are many options for using other palettes.
The default in ggplot is equivalent to:
ggplot(mtcars, aes(wt, mpg, color = disp)) +
geom_point(size = 5) +
scale_color_gradient(low = "#1A334B",
high = "#5EB7F8",
guide = "colourbar")

The simplest thing might be to change the "high" value to another color:
ggplot(mtcars, aes(wt, mpg, color = disp)) +
geom_point(size = 5) +
scale_color_gradient(low = "gray10",
high = "red",
guide = "colourbar")
Here are some related resources with more palette options: