Skip to content

Instantly share code, notes, and snippets.

@veb
Created July 29, 2015 13:18
Show Gist options
  • Select an option

  • Save veb/014a6dcf83aba43bc3cb to your computer and use it in GitHub Desktop.

Select an option

Save veb/014a6dcf83aba43bc3cb to your computer and use it in GitHub Desktop.
@mixin invert($amt: 100%) {
-o-filter: invert($amt);
-ms-filter: invert($amt);
-moz-filter: invert($amt);
-webkit-filter: invert($amt);
@-moz-document url-prefix() {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'invert\'><feColorMatrix in='SourceGraphic' type='matrix' values='-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0'/></filter></svg>#invert");
background-color: #000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment