color-brewer.css (884B)
1 /* 2 3 Colorbrewer theme 4 Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org> 5 Ported by FabrÃcio Tavares de Oliveira 6 7 */ 8 9 .hljs { 10 display: block; 11 overflow-x: auto; 12 padding: 0.5em; 13 background: #fff; 14 } 15 16 .hljs, 17 .hljs-subst { 18 color: #000; 19 } 20 21 .hljs-string, 22 .hljs-meta, 23 .hljs-symbol, 24 .hljs-template-tag, 25 .hljs-template-variable, 26 .hljs-addition { 27 color: #756bb1; 28 } 29 30 .hljs-comment, 31 .hljs-quote { 32 color: #636363; 33 } 34 35 .hljs-number, 36 .hljs-regexp, 37 .hljs-literal, 38 .hljs-bullet, 39 .hljs-link { 40 color: #31a354; 41 } 42 43 .hljs-deletion, 44 .hljs-variable { 45 color: #88f; 46 } 47 48 49 50 .hljs-keyword, 51 .hljs-selector-tag, 52 .hljs-title, 53 .hljs-section, 54 .hljs-built_in, 55 .hljs-doctag, 56 .hljs-type, 57 .hljs-tag, 58 .hljs-name, 59 .hljs-selector-id, 60 .hljs-selector-class, 61 .hljs-strong { 62 color: #3182bd; 63 } 64 65 .hljs-emphasis { 66 font-style: italic; 67 } 68 69 .hljs-attribute { 70 color: #e6550d; 71 }