Situation:
g1=ParametricPlot[f1[t],{t,0,1}];
g2=ParametricPlot[f2[t],{t,0,1}];
Long afterwards, I want to display both g1 and g2 on the same graph, in different colors. Something like
Graphics[{Red,g1,Green,g2}];
The problem is that g1 or g2 has InputForm
Graphics[{{{}, {}, {Hue[0.67, 0.6, 0.6], Line[{{0., 0.}, {0.00030669751239636143, 0.0003066975075881948}, .....
which has the color built into it.