Last active
March 9, 2018 19:58
-
-
Save jashmenn/063b92b247caa6a9cadac48b44d88424 to your computer and use it in GitHub Desktop.
Stylish Chrome Extension for Github Operator Mono Dark Theme
This file contains hidden or 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
.markdown-body .highlight pre, | |
table.highlight, | |
.blob-code-inner { | |
font-family: "Operator Mono"; | |
font-weight: 400; | |
line-height: 1.5em; | |
font-size: 14px; | |
} | |
.markdown-body .highlight pre, | |
table.highlight { | |
color: #D8DEE9; | |
background-color: #1B2B34; | |
} | |
.blob-code-inner { | |
color: #D8DEE9; | |
} | |
.blob-num { | |
color: #74777D; | |
} | |
.blob-num:hover { | |
color: rgba(255, 255, 255, 0.86); | |
} | |
.highlight .pl-c { | |
font-style: italic; | |
} | |
.highlight .pl-k { | |
color: #C594C5; | |
} | |
.pl-s .pl-s1, | |
.pl-smi { | |
color: #EC5f67; | |
} | |
.pl-pds, | |
.pl-s, | |
.pl-s .pl-pse .pl-s1, | |
.pl-sr, | |
.pl-sr .pl-cce, | |
.pl-sr .pl-sra, | |
.pl-sr .pl-sre { | |
color: #99C794; | |
} | |
.pl-e, | |
.pl-en { | |
color: #6699CC; | |
} | |
.pl-c1, | |
.pl-s .pl-v { | |
color: #F99157; | |
} | |
.blob-code, | |
.blob-num { | |
background-color: #1B2B34; | |
} | |
.blob-code-addition, | |
.blob-num-addition { | |
background-color: #0F300F; | |
} | |
.blob-code-addition .x { | |
background-color: #006C00; | |
color: #98c18f; | |
} | |
.blob-code-deletion, | |
.blob-num-deletion { | |
background-color: #281212; | |
} | |
.blob-code-deletion .x { | |
background-color: #5F0000; | |
color: #b56060; | |
} | |
.pl-mh, | |
.pl-mh .pl-en, | |
.pl-ms { | |
color: #487FEF; | |
font-weight: bold; | |
} | |
.pl-mb { | |
color: #C599CC; | |
font-weight: bold; | |
} | |
a:visited { | |
color: #769bca; | |
} | |
.pl-mi { | |
color: #808080; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment