forked from zoltantothcom/Design-Patterns-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhljs.light.js
More file actions
117 lines (116 loc) · 1.85 KB
/
hljs.light.js
File metadata and controls
117 lines (116 loc) · 1.85 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
const styles = {
"hljs": {
border: '1px solid #d8d8d8',
display: 'block',
overflowX: 'auto',
padding: '1em',
color: '#383a42',
background: '#fafafa'
},
'hljs-comment': {
color: '#a0a1a7',
fontStyle: 'italic'
},
'hljs-quote': {
color: '#a0a1a7',
fontStyle: 'italic'
},
'hljs-doctag': {
color: '#a626a4'
},
'hljs-keyword': {
color: '#a626a4'
},
'hljs-formula': {
color: '#a626a4'
},
'hljs-section': {
color: '#e45649'
},
'hljs-name': {
color: '#e45649'
},
'hljs-selector-tag': {
color: '#e45649'
},
'hljs-deletion': {
color: '#e45649'
},
'hljs-subst': {
color: '#e45649'
},
'hljs-literal': {
color: '#0184bb'
},
'hljs-string': {
color: '#50a14f'
},
'hljs-regexp': {
color: '#50a14f'
},
'hljs-addition': {
color: '#50a14f'
},
'hljs-attribute': {
color: '#50a14f'
},
'hljs-meta-string': {
color: '#50a14f'
},
'hljs-built_in': {
color: '#c18401'
},
'hljs-class .hljs-title': {
color: '#c18401'
},
'hljs-attr': {
color: '#986801'
},
'hljs-variable': {
color: '#986801'
},
'hljs-template-variable': {
color: '#986801'
},
'hljs-type': {
color: '#986801'
},
'hljs-selector-class': {
color: '#986801'
},
'hljs-selector-attr': {
color: '#986801'
},
'hljs-selector-pseudo': {
color: '#986801'
},
'hljs-number': {
color: '#986801'
},
'hljs-symbol': {
color: '#4078f2'
},
'hljs-bullet': {
color: '#4078f2'
},
'hljs-link': {
color: '#4078f2',
textDecoration: 'underline'
},
'hljs-meta': {
color: '#4078f2'
},
'hljs-selector-id': {
color: '#4078f2'
},
'hljs-title': {
color: '#4078f2'
},
'hljs-emphasis': {
fontStyle: 'italic'
},
'hljs-strong': {
fontWeight: 'bold'
}
};
export default styles;