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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
| /*
|
| Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
|
| */
|
| .hljs {
| display: block;
| overflow-x: auto;
| padding: 0.5em;
| background: #000;
| color: #f8f8f8;
| }
|
| .hljs-comment,
| .hljs-quote {
| color: #aeaeae;
| font-style: italic;
| }
|
| .hljs-keyword,
| .hljs-selector-tag,
| .hljs-type {
| color: #e28964;
| }
|
| .hljs-string {
| color: #65b042;
| }
|
| .hljs-subst {
| color: #daefa3;
| }
|
| .hljs-regexp,
| .hljs-link {
| color: #e9c062;
| }
|
| .hljs-title,
| .hljs-section,
| .hljs-tag,
| .hljs-name {
| color: #89bdff;
| }
|
| .hljs-class .hljs-title,
| .hljs-doctag {
| text-decoration: underline;
| }
|
| .hljs-symbol,
| .hljs-bullet,
| .hljs-number {
| color: #3387cc;
| }
|
| .hljs-params,
| .hljs-variable,
| .hljs-template-variable {
| color: #3e87e3;
| }
|
| .hljs-attribute {
| color: #cda869;
| }
|
| .hljs-meta {
| color: #8996a8;
| }
|
| .hljs-formula {
| background-color: #0e2231;
| color: #f8f8f8;
| font-style: italic;
| }
|
| .hljs-addition {
| background-color: #253b22;
| color: #f8f8f8;
| }
|
| .hljs-deletion {
| background-color: #420e09;
| color: #f8f8f8;
| }
|
| .hljs-selector-class {
| color: #9b703f;
| }
|
| .hljs-selector-id {
| color: #8b98ab;
| }
|
| .hljs-emphasis {
| font-style: italic;
| }
|
| .hljs-strong {
| font-weight: bold;
| }
|
|