Skip to content

Instantly share code, notes, and snippets.

@brandonratz
Created November 19, 2014 16:05
Show Gist options
  • Select an option

  • Save brandonratz/1b98b0d24f8253dd3f2d to your computer and use it in GitHub Desktop.

Select an option

Save brandonratz/1b98b0d24f8253dd3f2d to your computer and use it in GitHub Desktop.
CSS Desaturate
img.desaturate {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment