Skip to content

Instantly share code, notes, and snippets.

@dwins
Created April 12, 2012 18:23
Show Gist options
  • Save dwins/2369814 to your computer and use it in GitHub Desktop.
Save dwins/2369814 to your computer and use it in GitHub Desktop.
Raster properties in CSS
* {
raster-opacity: 0.7;
raster-channel-selection: 1;
raster-channel-selection: 1 2 3;
raster-contrast-enhancement: normalize;
raster-contrast-enhancement: histogram;
raster-contrast-enhancement: gamma-value(2);
raster-shaded-relief: brightness-only;
raster-shaded-relief: relief-factor(55);
raster-shaded-relief: brightness-only relief-factor(55);
raster-color-map:
0 black
100 rgb(0.25, 0, 0)
200 rgb(0.50, 0, 0)
300 rgb(0.75, 0, 0)
400 rgb(1, 0, 0);
raster-color-map-mode: intervals;
raster-color-map-mode: ramp;
raster-color-map-mode: values;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment