[d24f17c] | 1 | /*
|
---|
| 2 |
|
---|
| 3 | Atom One Dark With support for ReasonML by Gidi Morris, based off work by Daniel Gamage
|
---|
| 4 |
|
---|
| 5 | Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
|
---|
| 6 |
|
---|
| 7 | */
|
---|
| 8 | .hljs {
|
---|
| 9 | display: block;
|
---|
| 10 | overflow-x: auto;
|
---|
| 11 | padding: 0.5em;
|
---|
| 12 | color: #abb2bf;
|
---|
| 13 | background: #282c34;
|
---|
| 14 | }
|
---|
| 15 | .hljs-keyword, .hljs-operator {
|
---|
| 16 | color: #F92672;
|
---|
| 17 | }
|
---|
| 18 | .hljs-pattern-match {
|
---|
| 19 | color: #F92672;
|
---|
| 20 | }
|
---|
| 21 | .hljs-pattern-match .hljs-constructor {
|
---|
| 22 | color: #61aeee;
|
---|
| 23 | }
|
---|
| 24 | .hljs-function {
|
---|
| 25 | color: #61aeee;
|
---|
| 26 | }
|
---|
| 27 | .hljs-function .hljs-params {
|
---|
| 28 | color: #A6E22E;
|
---|
| 29 | }
|
---|
| 30 | .hljs-function .hljs-params .hljs-typing {
|
---|
| 31 | color: #FD971F;
|
---|
| 32 | }
|
---|
| 33 | .hljs-module-access .hljs-module {
|
---|
| 34 | color: #7e57c2;
|
---|
| 35 | }
|
---|
| 36 | .hljs-constructor {
|
---|
| 37 | color: #e2b93d;
|
---|
| 38 | }
|
---|
| 39 | .hljs-constructor .hljs-string {
|
---|
| 40 | color: #9CCC65;
|
---|
| 41 | }
|
---|
| 42 | .hljs-comment, .hljs-quote {
|
---|
| 43 | color: #b18eb1;
|
---|
| 44 | font-style: italic;
|
---|
| 45 | }
|
---|
| 46 | .hljs-doctag, .hljs-formula {
|
---|
| 47 | color: #c678dd;
|
---|
| 48 | }
|
---|
| 49 | .hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
|
---|
| 50 | color: #e06c75;
|
---|
| 51 | }
|
---|
| 52 | .hljs-literal {
|
---|
| 53 | color: #56b6c2;
|
---|
| 54 | }
|
---|
| 55 | .hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
|
---|
| 56 | color: #98c379;
|
---|
| 57 | }
|
---|
| 58 | .hljs-built_in, .hljs-class .hljs-title {
|
---|
| 59 | color: #e6c07b;
|
---|
| 60 | }
|
---|
| 61 | .hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number {
|
---|
| 62 | color: #d19a66;
|
---|
| 63 | }
|
---|
| 64 | .hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
|
---|
| 65 | color: #61aeee;
|
---|
| 66 | }
|
---|
| 67 | .hljs-emphasis {
|
---|
| 68 | font-style: italic;
|
---|
| 69 | }
|
---|
| 70 | .hljs-strong {
|
---|
| 71 | font-weight: bold;
|
---|
| 72 | }
|
---|
| 73 | .hljs-link {
|
---|
| 74 | text-decoration: underline;
|
---|
| 75 | }
|
---|