Skip to content

Instantly share code, notes, and snippets.

@ramzesimus
Last active December 11, 2015 20:09
Show Gist options
  • Select an option

  • Save ramzesimus/4653414 to your computer and use it in GitHub Desktop.

Select an option

Save ramzesimus/4653414 to your computer and use it in GitHub Desktop.
CSS: Grayscale
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url(greyScale.svg#greyscale);
filter: gray;
-webkit-filter: grayscale(1);
Display the source blob
Display the rendered blob
Raw
<svg version="1.1" xmlns="http://www.w3.org/2000/svg">
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment