Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Created May 5, 2015 08:47
Show Gist options
  • Save aviogreen/dbe467fc151dc3b989fb to your computer and use it in GitHub Desktop.
Save aviogreen/dbe467fc151dc3b989fb to your computer and use it in GitHub Desktop.
.grayscale{
@filterString: grayscale(100%);
-webkit-filter: @filterString;
-moz-filter: @filterString;
-o-filter: @filterString;
-ms-filter: @filterString;
filter: @filterString;
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");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment