-
-
Save erubescent/30ac9c0a741dddfd99a25cd0a12002f3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Gist Embed - Dark Theme Styling - Thanks to MattD */ | |
/* Body */ | |
.gist-data tbody { background-color: Black; } | |
/* Line Numbers */ | |
.gist-data tbody td:nth-of-type(1) { | |
color: #2B91AF !important; | |
} | |
/* Code */ | |
.gist-data tbody td:nth-of-type(2){ | |
color: #FFFFFF !important; | |
} | |
/* Comments */ | |
.pl-c | |
{ | |
color: #57A64A !important; | |
} | |
/* Function */ | |
.pl-k, tbody tr:first-child .blob-code, tbody tr:last-child .blob-code | |
{ | |
color: #569CD6 !important; | |
} | |
/* Function Name */ | |
.pl-en | |
{ | |
color: #FFFFFF !important; | |
} | |
/* Function Method */ | |
.pl-c1 | |
{ | |
color: #FFFFFF !important; | |
} | |
/* "'s around Strings */ | |
.pl-pds | |
{ | |
color: #D69D85 !important; | |
} | |
/* Strings */ | |
.pl-s | |
{ | |
color: #D69D85 !important; | |
} | |
/* 2018 edits */ | |
.gist .gist-meta { | |
background-color: #000000 !important; | |
} | |
.gist .gist-data { | |
background-color: #171616 !important; | |
border-bottom: 1px solid #171616 !important; | |
} | |
.gist .gist-file { | |
border: 1px solid #171616 !important; | |
border-bottom: 1px solid #191919 !important; | |
} | |
.gist .blob-num { | |
background: #000000 !important; | |
} | |
.gist .blob-code { | |
background: #000000 !important; | |
} | |
.gist .highlight { | |
background: #000000 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment