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