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
| /*
| Five-color theme from a single blue hue.
| */
| .hljs {
| display: block;
| overflow-x: auto;
| padding: 0.5em;
| background: #eaeef3;
| color: #00193a;
| }
|
| .hljs-keyword,
| .hljs-selector-tag,
| .hljs-title,
| .hljs-section,
| .hljs-doctag,
| .hljs-name,
| .hljs-strong {
| font-weight: bold;
| }
|
| .hljs-comment {
| color: #738191;
| }
|
| .hljs-string,
| .hljs-title,
| .hljs-section,
| .hljs-built_in,
| .hljs-literal,
| .hljs-type,
| .hljs-addition,
| .hljs-tag,
| .hljs-quote,
| .hljs-name,
| .hljs-selector-id,
| .hljs-selector-class {
| color: #0048ab;
| }
|
| .hljs-meta,
| .hljs-subst,
| .hljs-symbol,
| .hljs-regexp,
| .hljs-attribute,
| .hljs-deletion,
| .hljs-variable,
| .hljs-template-variable,
| .hljs-link,
| .hljs-bullet {
| color: #4c81c9;
| }
|
| .hljs-emphasis {
| font-style: italic;
| }
|
|