WIe Wie kann ich bei pgfplots surf-Oberflächen färben?
Wie kann ich bei pgfplots die Ebenen aus folgendem Minimalbeispiel 
![alt text][1]
färben wie in diesem Bild:
![alt text][2]
    \documentclass{standalone}
    
    \usepackage{pgfplots}
    \pgfplotsset{compat=newest}
    
    \begin{document}
    \begin{tikzpicture}[
    declare function = {
    Z1(\x,\y) = -5;
    Z2(\x,\y) = -x-y;
    }
    ]
    \begin{axis}[grid,
    x={(-0.7071cm,-0.7071cm)},    
    y={(1cm,0.0cm)}, 
    z={(0cm,1cm)},
    axis lines=center,
    font=\footnotesize,
    xmax=5.4,ymax=5.4,zmax=5.4,
    xmin=-5.4,ymin=-5.4,zmin=-5.4,
    xlabel=\normalsize$x$,ylabel=\normalsize$y$,zlabel=\normalsize$z$,
    major tick style = {black},
    minor tick num=1, minor tick style = {very thin},
    axis line style = {-latex}, %Pfeilspitzen
    %enlargelimits=0.1,% relatives Verlängern der Achsen
    ]
    
    % Ebene z = -x-y
    \addplot3 [surf, shader=interp, semitransparent, domain=-4:4] {Z2(x,y)};
    
    % Aufrissebene
    \addplot3[surf, shader=interp, semitransparent] (0,x,y);
    % Grundrissebene
    \addplot3[surf, shader=interp, semitransparent] (x,y,0);
    % Seitenrissebene
    \addplot3[surf, shader=interp, semitransparent] (x,0,y);
    
    
    \end{axis}
    \end{tikzpicture}
    \end{document}
  [1]: http://texwelt.de/wissen/upfiles/5abc5555555555555_1.png
  [2]: http://texwelt.de/wissen/upfiles/555555555555555555555555555555_2.gif