-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
543 additions
and
427 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,74 @@ | ||
/*! | ||
Theme: Monokai | ||
Author: Wimer Hazenberg (http://www.monokai.nl) | ||
License: ~ MIT (or more permissive) [via base16-schemes-source] | ||
Maintainer: @highlightjs/core-team | ||
Version: 2021.09.0 | ||
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#f8f8f2;background:#272822}.hljs ::selection,.hljs::selection{background-color:#49483e;color:#f8f8f2}.hljs-comment{color:#75715e}.hljs-tag{color:#a59f85}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#f8f8f2}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#f92672}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#fd971f}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#f4bf75}.hljs-strong{font-weight:700;color:#f4bf75}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#a6e22e}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#a1efe4}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#66d9ef}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#ae81ff}.hljs-emphasis{color:#ae81ff;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#c63}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700} | ||
/* | ||
Atom One Dark With support for ReasonML by Gidi Morris, based off work by Daniel Gamage | ||
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax | ||
*/ | ||
.hljs { | ||
color: #abb2bf; | ||
background: #282c34; | ||
} | ||
.hljs-keyword, .hljs-operator { | ||
color: #F92672; | ||
} | ||
.hljs-pattern-match { | ||
color: #F92672; | ||
} | ||
.hljs-pattern-match .hljs-constructor { | ||
color: #61aeee; | ||
} | ||
.hljs-function { | ||
color: #61aeee; | ||
} | ||
.hljs-function .hljs-params { | ||
color: #A6E22E; | ||
} | ||
.hljs-function .hljs-params .hljs-typing { | ||
color: #FD971F; | ||
} | ||
.hljs-module-access .hljs-module { | ||
color: #7e57c2; | ||
} | ||
.hljs-constructor { | ||
color: #e2b93d; | ||
} | ||
.hljs-constructor .hljs-string { | ||
color: #9CCC65; | ||
} | ||
.hljs-comment, .hljs-quote { | ||
color: #b18eb1; | ||
font-style: italic; | ||
} | ||
.hljs-doctag, .hljs-formula { | ||
color: #c678dd; | ||
} | ||
.hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst { | ||
color: #e06c75; | ||
} | ||
.hljs-literal { | ||
color: #56b6c2; | ||
} | ||
.hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta .hljs-string { | ||
color: #98c379; | ||
} | ||
.hljs-built_in, | ||
.hljs-title.class_, | ||
.hljs-class .hljs-title { | ||
color: #e6c07b; | ||
} | ||
.hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number { | ||
color: #d19a66; | ||
} | ||
.hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title { | ||
color: #61aeee; | ||
} | ||
.hljs-emphasis { | ||
font-style: italic; | ||
} | ||
.hljs-strong { | ||
font-weight: bold; | ||
} | ||
.hljs-link { | ||
text-decoration: underline; | ||
} |
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
Oops, something went wrong.