Skip to content

Instantly share code, notes, and snippets.

@eush77
Last active September 12, 2015 08:42
Show Gist options
  • Save eush77/869e94588628828efe94 to your computer and use it in GitHub Desktop.
Save eush77/869e94588628828efe94 to your computer and use it in GitHub Desktop.
Proper color inversion for Firefox
/**
* Copied from https://addons.mozilla.org/en-US/firefox/addon/black-background-white-text/
*/
html,
img:not(.mwe-math-fallback-image-inline),
embed[type="application/x-shockwave-flash"],
object[type="application/x-shockwave-flash"],
video
{
filter: invert(100%) hue-rotate(180deg) !important;
}
html {
background-color: #000000 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment