Skip to content

Instantly share code, notes, and snippets.

@mohsen1
Last active December 18, 2015 10:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohsen1/5767815 to your computer and use it in GitHub Desktop.
Save mohsen1/5767815 to your computer and use it in GitHub Desktop.
Github dark theme This theme uses webkit filters to achive a consistent dark theme across all Github pages.
/* Invert all the things! */
html
{
-webkit-filter: invert(1) grayscale(0.6);
}
/* Execpt these guys... */
img,
.minibutton,
.state-indicator,
.filter-item,
.label,
.octicon,
.ace_scroller
{
-webkit-filter: invert(1) grayscale(0);
}
.octicon,
.octicon-logo-gist {
-webkit-filter: none;
}
/* Some adjustments... */
a
{
color: #8BC004;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment