atelier-estuary-dark.css (1310B)
1 /* Base16 Atelier Estuary Dark - Theme */ 2 /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */ 3 /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ 4 5 /* Atelier-Estuary Comment */ 6 .hljs-comment, 7 .hljs-quote { 8 color: #878573; 9 } 10 11 /* Atelier-Estuary Red */ 12 .hljs-variable, 13 .hljs-template-variable, 14 .hljs-attribute, 15 .hljs-tag, 16 .hljs-name, 17 .hljs-regexp, 18 .hljs-link, 19 .hljs-name, 20 .hljs-selector-id, 21 .hljs-selector-class { 22 color: #ba6236; 23 } 24 25 /* Atelier-Estuary Orange */ 26 .hljs-number, 27 .hljs-meta, 28 .hljs-built_in, 29 .hljs-builtin-name, 30 .hljs-literal, 31 .hljs-type, 32 .hljs-params { 33 color: #ae7313; 34 } 35 36 /* Atelier-Estuary Green */ 37 .hljs-string, 38 .hljs-symbol, 39 .hljs-bullet { 40 color: #7d9726; 41 } 42 43 /* Atelier-Estuary Blue */ 44 .hljs-title, 45 .hljs-section { 46 color: #36a166; 47 } 48 49 /* Atelier-Estuary Purple */ 50 .hljs-keyword, 51 .hljs-selector-tag { 52 color: #5f9182; 53 } 54 55 .hljs-deletion, 56 .hljs-addition { 57 color: #22221b; 58 display: inline-block; 59 width: 100%; 60 } 61 62 .hljs-deletion { 63 background-color: #ba6236; 64 } 65 66 .hljs-addition { 67 background-color: #7d9726; 68 } 69 70 .hljs { 71 display: block; 72 overflow-x: auto; 73 background: #22221b; 74 color: #929181; 75 padding: 0.5em; 76 } 77 78 .hljs-emphasis { 79 font-style: italic; 80 } 81 82 .hljs-strong { 83 font-weight: bold; 84 }