Please help me, I have two functions:
a := x^3+x^2-x; b := 20*sin(x^2)-5;
and I would like to change a background color and fill the areas between two curves. I filled areas but I dont know how can I change the background, any idea?
plots[display]([plottools[transform]((x, y)-> [x, y+x^3+x^2+x])(plot(20*sin(x^2)-5- x^3-x^2-x, x = o .. s, filled = true, color = red)), plot([x^3+x^2+x, 20*sin(x^2)-5], x = -3 .. 3, y = -30 .. 30, color = black)]);



Hmm, the closest thing I could find after a quick search on Maple Help was the ability to choose a colour between the curve and the x-axis. I don't know how helpful that would be to you though.
Alternatively, maybe you could try to make two plots- one your actual plot and the other a plot of solid colour for the background and use the display command to plot them on the same set of axes.