Skip to content

Instantly share code, notes, and snippets.

@clupasq
Last active September 27, 2016 06:31
Show Gist options
  • Save clupasq/de57e966a18e072c454da1b60337f102 to your computer and use it in GitHub Desktop.
Save clupasq/de57e966a18e072c454da1b60337f102 to your computer and use it in GitHub Desktop.
(function(){
var styleId = 'invert-style';
var style = document.getElementById(styleId);
if (style) {
style.parentElement.removeChild(style);
} else {
style = document.createElement('style');
style.id = styleId;
style.textContent = '' +
'html,img, video, object, [style*=url] {' +
'-webkit-filter:invert(100%) !important;' +
'filter:invert(100%) !important;' +
'}' +
'' +
'body {' +
'background:black;' +
'}';
document.body.appendChild(style);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment