rainbow.css (983B)
1 /* 2 3 Style with support for rainbow parens 4 5 */ 6 7 .hljs { 8 display: block; 9 overflow-x: auto; 10 padding: 0.5em; 11 background: #474949; 12 color: #d1d9e1; 13 } 14 15 16 .hljs-comment, 17 .hljs-quote { 18 color: #969896; 19 font-style: italic; 20 } 21 22 .hljs-keyword, 23 .hljs-selector-tag, 24 .hljs-literal, 25 .hljs-type, 26 .hljs-addition { 27 color: #cc99cc; 28 } 29 30 .hljs-number, 31 .hljs-selector-attr, 32 .hljs-selector-pseudo { 33 color: #f99157; 34 } 35 36 .hljs-string, 37 .hljs-doctag, 38 .hljs-regexp { 39 color: #8abeb7; 40 } 41 42 .hljs-title, 43 .hljs-name, 44 .hljs-section, 45 .hljs-built_in { 46 color: #b5bd68; 47 } 48 49 .hljs-variable, 50 .hljs-template-variable, 51 .hljs-selector-id, 52 .hljs-class .hljs-title { 53 color: #ffcc66; 54 } 55 56 .hljs-section, 57 .hljs-name, 58 .hljs-strong { 59 font-weight: bold; 60 } 61 62 .hljs-symbol, 63 .hljs-bullet, 64 .hljs-subst, 65 .hljs-meta, 66 .hljs-link { 67 color: #f99157; 68 } 69 70 .hljs-deletion { 71 color: #dc322f; 72 } 73 74 .hljs-formula { 75 background: #eee8d5; 76 } 77 78 .hljs-attr, 79 .hljs-attribute { 80 color: #81a2be; 81 } 82 83 .hljs-emphasis { 84 font-style: italic; 85 }