Skip to content

Instantly share code, notes, and snippets.

@rickycodes
Created November 21, 2012 15:51
Show Gist options
  • Save rickycodes/4125586 to your computer and use it in GitHub Desktop.
Save rickycodes/4125586 to your computer and use it in GitHub Desktop.
Greyscale a thing
.thing {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><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>#grayscale");
filter: gray;
-webkit-filter: grayscale(100%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment