Created
November 26, 2020 21:38
-
-
Save kristoferjoseph/31643839117acf165273e3eac40ba5fa to your computer and use it in GitHub Desktop.
Updated and sprankled Hemisu dark theme for Highlightjs
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
/* Hemisu Dark */ | |
.hljs { | |
display: block; | |
overflow-x: auto; | |
padding: 0.5em; | |
background: #282a36; | |
} | |
.hljs-comment, | |
.hljs-meta { | |
color: #777777; | |
} | |
.hljs-params, | |
.hljs-number, | |
.hljs-built_in { | |
color: #9fd3e6; | |
} | |
.hljs-string, | |
.hljs-regexp { | |
color: #b1d631; | |
} | |
.hljs-keyword, | |
.hljs-title, | |
.hljs-constant, | |
.hljs-tag, | |
.hljs-attr { | |
color: #bbffaa; | |
} | |
.hljs-selector-tag, | |
.hljs-literal, | |
.hljs-section, | |
.hljs-link { | |
color: #ece1c8; | |
} | |
.hljs, | |
.hljs-string .hljs-subst, | |
.hljs-tag .hljs-name { | |
color: #eeeeee; | |
} | |
pre { | |
padding: 1rem; | |
overflow: auto; | |
border-radius: 0.3rem; | |
} | |
pre code { | |
color: #eeeeee; | |
font-family: Menlo, Monaco, Consolas, monospace; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment