@difizen/libro-cofine-textmate 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +3 -0
  3. package/es/data/monaco-themes/vscode/dark_defaults.json +23 -0
  4. package/es/data/monaco-themes/vscode/dark_editor.json +116 -0
  5. package/es/data/monaco-themes/vscode/dark_plus.json +180 -0
  6. package/es/data/monaco-themes/vscode/dark_vs.json +358 -0
  7. package/es/data/monaco-themes/vscode/hc_black.json +120 -0
  8. package/es/data/monaco-themes/vscode/hc_black_defaults.json +335 -0
  9. package/es/data/monaco-themes/vscode/hc_editor.json +7 -0
  10. package/es/data/monaco-themes/vscode/light_defaults.json +22 -0
  11. package/es/data/monaco-themes/vscode/light_editor.json +11 -0
  12. package/es/data/monaco-themes/vscode/light_plus.json +180 -0
  13. package/es/data/monaco-themes/vscode/light_vs.json +380 -0
  14. package/es/global.d.ts +7 -0
  15. package/es/index.d.ts +7 -0
  16. package/es/index.d.ts.map +1 -0
  17. package/es/index.js +6 -0
  18. package/es/monaco-grammar-registry.d.ts +15 -0
  19. package/es/monaco-grammar-registry.d.ts.map +1 -0
  20. package/es/monaco-grammar-registry.js +130 -0
  21. package/es/monaco-module.d.ts +4 -0
  22. package/es/monaco-module.d.ts.map +1 -0
  23. package/es/monaco-module.js +78 -0
  24. package/es/monaco-textmate-service.d.ts +29 -0
  25. package/es/monaco-textmate-service.d.ts.map +1 -0
  26. package/es/monaco-textmate-service.js +284 -0
  27. package/es/monaco-theme-registry.d.ts +33 -0
  28. package/es/monaco-theme-registry.d.ts.map +1 -0
  29. package/es/monaco-theme-registry.js +227 -0
  30. package/es/monaco-theme-types.d.ts +5 -0
  31. package/es/monaco-theme-types.d.ts.map +1 -0
  32. package/es/monaco-theme-types.js +1 -0
  33. package/es/textmate-contribution.d.ts +9 -0
  34. package/es/textmate-contribution.d.ts.map +1 -0
  35. package/es/textmate-contribution.js +6 -0
  36. package/es/textmate-registry.d.ts +32 -0
  37. package/es/textmate-registry.d.ts.map +1 -0
  38. package/es/textmate-registry.js +130 -0
  39. package/es/textmate-theme-contribution.d.ts +6 -0
  40. package/es/textmate-theme-contribution.d.ts.map +1 -0
  41. package/es/textmate-theme-contribution.js +50 -0
  42. package/es/textmate-tokenizer.d.ts +25 -0
  43. package/es/textmate-tokenizer.d.ts.map +1 -0
  44. package/es/textmate-tokenizer.js +32 -0
  45. package/package.json +59 -0
  46. package/src/data/monaco-themes/vscode/dark_defaults.json +23 -0
  47. package/src/data/monaco-themes/vscode/dark_editor.json +116 -0
  48. package/src/data/monaco-themes/vscode/dark_plus.json +180 -0
  49. package/src/data/monaco-themes/vscode/dark_vs.json +358 -0
  50. package/src/data/monaco-themes/vscode/hc_black.json +120 -0
  51. package/src/data/monaco-themes/vscode/hc_black_defaults.json +335 -0
  52. package/src/data/monaco-themes/vscode/hc_editor.json +7 -0
  53. package/src/data/monaco-themes/vscode/light_defaults.json +22 -0
  54. package/src/data/monaco-themes/vscode/light_editor.json +11 -0
  55. package/src/data/monaco-themes/vscode/light_plus.json +180 -0
  56. package/src/data/monaco-themes/vscode/light_vs.json +380 -0
  57. package/src/global.d.ts +7 -0
  58. package/src/index.spec.ts +8 -0
  59. package/src/index.ts +8 -0
  60. package/src/monaco-grammar-registry.ts +88 -0
  61. package/src/monaco-module.ts +59 -0
  62. package/src/monaco-textmate-service.ts +220 -0
  63. package/src/monaco-theme-registry.ts +201 -0
  64. package/src/monaco-theme-types.ts +5 -0
  65. package/src/textmate-contribution.ts +15 -0
  66. package/src/textmate-registry.ts +134 -0
  67. package/src/textmate-theme-contribution.ts +39 -0
  68. package/src/textmate-tokenizer.ts +55 -0
@@ -0,0 +1,120 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "Dark High Contrast",
4
+ "include": "hc_black_defaults.json",
5
+ "colors": {
6
+ "selection.background": "#008000",
7
+ "editor.selectionBackground": "#FFFFFF",
8
+ "statusBarItem.remoteBackground": "#00000000"
9
+ },
10
+ "tokenColors": [
11
+ {
12
+ "name": "Function declarations",
13
+ "scope": [
14
+ "entity.name.function",
15
+ "support.function",
16
+ "support.constant.handlebars",
17
+ "source.powershell variable.other.member"
18
+ ],
19
+ "settings": {
20
+ "foreground": "#DCDCAA"
21
+ }
22
+ },
23
+ {
24
+ "name": "Types declaration and references",
25
+ "scope": [
26
+ "meta.return-type",
27
+ "support.class",
28
+ "support.type",
29
+ "entity.name.type",
30
+ "entity.name.namespace",
31
+ "entity.name.scope-resolution",
32
+ "entity.name.class",
33
+ "storage.type.cs",
34
+ "storage.type.generic.cs",
35
+ "storage.type.modifier.cs",
36
+ "storage.type.variable.cs",
37
+ "storage.type.annotation.java",
38
+ "storage.type.generic.java",
39
+ "storage.type.java",
40
+ "storage.type.object.array.java",
41
+ "storage.type.primitive.array.java",
42
+ "storage.type.primitive.java",
43
+ "storage.type.token.java",
44
+ "storage.type.groovy",
45
+ "storage.type.annotation.groovy",
46
+ "storage.type.parameters.groovy",
47
+ "storage.type.generic.groovy",
48
+ "storage.type.object.array.groovy",
49
+ "storage.type.primitive.array.groovy",
50
+ "storage.type.primitive.groovy"
51
+ ],
52
+ "settings": {
53
+ "foreground": "#4EC9B0"
54
+ }
55
+ },
56
+ {
57
+ "name": "Types declaration and references, TS grammar specific",
58
+ "scope": [
59
+ "meta.type.cast.expr",
60
+ "meta.type.new.expr",
61
+ "support.constant.math",
62
+ "support.constant.dom",
63
+ "support.constant.json",
64
+ "entity.other.inherited-class"
65
+ ],
66
+ "settings": {
67
+ "foreground": "#4EC9B0"
68
+ }
69
+ },
70
+ {
71
+ "name": "Control flow / Special keywords",
72
+ "scope": [
73
+ "keyword.control",
74
+ "source.cpp keyword.operator.new",
75
+ "source.cpp keyword.operator.delete",
76
+ "keyword.other.using",
77
+ "keyword.other.operator"
78
+ ],
79
+ "settings": {
80
+ "foreground": "#C586C0"
81
+ }
82
+ },
83
+ {
84
+ "name": "Variable and parameter name",
85
+ "scope": ["variable", "meta.definition.variable.name", "support.variable"],
86
+ "settings": {
87
+ "foreground": "#9CDCFE"
88
+ }
89
+ },
90
+ {
91
+ "name": "Object keys, TS grammar specific",
92
+ "scope": ["meta.object-literal.key"],
93
+ "settings": {
94
+ "foreground": "#9CDCFE"
95
+ }
96
+ },
97
+ {
98
+ "name": "CSS property value",
99
+ "scope": [
100
+ "support.constant.property-value",
101
+ "support.constant.font-name",
102
+ "support.constant.media-type",
103
+ "support.constant.media",
104
+ "constant.other.color.rgb-value",
105
+ "constant.other.rgb-value",
106
+ "support.constant.color"
107
+ ],
108
+ "settings": {
109
+ "foreground": "#CE9178"
110
+ }
111
+ },
112
+ {
113
+ "name": "HC Search Editor context line override",
114
+ "scope": "meta.resultLinePrefix.contextLinePrefix.search",
115
+ "settings": {
116
+ "foreground": "#CBEDCB"
117
+ }
118
+ }
119
+ ]
120
+ }
@@ -0,0 +1,335 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "High Contrast Default Colors",
4
+ "tokenColors": [],
5
+ "colors": {
6
+ "editor.background": "#000000",
7
+ "editor.foreground": "#FFFFFF",
8
+ "editorIndentGuide.background": "#FFFFFF",
9
+ "editorIndentGuide.activeBackground": "#FFFFFF",
10
+ "statusBarItem.remoteBackground": "#00000000",
11
+ "sideBarTitle.foreground": "#FFFFFF"
12
+ },
13
+ "settings": [
14
+ {
15
+ "settings": {
16
+ "foreground": "#FFFFFF",
17
+ "background": "#000000"
18
+ }
19
+ },
20
+ {
21
+ "scope": ["meta.embedded", "source.groovy.embedded"],
22
+ "settings": {
23
+ "foreground": "#FFFFFF",
24
+ "background": "#000000"
25
+ }
26
+ },
27
+ {
28
+ "scope": "emphasis",
29
+ "settings": {
30
+ "fontStyle": "italic"
31
+ }
32
+ },
33
+ {
34
+ "scope": "strong",
35
+ "settings": {
36
+ "fontStyle": "bold"
37
+ }
38
+ },
39
+ {
40
+ "scope": "meta.diff.header",
41
+ "settings": {
42
+ "foreground": "#000080"
43
+ }
44
+ },
45
+ {
46
+ "scope": "comment",
47
+ "settings": {
48
+ "foreground": "#7ca668"
49
+ }
50
+ },
51
+ {
52
+ "scope": "constant.language",
53
+ "settings": {
54
+ "foreground": "#569cd6"
55
+ }
56
+ },
57
+ {
58
+ "scope": [
59
+ "constant.numeric",
60
+ "constant.other.color.rgb-value",
61
+ "constant.other.rgb-value",
62
+ "support.constant.color"
63
+ ],
64
+ "settings": {
65
+ "foreground": "#b5cea8"
66
+ }
67
+ },
68
+ {
69
+ "scope": "constant.regexp",
70
+ "settings": {
71
+ "foreground": "#b46695"
72
+ }
73
+ },
74
+ {
75
+ "scope": "constant.character",
76
+ "settings": {
77
+ "foreground": "#569cd6"
78
+ }
79
+ },
80
+ {
81
+ "scope": "entity.name.tag",
82
+ "settings": {
83
+ "foreground": "#569cd6"
84
+ }
85
+ },
86
+ {
87
+ "scope": "entity.name.tag.css",
88
+ "settings": {
89
+ "foreground": "#d7ba7d"
90
+ }
91
+ },
92
+ {
93
+ "scope": "entity.other.attribute-name",
94
+ "settings": {
95
+ "foreground": "#9cdcfe"
96
+ }
97
+ },
98
+ {
99
+ "scope": [
100
+ "entity.other.attribute-name.class.css",
101
+ "entity.other.attribute-name.class.mixin.css",
102
+ "entity.other.attribute-name.id.css",
103
+ "entity.other.attribute-name.parent-selector.css",
104
+ "entity.other.attribute-name.pseudo-class.css",
105
+ "entity.other.attribute-name.pseudo-element.css",
106
+
107
+ "source.css.less entity.other.attribute-name.id",
108
+
109
+ "entity.other.attribute-name.attribute.scss",
110
+ "entity.other.attribute-name.scss"
111
+ ],
112
+ "settings": {
113
+ "foreground": "#d7ba7d"
114
+ }
115
+ },
116
+ {
117
+ "scope": "invalid",
118
+ "settings": {
119
+ "foreground": "#f44747"
120
+ }
121
+ },
122
+ {
123
+ "scope": "markup.underline",
124
+ "settings": {
125
+ "fontStyle": "underline"
126
+ }
127
+ },
128
+ {
129
+ "scope": "markup.bold",
130
+ "settings": {
131
+ "fontStyle": "bold"
132
+ }
133
+ },
134
+ {
135
+ "scope": "markup.heading",
136
+ "settings": {
137
+ "foreground": "#6796e6"
138
+ }
139
+ },
140
+ {
141
+ "scope": "markup.italic",
142
+ "settings": {
143
+ "fontStyle": "italic"
144
+ }
145
+ },
146
+ {
147
+ "scope": "markup.inserted",
148
+ "settings": {
149
+ "foreground": "#b5cea8"
150
+ }
151
+ },
152
+ {
153
+ "scope": "markup.deleted",
154
+ "settings": {
155
+ "foreground": "#ce9178"
156
+ }
157
+ },
158
+ {
159
+ "scope": "markup.changed",
160
+ "settings": {
161
+ "foreground": "#569cd6"
162
+ }
163
+ },
164
+ {
165
+ "name": "brackets of XML/HTML tags",
166
+ "scope": ["punctuation.definition.tag"],
167
+ "settings": {
168
+ "foreground": "#808080"
169
+ }
170
+ },
171
+ {
172
+ "scope": "meta.preprocessor",
173
+ "settings": {
174
+ "foreground": "#569cd6"
175
+ }
176
+ },
177
+ {
178
+ "scope": "meta.preprocessor.string",
179
+ "settings": {
180
+ "foreground": "#ce9178"
181
+ }
182
+ },
183
+ {
184
+ "scope": "meta.preprocessor.numeric",
185
+ "settings": {
186
+ "foreground": "#b5cea8"
187
+ }
188
+ },
189
+ {
190
+ "scope": "meta.structure.dictionary.key.python",
191
+ "settings": {
192
+ "foreground": "#9cdcfe"
193
+ }
194
+ },
195
+ {
196
+ "scope": "storage",
197
+ "settings": {
198
+ "foreground": "#569cd6"
199
+ }
200
+ },
201
+ {
202
+ "scope": "storage.type",
203
+ "settings": {
204
+ "foreground": "#569cd6"
205
+ }
206
+ },
207
+ {
208
+ "scope": "storage.modifier",
209
+ "settings": {
210
+ "foreground": "#569cd6"
211
+ }
212
+ },
213
+ {
214
+ "scope": "string",
215
+ "settings": {
216
+ "foreground": "#ce9178"
217
+ }
218
+ },
219
+ {
220
+ "scope": "string.tag",
221
+ "settings": {
222
+ "foreground": "#ce9178"
223
+ }
224
+ },
225
+ {
226
+ "scope": "string.value",
227
+ "settings": {
228
+ "foreground": "#ce9178"
229
+ }
230
+ },
231
+ {
232
+ "scope": "string.regexp",
233
+ "settings": {
234
+ "foreground": "#d16969"
235
+ }
236
+ },
237
+ {
238
+ "name": "String interpolation",
239
+ "scope": [
240
+ "punctuation.definition.template-expression.begin",
241
+ "punctuation.definition.template-expression.end",
242
+ "punctuation.section.embedded"
243
+ ],
244
+ "settings": {
245
+ "foreground": "#569cd6"
246
+ }
247
+ },
248
+ {
249
+ "name": "Reset JavaScript string interpolation expression",
250
+ "scope": ["meta.template.expression"],
251
+ "settings": {
252
+ "foreground": "#ffffff"
253
+ }
254
+ },
255
+ {
256
+ "scope": [
257
+ "support.type.vendored.property-name",
258
+ "support.type.property-name",
259
+ "variable.css",
260
+ "variable.scss",
261
+ "variable.other.less",
262
+ "source.coffee.embedded"
263
+ ],
264
+ "settings": {
265
+ "foreground": "#d4d4d4"
266
+ }
267
+ },
268
+ {
269
+ "scope": "keyword",
270
+ "settings": {
271
+ "foreground": "#569cd6"
272
+ }
273
+ },
274
+ {
275
+ "scope": "keyword.control",
276
+ "settings": {
277
+ "foreground": "#569cd6"
278
+ }
279
+ },
280
+ {
281
+ "scope": "keyword.operator",
282
+ "settings": {
283
+ "foreground": "#d4d4d4"
284
+ }
285
+ },
286
+ {
287
+ "scope": [
288
+ "keyword.operator.new",
289
+ "keyword.operator.expression",
290
+ "keyword.operator.cast",
291
+ "keyword.operator.sizeof",
292
+ "keyword.operator.logical.python"
293
+ ],
294
+ "settings": {
295
+ "foreground": "#569cd6"
296
+ }
297
+ },
298
+ {
299
+ "scope": "keyword.other.unit",
300
+ "settings": {
301
+ "foreground": "#b5cea8"
302
+ }
303
+ },
304
+ {
305
+ "scope": "support.function.git-rebase",
306
+ "settings": {
307
+ "foreground": "#d4d4d4"
308
+ }
309
+ },
310
+ {
311
+ "scope": "constant.sha.git-rebase",
312
+ "settings": {
313
+ "foreground": "#b5cea8"
314
+ }
315
+ },
316
+ {
317
+ "name": "coloring of the Java import and package identifiers",
318
+ "scope": [
319
+ "storage.modifier.import.java",
320
+ "variable.language.wildcard.java",
321
+ "storage.modifier.package.java"
322
+ ],
323
+ "settings": {
324
+ "foreground": "#d4d4d4"
325
+ }
326
+ },
327
+ {
328
+ "name": "coloring of the TS this",
329
+ "scope": "variable.language.this",
330
+ "settings": {
331
+ "foreground": "#569cd6"
332
+ }
333
+ }
334
+ ]
335
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "Dark High Contrast (e2-editor)",
4
+ "colors": {},
5
+ "tokenColors": [],
6
+ "include": "hc_black.json"
7
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "Light Default Colors",
4
+ "tokenColors": [],
5
+ "colors": {
6
+ "editor.background": "#FFFFFF",
7
+ "editor.foreground": "#000000",
8
+ "editor.inactiveSelectionBackground": "#E5EBF1",
9
+ "editorIndentGuide.background": "#D3D3D3",
10
+ "editorIndentGuide.activeBackground": "#939393",
11
+ "editor.selectionHighlightBackground": "#ADD6FF80",
12
+ "editorSuggestWidget.background": "#F3F3F3",
13
+ "activityBarBadge.background": "#007ACC",
14
+ "sideBarTitle.foreground": "#6F6F6F",
15
+ "list.hoverBackground": "#E8E8E8",
16
+ "input.placeholderForeground": "#767676",
17
+ "settings.textInputBorder": "#CECECE",
18
+ "settings.numberInputBorder": "#CECECE",
19
+ "statusBarItem.remoteForeground": "#FFF",
20
+ "statusBarItem.remoteBackground": "#16825D"
21
+ }
22
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "Light (e2-editor)",
4
+ "include": "light_plus.json",
5
+ "tokenColors": [],
6
+ "colors": {
7
+ "activityBar.background": "#ececec",
8
+ "activityBar.activeBorder": "#000000",
9
+ "activityBar.foreground": "#000000"
10
+ }
11
+ }
@@ -0,0 +1,180 @@
1
+ {
2
+ "$schema": "vscode://schemas/color-theme",
3
+ "name": "Light+ (default light)",
4
+ "include": "light_vs.json",
5
+ "colors": {},
6
+ "tokenColors": [
7
+ {
8
+ "name": "Function declarations",
9
+ "scope": [
10
+ "entity.name.function",
11
+ "support.function",
12
+ "support.constant.handlebars",
13
+ "source.powershell variable.other.member",
14
+ "entity.name.operator.custom-literal"
15
+ ],
16
+ "settings": {
17
+ "foreground": "#795E26"
18
+ }
19
+ },
20
+ {
21
+ "name": "Types declaration and references",
22
+ "scope": [
23
+ "meta.return-type",
24
+ "support.class",
25
+ "support.type",
26
+ "entity.name.type",
27
+ "entity.name.namespace",
28
+ "entity.other.attribute",
29
+ "entity.name.scope-resolution",
30
+ "entity.name.class",
31
+ "storage.type.numeric.go",
32
+ "storage.type.byte.go",
33
+ "storage.type.boolean.go",
34
+ "storage.type.string.go",
35
+ "storage.type.uintptr.go",
36
+ "storage.type.error.go",
37
+ "storage.type.rune.go",
38
+ "storage.type.cs",
39
+ "storage.type.generic.cs",
40
+ "storage.type.modifier.cs",
41
+ "storage.type.variable.cs",
42
+ "storage.type.annotation.java",
43
+ "storage.type.generic.java",
44
+ "storage.type.java",
45
+ "storage.type.object.array.java",
46
+ "storage.type.primitive.array.java",
47
+ "storage.type.primitive.java",
48
+ "storage.type.token.java",
49
+ "storage.type.groovy",
50
+ "storage.type.annotation.groovy",
51
+ "storage.type.parameters.groovy",
52
+ "storage.type.generic.groovy",
53
+ "storage.type.object.array.groovy",
54
+ "storage.type.primitive.array.groovy",
55
+ "storage.type.primitive.groovy"
56
+ ],
57
+ "settings": {
58
+ "foreground": "#267f99"
59
+ }
60
+ },
61
+ {
62
+ "name": "Types declaration and references, TS grammar specific",
63
+ "scope": [
64
+ "meta.type.cast.expr",
65
+ "meta.type.new.expr",
66
+ "support.constant.math",
67
+ "support.constant.dom",
68
+ "support.constant.json",
69
+ "entity.other.inherited-class"
70
+ ],
71
+ "settings": {
72
+ "foreground": "#267f99"
73
+ }
74
+ },
75
+ {
76
+ "name": "Control flow / Special keywords",
77
+ "scope": [
78
+ "keyword.control",
79
+ "source.cpp keyword.operator.new",
80
+ "source.cpp keyword.operator.delete",
81
+ "keyword.other.using",
82
+ "keyword.other.operator",
83
+ "entity.name.operator"
84
+ ],
85
+ "settings": {
86
+ "foreground": "#AF00DB"
87
+ }
88
+ },
89
+ {
90
+ "name": "Variable and parameter name",
91
+ "scope": [
92
+ "variable",
93
+ "meta.definition.variable.name",
94
+ "support.variable",
95
+ "entity.name.variable"
96
+ ],
97
+ "settings": {
98
+ "foreground": "#001080"
99
+ }
100
+ },
101
+ {
102
+ "name": "Object keys, TS grammar specific",
103
+ "scope": ["meta.object-literal.key"],
104
+ "settings": {
105
+ "foreground": "#001080"
106
+ }
107
+ },
108
+ {
109
+ "name": "CSS property value",
110
+ "scope": [
111
+ "support.constant.property-value",
112
+ "support.constant.font-name",
113
+ "support.constant.media-type",
114
+ "support.constant.media",
115
+ "constant.other.color.rgb-value",
116
+ "constant.other.rgb-value",
117
+ "support.constant.color"
118
+ ],
119
+ "settings": {
120
+ "foreground": "#0451a5"
121
+ }
122
+ },
123
+ {
124
+ "name": "Regular expression groups",
125
+ "scope": [
126
+ "punctuation.definition.group.regexp",
127
+ "punctuation.definition.group.assertion.regexp",
128
+ "punctuation.definition.character-class.regexp",
129
+ "punctuation.character.set.begin.regexp",
130
+ "punctuation.character.set.end.regexp",
131
+ "keyword.operator.negation.regexp",
132
+ "support.other.parenthesis.regexp"
133
+ ],
134
+ "settings": {
135
+ "foreground": "#d16969"
136
+ }
137
+ },
138
+ {
139
+ "scope": [
140
+ "constant.character.character-class.regexp",
141
+ "constant.other.character-class.set.regexp",
142
+ "constant.other.character-class.regexp",
143
+ "constant.character.set.regexp"
144
+ ],
145
+ "settings": {
146
+ "foreground": "#811f3f"
147
+ }
148
+ },
149
+ {
150
+ "scope": "keyword.operator.quantifier.regexp",
151
+ "settings": {
152
+ "foreground": "#000000"
153
+ }
154
+ },
155
+ {
156
+ "scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"],
157
+ "settings": {
158
+ "foreground": "#ff0000"
159
+ }
160
+ },
161
+ {
162
+ "scope": "constant.character",
163
+ "settings": {
164
+ "foreground": "#0000ff"
165
+ }
166
+ },
167
+ {
168
+ "scope": "constant.character.escape",
169
+ "settings": {
170
+ "foreground": "#ff0000"
171
+ }
172
+ },
173
+ {
174
+ "scope": "entity.name.label",
175
+ "settings": {
176
+ "foreground": "#000000"
177
+ }
178
+ }
179
+ ]
180
+ }