In this adaptation of an ancient post ( Placing a ContourPlot under a Plot3D ) I would like to know how to coordinate the colors of the surface on the color of the scheme LightTerrain or any other scheme. In other words, I wonder how to know which colors are used in a scheme.
f = E^-(x^2 + y^2);
min = 0;
max = 1;
f1 = Plot3D[f, {x, -2, 2}, {y, -2, 2}, PlotRange -> {min, max},
ClippingStyle -> None, MeshFunctions -> {#3 &}, Mesh -> 15,
MeshStyle -> Opacity[.5],
MeshShading -> {{Opacity[.3], Blue}, {Opacity[.8], LightBlue}},
Lighting -> "Neutral", Boxed -> False];
slice = SliceContourPlot3D[f,
z == min - 2, {x, -2, 2}, {y, -2, 2}, {z, min - 2, min + 1},
PlotRange -> {min, max}, Contours -> 15, Axes -> False,
PlotPoints -> 50, PlotRangePadding -> 0,
ColorFunction -> "LightTerrain"];
Show[f1, slice, PlotRange -> All, BoxRatios -> {1, 1, 1},
FaceGrids -> {Back, Left}]



