@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.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/es/data/monaco-themes/vscode/dark_defaults.json +23 -0
- package/es/data/monaco-themes/vscode/dark_editor.json +116 -0
- package/es/data/monaco-themes/vscode/dark_plus.json +180 -0
- package/es/data/monaco-themes/vscode/dark_vs.json +358 -0
- package/es/data/monaco-themes/vscode/hc_black.json +120 -0
- package/es/data/monaco-themes/vscode/hc_black_defaults.json +335 -0
- package/es/data/monaco-themes/vscode/hc_editor.json +7 -0
- package/es/data/monaco-themes/vscode/light_defaults.json +22 -0
- package/es/data/monaco-themes/vscode/light_editor.json +11 -0
- package/es/data/monaco-themes/vscode/light_plus.json +180 -0
- package/es/data/monaco-themes/vscode/light_vs.json +380 -0
- package/es/global.d.ts +7 -0
- package/es/index.d.ts +7 -0
- package/es/index.d.ts.map +1 -0
- package/es/index.js +6 -0
- package/es/monaco-grammar-registry.d.ts +15 -0
- package/es/monaco-grammar-registry.d.ts.map +1 -0
- package/es/monaco-grammar-registry.js +130 -0
- package/es/monaco-module.d.ts +4 -0
- package/es/monaco-module.d.ts.map +1 -0
- package/es/monaco-module.js +78 -0
- package/es/monaco-textmate-service.d.ts +29 -0
- package/es/monaco-textmate-service.d.ts.map +1 -0
- package/es/monaco-textmate-service.js +284 -0
- package/es/monaco-theme-registry.d.ts +33 -0
- package/es/monaco-theme-registry.d.ts.map +1 -0
- package/es/monaco-theme-registry.js +227 -0
- package/es/monaco-theme-types.d.ts +5 -0
- package/es/monaco-theme-types.d.ts.map +1 -0
- package/es/monaco-theme-types.js +1 -0
- package/es/textmate-contribution.d.ts +9 -0
- package/es/textmate-contribution.d.ts.map +1 -0
- package/es/textmate-contribution.js +6 -0
- package/es/textmate-registry.d.ts +32 -0
- package/es/textmate-registry.d.ts.map +1 -0
- package/es/textmate-registry.js +130 -0
- package/es/textmate-theme-contribution.d.ts +6 -0
- package/es/textmate-theme-contribution.d.ts.map +1 -0
- package/es/textmate-theme-contribution.js +50 -0
- package/es/textmate-tokenizer.d.ts +25 -0
- package/es/textmate-tokenizer.d.ts.map +1 -0
- package/es/textmate-tokenizer.js +32 -0
- package/package.json +59 -0
- package/src/data/monaco-themes/vscode/dark_defaults.json +23 -0
- package/src/data/monaco-themes/vscode/dark_editor.json +116 -0
- package/src/data/monaco-themes/vscode/dark_plus.json +180 -0
- package/src/data/monaco-themes/vscode/dark_vs.json +358 -0
- package/src/data/monaco-themes/vscode/hc_black.json +120 -0
- package/src/data/monaco-themes/vscode/hc_black_defaults.json +335 -0
- package/src/data/monaco-themes/vscode/hc_editor.json +7 -0
- package/src/data/monaco-themes/vscode/light_defaults.json +22 -0
- package/src/data/monaco-themes/vscode/light_editor.json +11 -0
- package/src/data/monaco-themes/vscode/light_plus.json +180 -0
- package/src/data/monaco-themes/vscode/light_vs.json +380 -0
- package/src/global.d.ts +7 -0
- package/src/index.spec.ts +8 -0
- package/src/index.ts +8 -0
- package/src/monaco-grammar-registry.ts +88 -0
- package/src/monaco-module.ts +59 -0
- package/src/monaco-textmate-service.ts +220 -0
- package/src/monaco-theme-registry.ts +201 -0
- package/src/monaco-theme-types.ts +5 -0
- package/src/textmate-contribution.ts +15 -0
- package/src/textmate-registry.ts +134 -0
- package/src/textmate-theme-contribution.ts +39 -0
- package/src/textmate-tokenizer.ts +55 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Dark (e2-editor)",
|
|
4
|
+
"include": "dark_plus.json",
|
|
5
|
+
"colors": {
|
|
6
|
+
"editor.background": "#1F2740",
|
|
7
|
+
"editor.lineHighlightBackground": "#353D53",
|
|
8
|
+
"editorCursor.foreground": "#E9E9EC",
|
|
9
|
+
"editorIndentGuide.background": "#353D53",
|
|
10
|
+
"editor.selectionBackground": "#2858D8",
|
|
11
|
+
"editorBracketMatch.background": "#2858D8",
|
|
12
|
+
"editor.selectionHighlightBackground": "#223979",
|
|
13
|
+
"editor.findMatchBackground": "#FFC600"
|
|
14
|
+
},
|
|
15
|
+
"tokenColors": [
|
|
16
|
+
{
|
|
17
|
+
"name": "Default Scope",
|
|
18
|
+
"scope": [""],
|
|
19
|
+
"settings": {
|
|
20
|
+
"foreground": "#ffffff",
|
|
21
|
+
"background": "#353D53"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "Default Scope",
|
|
26
|
+
"scope": ["keywords", "customKeywords"],
|
|
27
|
+
"settings": {
|
|
28
|
+
"foreground": "#46AAFF"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Default Scope",
|
|
33
|
+
"scope": ["comment"],
|
|
34
|
+
"settings": {
|
|
35
|
+
"foreground": "#787D8C"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Default Scope",
|
|
40
|
+
"scope": ["builtinFunctions", "function"],
|
|
41
|
+
"settings": {
|
|
42
|
+
"foreground": "#FD85F4"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "Default Scope",
|
|
47
|
+
"scope": ["operator"],
|
|
48
|
+
"settings": {
|
|
49
|
+
"foreground": "#C8D3EC"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Default Scope",
|
|
54
|
+
"scope": ["string"],
|
|
55
|
+
"settings": {
|
|
56
|
+
"foreground": "#E5B200"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "Default Scope",
|
|
61
|
+
"scope": ["number"],
|
|
62
|
+
"settings": {
|
|
63
|
+
"foreground": "#B9DCA6"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "Log Scope",
|
|
68
|
+
"scope": ["log-info"],
|
|
69
|
+
"settings": {
|
|
70
|
+
"foreground": "#008800"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Log Scope",
|
|
75
|
+
"scope": ["log-alert"],
|
|
76
|
+
"settings": {
|
|
77
|
+
"foreground": "#EABA19"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "Log Scope",
|
|
82
|
+
"scope": ["log-date"],
|
|
83
|
+
"settings": {
|
|
84
|
+
"foreground": "#E9E9EC"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "Log Scope",
|
|
89
|
+
"scope": ["log-error"],
|
|
90
|
+
"settings": {
|
|
91
|
+
"foreground": "#FF4B61"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "Log Scope",
|
|
96
|
+
"scope": ["log-links"],
|
|
97
|
+
"settings": {
|
|
98
|
+
"foreground": "#1292FF"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Log Scope",
|
|
103
|
+
"scope": ["log-failed"],
|
|
104
|
+
"settings": {
|
|
105
|
+
"foreground": "#FF4B61"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "Log Scope",
|
|
110
|
+
"scope": ["log-success"],
|
|
111
|
+
"settings": {
|
|
112
|
+
"foreground": "#E9E9EC"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Dark+ (default dark)",
|
|
4
|
+
"include": "dark_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": "#DCDCAA"
|
|
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": "#4EC9B0"
|
|
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": "#4EC9B0"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "Control flow / Special keywords",
|
|
77
|
+
"scope": [
|
|
78
|
+
"keyword.control",
|
|
79
|
+
"source.cpp keyword.operator.new",
|
|
80
|
+
"keyword.operator.delete",
|
|
81
|
+
"keyword.other.using",
|
|
82
|
+
"keyword.other.operator",
|
|
83
|
+
"entity.name.operator"
|
|
84
|
+
],
|
|
85
|
+
"settings": {
|
|
86
|
+
"foreground": "#C586C0"
|
|
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": "#9CDCFE"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Object keys, TS grammar specific",
|
|
103
|
+
"scope": ["meta.object-literal.key"],
|
|
104
|
+
"settings": {
|
|
105
|
+
"foreground": "#9CDCFE"
|
|
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": "#CE9178"
|
|
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": "#CE9178"
|
|
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": "#d16969"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"],
|
|
151
|
+
"settings": {
|
|
152
|
+
"foreground": "#DCDCAA"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"scope": "keyword.operator.quantifier.regexp",
|
|
157
|
+
"settings": {
|
|
158
|
+
"foreground": "#d7ba7d"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"scope": "constant.character",
|
|
163
|
+
"settings": {
|
|
164
|
+
"foreground": "#569cd6"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"scope": "constant.character.escape",
|
|
169
|
+
"settings": {
|
|
170
|
+
"foreground": "#d7ba7d"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"scope": "entity.name.label",
|
|
175
|
+
"settings": {
|
|
176
|
+
"foreground": "#C8C8C8"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Dark (Visual Studio)",
|
|
4
|
+
"include": "dark_defaults.json",
|
|
5
|
+
"colors": {},
|
|
6
|
+
"tokenColors": [
|
|
7
|
+
{
|
|
8
|
+
"scope": ["meta.embedded", "source.groovy.embedded"],
|
|
9
|
+
"settings": {
|
|
10
|
+
"foreground": "#D4D4D4"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"scope": "emphasis",
|
|
15
|
+
"settings": {
|
|
16
|
+
"fontStyle": "italic"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"scope": "strong",
|
|
21
|
+
"settings": {
|
|
22
|
+
"fontStyle": "bold"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"scope": "header",
|
|
27
|
+
"settings": {
|
|
28
|
+
"foreground": "#000080"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"scope": "comment",
|
|
33
|
+
"settings": {
|
|
34
|
+
"foreground": "#6A9955"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"scope": "constant.language",
|
|
39
|
+
"settings": {
|
|
40
|
+
"foreground": "#569cd6"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"scope": [
|
|
45
|
+
"constant.numeric",
|
|
46
|
+
"entity.name.operator.custom-literal.number",
|
|
47
|
+
"variable.other.enummember",
|
|
48
|
+
"keyword.operator.plus.exponent",
|
|
49
|
+
"keyword.operator.minus.exponent"
|
|
50
|
+
],
|
|
51
|
+
"settings": {
|
|
52
|
+
"foreground": "#b5cea8"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"scope": "constant.regexp",
|
|
57
|
+
"settings": {
|
|
58
|
+
"foreground": "#646695"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"scope": "entity.name.tag",
|
|
63
|
+
"settings": {
|
|
64
|
+
"foreground": "#569cd6"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"scope": "entity.name.tag.css",
|
|
69
|
+
"settings": {
|
|
70
|
+
"foreground": "#d7ba7d"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"scope": "entity.other.attribute-name",
|
|
75
|
+
"settings": {
|
|
76
|
+
"foreground": "#9cdcfe"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"scope": [
|
|
81
|
+
"entity.other.attribute-name.class.css",
|
|
82
|
+
"entity.other.attribute-name.class.mixin.css",
|
|
83
|
+
"entity.other.attribute-name.id.css",
|
|
84
|
+
"entity.other.attribute-name.parent-selector.css",
|
|
85
|
+
"entity.other.attribute-name.pseudo-class.css",
|
|
86
|
+
"entity.other.attribute-name.pseudo-element.css",
|
|
87
|
+
"source.css.less entity.other.attribute-name.id",
|
|
88
|
+
"entity.other.attribute-name.attribute.scss",
|
|
89
|
+
"entity.other.attribute-name.scss"
|
|
90
|
+
],
|
|
91
|
+
"settings": {
|
|
92
|
+
"foreground": "#d7ba7d"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"scope": "invalid",
|
|
97
|
+
"settings": {
|
|
98
|
+
"foreground": "#f44747"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"scope": "markup.underline",
|
|
103
|
+
"settings": {
|
|
104
|
+
"fontStyle": "underline"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"scope": "markup.bold",
|
|
109
|
+
"settings": {
|
|
110
|
+
"fontStyle": "bold",
|
|
111
|
+
"foreground": "#569cd6"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"scope": "markup.heading",
|
|
116
|
+
"settings": {
|
|
117
|
+
"fontStyle": "bold",
|
|
118
|
+
"foreground": "#569cd6"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"scope": "markup.italic",
|
|
123
|
+
"settings": {
|
|
124
|
+
"fontStyle": "italic"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"scope": "markup.inserted",
|
|
129
|
+
"settings": {
|
|
130
|
+
"foreground": "#b5cea8"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"scope": "markup.deleted",
|
|
135
|
+
"settings": {
|
|
136
|
+
"foreground": "#ce9178"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"scope": "markup.changed",
|
|
141
|
+
"settings": {
|
|
142
|
+
"foreground": "#569cd6"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"scope": "punctuation.definition.quote.begin.markdown",
|
|
147
|
+
"settings": {
|
|
148
|
+
"foreground": "#6A9955"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"scope": "punctuation.definition.list.begin.markdown",
|
|
153
|
+
"settings": {
|
|
154
|
+
"foreground": "#6796e6"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"scope": "markup.inline.raw",
|
|
159
|
+
"settings": {
|
|
160
|
+
"foreground": "#ce9178"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "brackets of XML/HTML tags",
|
|
165
|
+
"scope": "punctuation.definition.tag",
|
|
166
|
+
"settings": {
|
|
167
|
+
"foreground": "#808080"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"scope": ["meta.preprocessor", "entity.name.function.preprocessor"],
|
|
172
|
+
"settings": {
|
|
173
|
+
"foreground": "#569cd6"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"scope": "meta.preprocessor.string",
|
|
178
|
+
"settings": {
|
|
179
|
+
"foreground": "#ce9178"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"scope": "meta.preprocessor.numeric",
|
|
184
|
+
"settings": {
|
|
185
|
+
"foreground": "#b5cea8"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"scope": "meta.structure.dictionary.key.python",
|
|
190
|
+
"settings": {
|
|
191
|
+
"foreground": "#9cdcfe"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"scope": "meta.diff.header",
|
|
196
|
+
"settings": {
|
|
197
|
+
"foreground": "#569cd6"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"scope": "storage",
|
|
202
|
+
"settings": {
|
|
203
|
+
"foreground": "#569cd6"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"scope": "storage.type",
|
|
208
|
+
"settings": {
|
|
209
|
+
"foreground": "#569cd6"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"scope": ["storage.modifier", "keyword.operator.noexcept"],
|
|
214
|
+
"settings": {
|
|
215
|
+
"foreground": "#569cd6"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"scope": [
|
|
220
|
+
"string",
|
|
221
|
+
"entity.name.operator.custom-literal.string",
|
|
222
|
+
"meta.embedded.assembly"
|
|
223
|
+
],
|
|
224
|
+
"settings": {
|
|
225
|
+
"foreground": "#ce9178"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"scope": "string.tag",
|
|
230
|
+
"settings": {
|
|
231
|
+
"foreground": "#ce9178"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"scope": "string.value",
|
|
236
|
+
"settings": {
|
|
237
|
+
"foreground": "#ce9178"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"scope": "string.regexp",
|
|
242
|
+
"settings": {
|
|
243
|
+
"foreground": "#d16969"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "String interpolation",
|
|
248
|
+
"scope": [
|
|
249
|
+
"punctuation.definition.template-expression.begin",
|
|
250
|
+
"punctuation.definition.template-expression.end",
|
|
251
|
+
"punctuation.section.embedded"
|
|
252
|
+
],
|
|
253
|
+
"settings": {
|
|
254
|
+
"foreground": "#569cd6"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "Reset JavaScript string interpolation expression",
|
|
259
|
+
"scope": ["meta.template.expression"],
|
|
260
|
+
"settings": {
|
|
261
|
+
"foreground": "#d4d4d4"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"scope": [
|
|
266
|
+
"support.type.vendored.property-name",
|
|
267
|
+
"support.type.property-name",
|
|
268
|
+
"variable.css",
|
|
269
|
+
"variable.scss",
|
|
270
|
+
"variable.other.less",
|
|
271
|
+
"source.coffee.embedded"
|
|
272
|
+
],
|
|
273
|
+
"settings": {
|
|
274
|
+
"foreground": "#9cdcfe"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"scope": "keyword",
|
|
279
|
+
"settings": {
|
|
280
|
+
"foreground": "#569cd6"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"scope": "keyword.control",
|
|
285
|
+
"settings": {
|
|
286
|
+
"foreground": "#569cd6"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"scope": "keyword.operator",
|
|
291
|
+
"settings": {
|
|
292
|
+
"foreground": "#d4d4d4"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"scope": [
|
|
297
|
+
"keyword.operator.new",
|
|
298
|
+
"keyword.operator.expression",
|
|
299
|
+
"keyword.operator.cast",
|
|
300
|
+
"keyword.operator.sizeof",
|
|
301
|
+
"keyword.operator.alignof",
|
|
302
|
+
"keyword.operator.typeid",
|
|
303
|
+
"keyword.operator.alignas",
|
|
304
|
+
"keyword.operator.instanceof",
|
|
305
|
+
"keyword.operator.logical.python",
|
|
306
|
+
"keyword.operator.wordlike"
|
|
307
|
+
],
|
|
308
|
+
"settings": {
|
|
309
|
+
"foreground": "#569cd6"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"scope": "keyword.other.unit",
|
|
314
|
+
"settings": {
|
|
315
|
+
"foreground": "#b5cea8"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"scope": [
|
|
320
|
+
"punctuation.section.embedded.begin.php",
|
|
321
|
+
"punctuation.section.embedded.end.php"
|
|
322
|
+
],
|
|
323
|
+
"settings": {
|
|
324
|
+
"foreground": "#569cd6"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"scope": "support.function.git-rebase",
|
|
329
|
+
"settings": {
|
|
330
|
+
"foreground": "#9cdcfe"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"scope": "constant.sha.git-rebase",
|
|
335
|
+
"settings": {
|
|
336
|
+
"foreground": "#b5cea8"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "coloring of the Java import and package identifiers",
|
|
341
|
+
"scope": [
|
|
342
|
+
"storage.modifier.import.java",
|
|
343
|
+
"variable.language.wildcard.java",
|
|
344
|
+
"storage.modifier.package.java"
|
|
345
|
+
],
|
|
346
|
+
"settings": {
|
|
347
|
+
"foreground": "#d4d4d4"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"name": "this.self",
|
|
352
|
+
"scope": "variable.language",
|
|
353
|
+
"settings": {
|
|
354
|
+
"foreground": "#569cd6"
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
]
|
|
358
|
+
}
|