pojoaque.css (1124B)
1 /* 2 3 Pojoaque Style by Jason Tate 4 http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html 5 Based on Solarized Style from http://ethanschoonover.com/solarized 6 7 */ 8 9 .hljs { 10 display: block; 11 overflow-x: auto; 12 padding: 0.5em; 13 color: #dccf8f; 14 background: url(./pojoaque.jpg) repeat scroll left top #181914; 15 } 16 17 .hljs-comment, 18 .hljs-quote { 19 color: #586e75; 20 font-style: italic; 21 } 22 23 .hljs-keyword, 24 .hljs-selector-tag, 25 .hljs-literal, 26 .hljs-addition { 27 color: #b64926; 28 } 29 30 .hljs-number, 31 .hljs-string, 32 .hljs-doctag, 33 .hljs-regexp { 34 color: #468966; 35 } 36 37 .hljs-title, 38 .hljs-section, 39 .hljs-built_in, 40 .hljs-name { 41 color: #ffb03b; 42 } 43 44 .hljs-variable, 45 .hljs-template-variable, 46 .hljs-class .hljs-title, 47 .hljs-type, 48 .hljs-tag { 49 color: #b58900; 50 } 51 52 .hljs-attribute { 53 color: #b89859; 54 } 55 56 .hljs-symbol, 57 .hljs-bullet, 58 .hljs-link, 59 .hljs-subst, 60 .hljs-meta { 61 color: #cb4b16; 62 } 63 64 .hljs-deletion { 65 color: #dc322f; 66 } 67 68 .hljs-selector-id, 69 .hljs-selector-class { 70 color: #d3a60c; 71 } 72 73 .hljs-formula { 74 background: #073642; 75 } 76 77 .hljs-emphasis { 78 font-style: italic; 79 } 80 81 .hljs-strong { 82 font-weight: bold; 83 }