Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-language-features/media/highlight.css
3291 views
1
/*
2
https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs2015.css
3
*/
4
/*
5
* Visual Studio 2015 dark style
6
* Author: Nicolas LLOBERA <[email protected]>
7
*/
8
9
10
.hljs-keyword,
11
.hljs-literal,
12
.hljs-symbol,
13
.hljs-name {
14
color: #569CD6;
15
}
16
.hljs-link {
17
color: #569CD6;
18
text-decoration: underline;
19
}
20
21
.hljs-built_in,
22
.hljs-type {
23
color: #4EC9B0;
24
}
25
26
.hljs-number,
27
.hljs-class {
28
color: #B8D7A3;
29
}
30
31
.hljs-string,
32
.hljs-meta-string {
33
color: #D69D85;
34
}
35
36
.hljs-regexp,
37
.hljs-template-tag {
38
color: #9A5334;
39
}
40
41
.hljs-subst,
42
.hljs-function,
43
.hljs-title,
44
.hljs-params,
45
.hljs-formula {
46
color: #DCDCDC;
47
}
48
49
.hljs-comment,
50
.hljs-quote {
51
color: #57A64A;
52
font-style: italic;
53
}
54
55
.hljs-doctag {
56
color: #608B4E;
57
}
58
59
.hljs-meta,
60
.hljs-meta-keyword,
61
.hljs-tag {
62
color: #9B9B9B;
63
}
64
65
.hljs-variable,
66
.hljs-template-variable {
67
color: #BD63C5;
68
}
69
70
.hljs-attr,
71
.hljs-attribute,
72
.hljs-builtin-name {
73
color: #9CDCFE;
74
}
75
76
.hljs-section {
77
color: gold;
78
}
79
80
.hljs-emphasis {
81
font-style: italic;
82
}
83
84
.hljs-strong {
85
font-weight: bold;
86
}
87
88
/*.hljs-code {
89
font-family:'Monospace';
90
}*/
91
92
.hljs-bullet,
93
.hljs-selector-tag,
94
.hljs-selector-id,
95
.hljs-selector-class,
96
.hljs-selector-attr,
97
.hljs-selector-pseudo {
98
color: #D7BA7D;
99
}
100
101
.hljs-addition {
102
background-color: var(--vscode-diffEditor-insertedTextBackground, rgba(155, 185, 85, 0.2));
103
color: rgb(155, 185, 85);
104
display: inline-block;
105
width: 100%;
106
}
107
108
.hljs-deletion {
109
background: var(--vscode-diffEditor-removedTextBackground, rgba(255, 0, 0, 0.2));
110
color: rgb(255, 0, 0);
111
display: inline-block;
112
width: 100%;
113
}
114
115
116
/*
117
From https://raw.githubusercontent.com/isagalaev/highlight.js/master/src/styles/vs.css
118
*/
119
/*
120
121
Visual Studio-like style based on original C# coloring by Jason Diamond <[email protected]>
122
123
*/
124
125
.vscode-light .hljs-function,
126
.vscode-light .hljs-params,
127
.vscode-light .hljs-number,
128
.vscode-light .hljs-class {
129
color: inherit;
130
}
131
132
.vscode-light .hljs-comment,
133
.vscode-light .hljs-quote,
134
.vscode-light .hljs-number,
135
.vscode-light .hljs-class,
136
.vscode-light .hljs-variable {
137
color: #008000;
138
}
139
140
.vscode-light .hljs-keyword,
141
.vscode-light .hljs-selector-tag,
142
.vscode-light .hljs-name,
143
.vscode-light .hljs-tag {
144
color: #00f;
145
}
146
147
.vscode-light .hljs-built_in,
148
.vscode-light .hljs-builtin-name {
149
color: #007acc;
150
}
151
152
.vscode-light .hljs-string,
153
.vscode-light .hljs-section,
154
.vscode-light .hljs-attribute,
155
.vscode-light .hljs-literal,
156
.vscode-light .hljs-template-tag,
157
.vscode-light .hljs-template-variable,
158
.vscode-light .hljs-type {
159
color: #a31515;
160
}
161
162
.vscode-light .hljs-subst,
163
.vscode-light .hljs-selector-attr,
164
.vscode-light .hljs-selector-pseudo,
165
.vscode-light .hljs-meta,
166
.vscode-light .hljs-meta-keyword {
167
color: #2b91af;
168
}
169
.vscode-light .hljs-title,
170
.vscode-light .hljs-doctag {
171
color: #808080;
172
}
173
174
.vscode-light .hljs-attr {
175
color: #f00;
176
}
177
178
.vscode-light .hljs-symbol,
179
.vscode-light .hljs-bullet,
180
.vscode-light .hljs-link {
181
color: #00b0e8;
182
}
183
184
185
.vscode-light .hljs-emphasis {
186
font-style: italic;
187
}
188
189
.vscode-light .hljs-strong {
190
font-weight: bold;
191
}
192
193