Skip to content

Instantly share code, notes, and snippets.

@marcingrzejszczak
Created November 14, 2015 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcingrzejszczak/8b4c3672714bfdbcd4c3 to your computer and use it in GitHub Desktop.
Save marcingrzejszczak/8b4c3672714bfdbcd4c3 to your computer and use it in GitHub Desktop.
Grayscale for a webpage
/* http://superuser.com/questions/330830/how-to-turn-web-pages-in-browser-into-black-white-grayscale */
body {
/* IE */
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
/* Chrome, Safari */
-webkit-filter: grayscale(1);
/* Firefox */
filter: grayscale(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment