1/*
2
3Pojoaque Style by Jason Tate
4http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
5Based 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 -webkit-text-size-adjust: none;
16}
17
18.hljs-comment,
19.diff .hljs-header,
20.hljs-doctype,
21.lisp .hljs-string {
22 color: #586e75;
23 font-style: italic;
24}
25
26.hljs-keyword,
27.css .rule .hljs-keyword,
28.hljs-winutils,
29.javascript .hljs-title,
30.method,
31.hljs-addition,
32.css .hljs-tag,
33.hljs-list .hljs-keyword,
34.nginx .hljs-title {
35 color: #b64926;
36}
37
38.hljs-number,
39.hljs-command,
40.hljs-string,
41.hljs-tag .hljs-value,
42.hljs-doctag,
43.tex .hljs-formula,
44.hljs-regexp,
45.hljs-hexcolor {
46 color: #468966;
47}
48
49.hljs-title,
50.hljs-localvars,
51.hljs-function .hljs-title,
52.hljs-chunk,
53.hljs-decorator,
54.hljs-built_in,
55.hljs-identifier,
56.hljs-name,
57.hljs-id {
58 color: #ffb03b;
59}
60
61.hljs-attribute,
62.hljs-variable,
63.lisp .hljs-body,
64.smalltalk .hljs-number,
65.hljs-constant,
66.hljs-class .hljs-title,
67.hljs-parent,
68.hljs-type {
69 color: #b58900;
70}
71
72.css .hljs-attribute {
73 color: #b89859;
74}
75
76.css .hljs-number,
77.css .hljs-hexcolor {
78 color: #dccf8f;
79}
80
81.css .hljs-class {
82 color: #d3a60c;
83}
84
85.hljs-preprocessor,
86.hljs-pragma,
87.hljs-pi,
88.hljs-shebang,
89.hljs-symbol,
90.hljs-symbol .hljs-string,
91.diff .hljs-change,
92.hljs-special,
93.hljs-attr_selector,
94.hljs-important,
95.hljs-subst,
96.hljs-cdata {
97 color: #cb4b16;
98}
99
100.hljs-deletion {
101 color: #dc322f;
102}
103
104.tex .hljs-formula {
105 background: #073642;
106}