@cozeloop/prompt-components 0.0.1

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 (149) hide show
  1. package/README.md +1 -0
  2. package/dist/es/basic-editor/custom-facet.js +9 -0
  3. package/dist/es/basic-editor/diff.js +138 -0
  4. package/dist/es/basic-editor/extensions/go-syntax.js +122 -0
  5. package/dist/es/basic-editor/extensions/go-template.js +16 -0
  6. package/dist/es/basic-editor/extensions/go-theme.js +1071 -0
  7. package/dist/es/basic-editor/extensions/jinja.js +80 -0
  8. package/dist/es/basic-editor/extensions/keymap.js +442 -0
  9. package/dist/es/basic-editor/extensions/language-support.js +12 -0
  10. package/dist/es/basic-editor/extensions/markdown.js +58 -0
  11. package/dist/es/basic-editor/extensions/search/dom/icon.js +250 -0
  12. package/dist/es/basic-editor/extensions/search/dom/match-count.js +33 -0
  13. package/dist/es/basic-editor/extensions/search/index.js +18 -0
  14. package/dist/es/basic-editor/extensions/search/panel.js +418 -0
  15. package/dist/es/basic-editor/extensions/search/theme.js +184 -0
  16. package/dist/es/basic-editor/extensions/validation.js +84 -0
  17. package/dist/es/basic-editor/extensions/validation.module.js +5 -0
  18. package/dist/es/basic-editor/extensions/validation_module.css +7 -0
  19. package/dist/es/basic-editor/extensions/variable.js +178 -0
  20. package/dist/es/basic-editor/index.js +171 -0
  21. package/dist/es/code-editor/code-editor.js +83 -0
  22. package/dist/es/code-editor/index.js +12 -0
  23. package/dist/es/code-editor/json-editor.js +157 -0
  24. package/dist/es/code-editor/raw-text-editor.js +46 -0
  25. package/dist/es/code-editor/text-editor.js +41 -0
  26. package/dist/es/code-editor/themes/coze-dark.js +112 -0
  27. package/dist/es/code-editor/themes/coze-light.js +118 -0
  28. package/dist/es/consts/index.js +12 -0
  29. package/dist/es/dev-layout/index.js +35 -0
  30. package/dist/es/index.js +66 -0
  31. package/dist/es/mermaid-diagram/index.js +148 -0
  32. package/dist/es/mermaid-diagram/index.module.js +5 -0
  33. package/dist/es/mermaid-diagram/index_module.css +4 -0
  34. package/dist/es/mermaid-diagram/use-svg-pan-zoom.js +49 -0
  35. package/dist/es/mermaid-diagram/utils.js +74 -0
  36. package/dist/es/model-config-editor/basic-type.js +73 -0
  37. package/dist/es/model-config-editor/index.module.js +5 -0
  38. package/dist/es/model-config-editor/index_module.css +8 -0
  39. package/dist/es/model-config-editor/model-config-form.js +130 -0
  40. package/dist/es/model-config-editor/popover-type.js +118 -0
  41. package/dist/es/model-select/index.js +136 -0
  42. package/dist/es/model-select/index.module.js +5 -0
  43. package/dist/es/model-select/index_module.css +14 -0
  44. package/dist/es/model-select/model-option/index.js +161 -0
  45. package/dist/es/model-select/model-option/index.module.js +5 -0
  46. package/dist/es/model-select/model-option/index_module.css +23 -0
  47. package/dist/es/model-select/model-option-group/index.js +44 -0
  48. package/dist/es/prompt-editor/index.js +188 -0
  49. package/dist/es/prompt-editor/index.module.js +5 -0
  50. package/dist/es/prompt-editor/index_module.css +71 -0
  51. package/dist/es/prompt-editor/message-type-select.js +74 -0
  52. package/dist/es/schema-editor/index.js +43 -0
  53. package/dist/es/utils/base.js +53 -0
  54. package/dist/es/utils/model-config.js +32 -0
  55. package/dist/lib/basic-editor/custom-facet.js +33 -0
  56. package/dist/lib/basic-editor/diff.js +167 -0
  57. package/dist/lib/basic-editor/extensions/go-syntax.js +146 -0
  58. package/dist/lib/basic-editor/extensions/go-template.js +50 -0
  59. package/dist/lib/basic-editor/extensions/go-theme.js +1091 -0
  60. package/dist/lib/basic-editor/extensions/jinja.js +100 -0
  61. package/dist/lib/basic-editor/extensions/keymap.js +465 -0
  62. package/dist/lib/basic-editor/extensions/language-support.js +32 -0
  63. package/dist/lib/basic-editor/extensions/markdown.js +78 -0
  64. package/dist/lib/basic-editor/extensions/search/dom/icon.js +291 -0
  65. package/dist/lib/basic-editor/extensions/search/dom/match-count.js +67 -0
  66. package/dist/lib/basic-editor/extensions/search/index.js +38 -0
  67. package/dist/lib/basic-editor/extensions/search/panel.js +429 -0
  68. package/dist/lib/basic-editor/extensions/search/theme.js +208 -0
  69. package/dist/lib/basic-editor/extensions/validation.js +118 -0
  70. package/dist/lib/basic-editor/extensions/validation.module.js +25 -0
  71. package/dist/lib/basic-editor/extensions/validation_module.css +7 -0
  72. package/dist/lib/basic-editor/extensions/variable.js +190 -0
  73. package/dist/lib/basic-editor/index.js +193 -0
  74. package/dist/lib/code-editor/code-editor.js +117 -0
  75. package/dist/lib/code-editor/index.js +40 -0
  76. package/dist/lib/code-editor/json-editor.js +184 -0
  77. package/dist/lib/code-editor/raw-text-editor.js +70 -0
  78. package/dist/lib/code-editor/text-editor.js +75 -0
  79. package/dist/lib/code-editor/themes/coze-dark.js +136 -0
  80. package/dist/lib/code-editor/themes/coze-light.js +142 -0
  81. package/dist/lib/consts/index.js +38 -0
  82. package/dist/lib/dev-layout/index.js +69 -0
  83. package/dist/lib/index.js +110 -0
  84. package/dist/lib/mermaid-diagram/index.js +174 -0
  85. package/dist/lib/mermaid-diagram/index.module.js +25 -0
  86. package/dist/lib/mermaid-diagram/index_module.css +4 -0
  87. package/dist/lib/mermaid-diagram/use-svg-pan-zoom.js +83 -0
  88. package/dist/lib/mermaid-diagram/utils.js +98 -0
  89. package/dist/lib/model-config-editor/basic-type.js +105 -0
  90. package/dist/lib/model-config-editor/index.module.js +25 -0
  91. package/dist/lib/model-config-editor/index_module.css +8 -0
  92. package/dist/lib/model-config-editor/model-config-form.js +149 -0
  93. package/dist/lib/model-config-editor/popover-type.js +145 -0
  94. package/dist/lib/model-select/index.js +170 -0
  95. package/dist/lib/model-select/index.module.js +25 -0
  96. package/dist/lib/model-select/index_module.css +14 -0
  97. package/dist/lib/model-select/model-option/index.js +188 -0
  98. package/dist/lib/model-select/model-option/index.module.js +25 -0
  99. package/dist/lib/model-select/model-option/index_module.css +23 -0
  100. package/dist/lib/model-select/model-option-group/index.js +75 -0
  101. package/dist/lib/prompt-editor/index.js +218 -0
  102. package/dist/lib/prompt-editor/index.module.js +25 -0
  103. package/dist/lib/prompt-editor/index_module.css +71 -0
  104. package/dist/lib/prompt-editor/message-type-select.js +108 -0
  105. package/dist/lib/schema-editor/index.js +77 -0
  106. package/dist/lib/utils/base.js +82 -0
  107. package/dist/lib/utils/model-config.js +57 -0
  108. package/dist/types/basic-editor/custom-facet.d.ts +2 -0
  109. package/dist/types/basic-editor/diff.d.ts +15 -0
  110. package/dist/types/basic-editor/extensions/go-syntax.d.ts +71 -0
  111. package/dist/types/basic-editor/extensions/go-template.d.ts +1 -0
  112. package/dist/types/basic-editor/extensions/go-theme.d.ts +2 -0
  113. package/dist/types/basic-editor/extensions/jinja.d.ts +6 -0
  114. package/dist/types/basic-editor/extensions/keymap.d.ts +4 -0
  115. package/dist/types/basic-editor/extensions/language-support.d.ts +2 -0
  116. package/dist/types/basic-editor/extensions/markdown.d.ts +2 -0
  117. package/dist/types/basic-editor/extensions/search/dom/icon.d.ts +59 -0
  118. package/dist/types/basic-editor/extensions/search/dom/match-count.d.ts +14 -0
  119. package/dist/types/basic-editor/extensions/search/index.d.ts +1 -0
  120. package/dist/types/basic-editor/extensions/search/panel.d.ts +32 -0
  121. package/dist/types/basic-editor/extensions/search/theme.d.ts +1 -0
  122. package/dist/types/basic-editor/extensions/validation.d.ts +10 -0
  123. package/dist/types/basic-editor/extensions/variable.d.ts +14 -0
  124. package/dist/types/basic-editor/index.d.ts +28 -0
  125. package/dist/types/code-editor/code-editor.d.ts +23 -0
  126. package/dist/types/code-editor/index.d.ts +5 -0
  127. package/dist/types/code-editor/json-editor.d.ts +17 -0
  128. package/dist/types/code-editor/raw-text-editor.d.ts +11 -0
  129. package/dist/types/code-editor/text-editor.d.ts +23 -0
  130. package/dist/types/code-editor/themes/coze-dark.d.ts +1 -0
  131. package/dist/types/code-editor/themes/coze-light.d.ts +1 -0
  132. package/dist/types/consts/index.d.ts +3 -0
  133. package/dist/types/dev-layout/index.d.ts +13 -0
  134. package/dist/types/index.d.ts +19 -0
  135. package/dist/types/mermaid-diagram/index.d.ts +12 -0
  136. package/dist/types/mermaid-diagram/use-svg-pan-zoom.d.ts +17 -0
  137. package/dist/types/mermaid-diagram/utils.d.ts +1 -0
  138. package/dist/types/model-config-editor/basic-type.d.ts +19 -0
  139. package/dist/types/model-config-editor/model-config-form.d.ts +14 -0
  140. package/dist/types/model-config-editor/popover-type.d.ts +25 -0
  141. package/dist/types/model-select/index.d.ts +38 -0
  142. package/dist/types/model-select/model-option/index.d.ts +30 -0
  143. package/dist/types/model-select/model-option-group/index.d.ts +15 -0
  144. package/dist/types/prompt-editor/index.d.ts +30 -0
  145. package/dist/types/prompt-editor/message-type-select.d.ts +16 -0
  146. package/dist/types/schema-editor/index.d.ts +18 -0
  147. package/dist/types/utils/base.d.ts +10 -0
  148. package/dist/types/utils/model-config.d.ts +4 -0
  149. package/package.json +75 -0
@@ -0,0 +1,1091 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var go_theme_exports = {};
20
+ __export(go_theme_exports, {
21
+ default: () => go_theme_default
22
+ });
23
+ module.exports = __toCommonJS(go_theme_exports);
24
+ const json = {
25
+ colors: {
26
+ "activityBar.background": "#FAFAFA",
27
+ "activityBar.foreground": "#121417",
28
+ "activityBarBadge.background": "#526FFF",
29
+ "activityBarBadge.foreground": "#FFFFFF",
30
+ "badge.background": "#526FFF",
31
+ "badge.foreground": "#FFFFFF",
32
+ "button.background": "#5871EF",
33
+ "button.foreground": "#FFFFFF",
34
+ "button.hoverBackground": "#6B83ED",
35
+ "diffEditor.insertedTextBackground": "#00809B33",
36
+ "dropdown.background": "#FFFFFF",
37
+ "dropdown.border": "#DBDBDC",
38
+ "editor.background": "#FAFAFA",
39
+ "editor.findMatchHighlightBackground": "#526FFF33",
40
+ "editor.foreground": "#383A42",
41
+ "editor.lineHighlightBackground": "#383A420C",
42
+ "editor.selectionBackground": "#E5E5E6",
43
+ "editorCursor.foreground": "#526FFF",
44
+ "editorGroup.background": "#EAEAEB",
45
+ "editorGroup.border": "#DBDBDC",
46
+ "editorGroupHeader.tabsBackground": "#EAEAEB",
47
+ "editorHoverWidget.background": "#EAEAEB",
48
+ "editorHoverWidget.border": "#DBDBDC",
49
+ "editorIndentGuide.activeBackground": "#626772",
50
+ "editorIndentGuide.background": "#383A4233",
51
+ "editorInlayHint.background": "#F5F5F5",
52
+ "editorInlayHint.foreground": "#AFB2BB",
53
+ "editorLineNumber.activeForeground": "#383A42",
54
+ "editorLineNumber.foreground": "#9D9D9F",
55
+ "editorRuler.foreground": "#383A4233",
56
+ "editorSuggestWidget.background": "#EAEAEB",
57
+ "editorSuggestWidget.border": "#DBDBDC",
58
+ "editorSuggestWidget.selectedBackground": "#FFFFFF",
59
+ "editorWhitespace.foreground": "#383A4233",
60
+ "editorWidget.background": "#EAEAEB",
61
+ "editorWidget.border": "#E5E5E6",
62
+ "extensionButton.prominentBackground": "#3BBA54",
63
+ "extensionButton.prominentHoverBackground": "#4CC263",
64
+ focusBorder: "#526FFF",
65
+ "input.background": "#FFFFFF",
66
+ "input.border": "#DBDBDC",
67
+ "list.activeSelectionBackground": "#DBDBDC",
68
+ "list.activeSelectionForeground": "#232324",
69
+ "list.focusBackground": "#DBDBDC",
70
+ "list.highlightForeground": "#121417",
71
+ "list.hoverBackground": "#DBDBDC66",
72
+ "list.inactiveSelectionBackground": "#DBDBDC",
73
+ "list.inactiveSelectionForeground": "#232324",
74
+ "notebook.cellEditorBackground": "#F5F5F5",
75
+ "notification.background": "#333333",
76
+ "peekView.border": "#526FFF",
77
+ "peekViewEditor.background": "#FFFFFF",
78
+ "peekViewResult.background": "#EAEAEB",
79
+ "peekViewResult.selectionBackground": "#DBDBDC",
80
+ "peekViewTitle.background": "#FFFFFF",
81
+ "pickerGroup.border": "#526FFF",
82
+ "scrollbarSlider.activeBackground": "#747D9180",
83
+ "scrollbarSlider.background": "#4E566680",
84
+ "scrollbarSlider.hoverBackground": "#5A637580",
85
+ "sideBar.background": "#EAEAEB",
86
+ "sideBarSectionHeader.background": "#FAFAFA",
87
+ "statusBar.background": "#EAEAEB",
88
+ "statusBar.debuggingForeground": "#FFFFFF",
89
+ "statusBar.foreground": "#424243",
90
+ "statusBar.noFolderBackground": "#EAEAEB",
91
+ "statusBarItem.hoverBackground": "#DBDBDC",
92
+ "tab.activeBackground": "#FAFAFA",
93
+ "tab.activeForeground": "#121417",
94
+ "tab.border": "#DBDBDC",
95
+ "tab.inactiveBackground": "#EAEAEB",
96
+ "titleBar.activeBackground": "#EAEAEB",
97
+ "titleBar.activeForeground": "#424243",
98
+ "titleBar.inactiveBackground": "#EAEAEB",
99
+ "titleBar.inactiveForeground": "#424243"
100
+ },
101
+ displayName: "One Light",
102
+ name: "one-light",
103
+ tokenColors: [
104
+ {
105
+ scope: ["comment"],
106
+ settings: { fontStyle: "italic", foreground: "#A0A1A7" }
107
+ },
108
+ {
109
+ scope: ["comment markup.link"],
110
+ settings: { foreground: "#A0A1A7" }
111
+ },
112
+ { scope: ["entity.name.type"], settings: { foreground: "#C18401" } },
113
+ {
114
+ scope: ["entity.other.inherited-class"],
115
+ settings: { foreground: "#C18401" }
116
+ },
117
+ { scope: ["keyword"], settings: { foreground: "#A626A4" } },
118
+ { scope: ["keyword.control"], settings: { foreground: "#A626A4" } },
119
+ { scope: ["keyword.operator"], settings: { foreground: "#383A42" } },
120
+ {
121
+ scope: ["keyword.other.special-method"],
122
+ settings: { foreground: "#4078F2" }
123
+ },
124
+ {
125
+ scope: ["keyword.other.unit"],
126
+ settings: { foreground: "#986801" }
127
+ },
128
+ { scope: ["storage"], settings: { foreground: "#A626A4" } },
129
+ {
130
+ scope: ["storage.type.annotation", "storage.type.primitive"],
131
+ settings: { foreground: "#A626A4" }
132
+ },
133
+ {
134
+ scope: ["storage.modifier.package", "storage.modifier.import"],
135
+ settings: { foreground: "#383A42" }
136
+ },
137
+ { scope: ["constant"], settings: { foreground: "#986801" } },
138
+ { scope: ["constant.variable"], settings: { foreground: "#986801" } },
139
+ {
140
+ scope: ["constant.character.escape"],
141
+ settings: { foreground: "#0184BC" }
142
+ },
143
+ { scope: ["constant.numeric"], settings: { foreground: "#986801" } },
144
+ {
145
+ scope: ["constant.other.color"],
146
+ settings: { foreground: "#0184BC" }
147
+ },
148
+ {
149
+ scope: ["constant.other.symbol"],
150
+ settings: { foreground: "#0184BC" }
151
+ },
152
+ {
153
+ scope: ["variable"],
154
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
155
+ },
156
+ {
157
+ scope: ["variable.interpolation"],
158
+ settings: { foreground: "#CA1243" }
159
+ },
160
+ {
161
+ scope: ["variable.parameter"],
162
+ settings: { foreground: "#383A42" }
163
+ },
164
+ { scope: ["string"], settings: { foreground: "#50A14F" } },
165
+ {
166
+ scope: ["string > source", "string embedded"],
167
+ settings: { foreground: "#383A42" }
168
+ },
169
+ { scope: ["string.regexp"], settings: { foreground: "#0184BC" } },
170
+ {
171
+ scope: ["string.regexp source.ruby.embedded"],
172
+ settings: { foreground: "#C18401" }
173
+ },
174
+ {
175
+ scope: ["string.other.link"],
176
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
177
+ },
178
+ {
179
+ scope: ["punctuation.definition.comment"],
180
+ settings: { foreground: "#A0A1A7" }
181
+ },
182
+ {
183
+ scope: [
184
+ "punctuation.definition.method-parameters",
185
+ "punctuation.definition.function-parameters",
186
+ "punctuation.definition.parameters",
187
+ "punctuation.definition.separator",
188
+ "punctuation.definition.seperator",
189
+ "punctuation.definition.array"
190
+ ],
191
+ settings: { foreground: "#383A42" }
192
+ },
193
+ {
194
+ scope: [
195
+ "punctuation.definition.heading",
196
+ "punctuation.definition.identity"
197
+ ],
198
+ settings: { foreground: "#4078F2" }
199
+ },
200
+ {
201
+ scope: ["punctuation.definition.bold"],
202
+ settings: { fontStyle: "bold", foreground: "#C18401" }
203
+ },
204
+ {
205
+ scope: ["punctuation.definition.italic"],
206
+ settings: { fontStyle: "italic", foreground: "#A626A4" }
207
+ },
208
+ {
209
+ scope: ["punctuation.section.embedded"],
210
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
211
+ },
212
+ {
213
+ scope: [
214
+ "punctuation.section.method",
215
+ "punctuation.section.class",
216
+ "punctuation.section.inner-class"
217
+ ],
218
+ settings: { foreground: "#383A42" }
219
+ },
220
+ { scope: ["support.class"], settings: { foreground: "#C18401" } },
221
+ { scope: ["support.type"], settings: { foreground: "#0184BC" } },
222
+ { scope: ["support.function"], settings: { foreground: "#0184BC" } },
223
+ {
224
+ scope: ["support.function.any-method"],
225
+ settings: { foreground: "#4078F2" }
226
+ },
227
+ {
228
+ scope: ["entity.name.function"],
229
+ settings: { foreground: "#4078F2" }
230
+ },
231
+ {
232
+ scope: ["entity.name.class", "entity.name.type.class"],
233
+ settings: { foreground: "#C18401" }
234
+ },
235
+ {
236
+ scope: ["entity.name.section"],
237
+ settings: { foreground: "#4078F2" }
238
+ },
239
+ {
240
+ scope: ["entity.name.tag"],
241
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
242
+ },
243
+ {
244
+ scope: ["entity.other.attribute-name"],
245
+ settings: { foreground: "#986801" }
246
+ },
247
+ {
248
+ scope: ["entity.other.attribute-name.id"],
249
+ settings: { foreground: "#4078F2" }
250
+ },
251
+ { scope: ["meta.class"], settings: { foreground: "#C18401" } },
252
+ { scope: ["meta.class.body"], settings: { foreground: "#383A42" } },
253
+ {
254
+ scope: ["meta.method-call", "meta.method"],
255
+ settings: { foreground: "#383A42" }
256
+ },
257
+ {
258
+ scope: ["meta.definition.variable"],
259
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
260
+ },
261
+ { scope: ["meta.link"], settings: { foreground: "#986801" } },
262
+ { scope: ["meta.require"], settings: { foreground: "#4078F2" } },
263
+ { scope: ["meta.selector"], settings: { foreground: "#A626A4" } },
264
+ { scope: ["meta.separator"], settings: { foreground: "#383A42" } },
265
+ { scope: ["meta.tag"], settings: { foreground: "#383A42" } },
266
+ { scope: ["underline"], settings: { "text-decoration": "underline" } },
267
+ { scope: ["none"], settings: { foreground: "#383A42" } },
268
+ {
269
+ scope: ["invalid.deprecated"],
270
+ settings: { background: "#F2A60D", foreground: "#000000" }
271
+ },
272
+ {
273
+ scope: ["invalid.illegal"],
274
+ settings: { background: "#FF1414", foreground: "white" }
275
+ },
276
+ {
277
+ scope: ["markup.bold"],
278
+ settings: { fontStyle: "bold", foreground: "#986801" }
279
+ },
280
+ { scope: ["markup.changed"], settings: { foreground: "#A626A4" } },
281
+ {
282
+ scope: ["markup.deleted"],
283
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
284
+ },
285
+ {
286
+ scope: ["markup.italic"],
287
+ settings: { fontStyle: "italic", foreground: "#A626A4" }
288
+ },
289
+ {
290
+ scope: ["markup.heading"],
291
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
292
+ },
293
+ {
294
+ scope: ["markup.heading punctuation.definition.heading"],
295
+ settings: { foreground: "#4078F2" }
296
+ },
297
+ { scope: ["markup.link"], settings: { foreground: "#0184BC" } },
298
+ { scope: ["markup.inserted"], settings: { foreground: "#50A14F" } },
299
+ { scope: ["markup.quote"], settings: { foreground: "#986801" } },
300
+ { scope: ["markup.raw"], settings: { foreground: "#50A14F" } },
301
+ {
302
+ scope: ["source.c keyword.operator"],
303
+ settings: { foreground: "#A626A4" }
304
+ },
305
+ {
306
+ scope: ["source.cpp keyword.operator"],
307
+ settings: { foreground: "#A626A4" }
308
+ },
309
+ {
310
+ scope: ["source.cs keyword.operator"],
311
+ settings: { foreground: "#A626A4" }
312
+ },
313
+ {
314
+ scope: ["source.css property-name", "source.css property-value"],
315
+ settings: { foreground: "#696C77" }
316
+ },
317
+ {
318
+ scope: [
319
+ "source.css property-name.support",
320
+ "source.css property-value.support"
321
+ ],
322
+ settings: { foreground: "#383A42" }
323
+ },
324
+ {
325
+ scope: ["source.elixir source.embedded.source"],
326
+ settings: { foreground: "#383A42" }
327
+ },
328
+ {
329
+ scope: [
330
+ "source.elixir constant.language",
331
+ "source.elixir constant.numeric",
332
+ "source.elixir constant.definition"
333
+ ],
334
+ settings: { foreground: "#4078F2" }
335
+ },
336
+ {
337
+ scope: [
338
+ "source.elixir variable.definition",
339
+ "source.elixir variable.anonymous"
340
+ ],
341
+ settings: { foreground: "#A626A4" }
342
+ },
343
+ {
344
+ scope: ["source.elixir parameter.variable.function"],
345
+ settings: { fontStyle: "italic", foreground: "#986801" }
346
+ },
347
+ {
348
+ scope: ["source.elixir quoted"],
349
+ settings: { foreground: "#50A14F" }
350
+ },
351
+ {
352
+ scope: [
353
+ "source.elixir keyword.special-method",
354
+ "source.elixir embedded.section",
355
+ "source.elixir embedded.source.empty"
356
+ ],
357
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
358
+ },
359
+ {
360
+ scope: ["source.elixir readwrite.module punctuation"],
361
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
362
+ },
363
+ {
364
+ scope: ["source.elixir regexp.section", "source.elixir regexp.string"],
365
+ settings: { foreground: "#CA1243" }
366
+ },
367
+ {
368
+ scope: ["source.elixir separator", "source.elixir keyword.operator"],
369
+ settings: { foreground: "#986801" }
370
+ },
371
+ {
372
+ scope: ["source.elixir variable.constant"],
373
+ settings: { foreground: "#C18401" }
374
+ },
375
+ {
376
+ scope: [
377
+ "source.elixir array",
378
+ "source.elixir scope",
379
+ "source.elixir section"
380
+ ],
381
+ settings: { foreground: "#696C77" }
382
+ },
383
+ {
384
+ scope: ["source.gfm markup"],
385
+ settings: { "-webkit-font-smoothing": "auto" }
386
+ },
387
+ {
388
+ scope: ["source.gfm link entity"],
389
+ settings: { foreground: "#4078F2" }
390
+ },
391
+ {
392
+ scope: ["source.go storage.type.string"],
393
+ settings: { foreground: "#A626A4" }
394
+ },
395
+ {
396
+ scope: ["source.ini keyword.other.definition.ini"],
397
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
398
+ },
399
+ {
400
+ scope: ["source.java storage.modifier.import"],
401
+ settings: { foreground: "#C18401" }
402
+ },
403
+ {
404
+ scope: ["source.java storage.type"],
405
+ settings: { foreground: "#C18401" }
406
+ },
407
+ {
408
+ scope: ["source.java keyword.operator.instanceof"],
409
+ settings: { foreground: "#A626A4" }
410
+ },
411
+ {
412
+ scope: ["source.java-properties meta.key-pair"],
413
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
414
+ },
415
+ {
416
+ scope: ["source.java-properties meta.key-pair > punctuation"],
417
+ settings: { foreground: "#383A42" }
418
+ },
419
+ {
420
+ scope: ["source.js keyword.operator"],
421
+ settings: { foreground: "#0184BC" }
422
+ },
423
+ {
424
+ scope: [
425
+ "source.js keyword.operator.delete",
426
+ "source.js keyword.operator.in",
427
+ "source.js keyword.operator.of",
428
+ "source.js keyword.operator.instanceof",
429
+ "source.js keyword.operator.new",
430
+ "source.js keyword.operator.typeof",
431
+ "source.js keyword.operator.void"
432
+ ],
433
+ settings: { foreground: "#A626A4" }
434
+ },
435
+ {
436
+ scope: ["source.ts keyword.operator"],
437
+ settings: { foreground: "#0184BC" }
438
+ },
439
+ {
440
+ scope: ["source.flow keyword.operator"],
441
+ settings: { foreground: "#0184BC" }
442
+ },
443
+ {
444
+ scope: [
445
+ "source.json meta.structure.dictionary.json > string.quoted.json"
446
+ ],
447
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
448
+ },
449
+ {
450
+ scope: [
451
+ "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string"
452
+ ],
453
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
454
+ },
455
+ {
456
+ scope: [
457
+ "source.json meta.structure.dictionary.json > value.json > string.quoted.json",
458
+ "source.json meta.structure.array.json > value.json > string.quoted.json",
459
+ "source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation",
460
+ "source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"
461
+ ],
462
+ settings: { foreground: "#50A14F" }
463
+ },
464
+ {
465
+ scope: [
466
+ "source.json meta.structure.dictionary.json > constant.language.json",
467
+ "source.json meta.structure.array.json > constant.language.json"
468
+ ],
469
+ settings: { foreground: "#0184BC" }
470
+ },
471
+ {
472
+ scope: ["ng.interpolation"],
473
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
474
+ },
475
+ {
476
+ scope: ["ng.interpolation.begin", "ng.interpolation.end"],
477
+ settings: { foreground: "#4078F2" }
478
+ },
479
+ {
480
+ scope: ["ng.interpolation function"],
481
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
482
+ },
483
+ {
484
+ scope: [
485
+ "ng.interpolation function.begin",
486
+ "ng.interpolation function.end"
487
+ ],
488
+ settings: { foreground: "#4078F2" }
489
+ },
490
+ {
491
+ scope: ["ng.interpolation bool"],
492
+ settings: { foreground: "#986801" }
493
+ },
494
+ {
495
+ scope: ["ng.interpolation bracket"],
496
+ settings: { foreground: "#383A42" }
497
+ },
498
+ {
499
+ scope: ["ng.pipe", "ng.operator"],
500
+ settings: { foreground: "#383A42" }
501
+ },
502
+ { scope: ["ng.tag"], settings: { foreground: "#0184BC" } },
503
+ {
504
+ scope: ["ng.attribute-with-value attribute-name"],
505
+ settings: { foreground: "#C18401" }
506
+ },
507
+ {
508
+ scope: ["ng.attribute-with-value string"],
509
+ settings: { foreground: "#A626A4" }
510
+ },
511
+ {
512
+ scope: [
513
+ "ng.attribute-with-value string.begin",
514
+ "ng.attribute-with-value string.end"
515
+ ],
516
+ settings: { foreground: "#383A42" }
517
+ },
518
+ {
519
+ scope: ["source.ruby constant.other.symbol > punctuation"],
520
+ settings: { foreground: "inherit" }
521
+ },
522
+ {
523
+ scope: ["source.php class.bracket"],
524
+ settings: { foreground: "#383A42" }
525
+ },
526
+ {
527
+ scope: ["source.python keyword.operator.logical.python"],
528
+ settings: { foreground: "#A626A4" }
529
+ },
530
+ {
531
+ scope: ["source.python variable.parameter"],
532
+ settings: { foreground: "#986801" }
533
+ },
534
+ { scope: "customrule", settings: { foreground: "#383A42" } },
535
+ {
536
+ scope: "support.type.property-name",
537
+ settings: { foreground: "#383A42" }
538
+ },
539
+ {
540
+ scope: "string.quoted.double punctuation",
541
+ settings: { foreground: "#50A14F" }
542
+ },
543
+ { scope: "support.constant", settings: { foreground: "#986801" } },
544
+ {
545
+ scope: "support.type.property-name.json",
546
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
547
+ },
548
+ {
549
+ scope: "support.type.property-name.json punctuation",
550
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
551
+ },
552
+ {
553
+ scope: [
554
+ "punctuation.separator.key-value.ts",
555
+ "punctuation.separator.key-value.js",
556
+ "punctuation.separator.key-value.tsx"
557
+ ],
558
+ settings: { foreground: "#0184BC" }
559
+ },
560
+ {
561
+ scope: [
562
+ "source.js.embedded.html keyword.operator",
563
+ "source.ts.embedded.html keyword.operator"
564
+ ],
565
+ settings: { foreground: "#0184BC" }
566
+ },
567
+ {
568
+ scope: [
569
+ "variable.other.readwrite.js",
570
+ "variable.other.readwrite.ts",
571
+ "variable.other.readwrite.tsx"
572
+ ],
573
+ settings: { foreground: "#383A42" }
574
+ },
575
+ {
576
+ scope: ["support.variable.dom.js", "support.variable.dom.ts"],
577
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
578
+ },
579
+ {
580
+ scope: [
581
+ "support.variable.property.dom.js",
582
+ "support.variable.property.dom.ts"
583
+ ],
584
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
585
+ },
586
+ {
587
+ scope: [
588
+ "meta.template.expression.js punctuation.definition",
589
+ "meta.template.expression.ts punctuation.definition"
590
+ ],
591
+ settings: { foreground: "#CA1243" }
592
+ },
593
+ {
594
+ scope: [
595
+ "source.ts punctuation.definition.typeparameters",
596
+ "source.js punctuation.definition.typeparameters",
597
+ "source.tsx punctuation.definition.typeparameters"
598
+ ],
599
+ settings: { foreground: "#383A42" }
600
+ },
601
+ {
602
+ scope: [
603
+ "source.ts punctuation.definition.block",
604
+ "source.js punctuation.definition.block",
605
+ "source.tsx punctuation.definition.block"
606
+ ],
607
+ settings: { foreground: "#383A42" }
608
+ },
609
+ {
610
+ scope: [
611
+ "source.ts punctuation.separator.comma",
612
+ "source.js punctuation.separator.comma",
613
+ "source.tsx punctuation.separator.comma"
614
+ ],
615
+ settings: { foreground: "#383A42" }
616
+ },
617
+ {
618
+ scope: [
619
+ "support.variable.property.js",
620
+ "support.variable.property.ts",
621
+ "support.variable.property.tsx"
622
+ ],
623
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
624
+ },
625
+ {
626
+ scope: [
627
+ "keyword.control.default.js",
628
+ "keyword.control.default.ts",
629
+ "keyword.control.default.tsx"
630
+ ],
631
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
632
+ },
633
+ {
634
+ scope: [
635
+ "keyword.operator.expression.instanceof.js",
636
+ "keyword.operator.expression.instanceof.ts",
637
+ "keyword.operator.expression.instanceof.tsx"
638
+ ],
639
+ settings: { foreground: "#A626A4" }
640
+ },
641
+ {
642
+ scope: [
643
+ "keyword.operator.expression.of.js",
644
+ "keyword.operator.expression.of.ts",
645
+ "keyword.operator.expression.of.tsx"
646
+ ],
647
+ settings: { foreground: "#A626A4" }
648
+ },
649
+ {
650
+ scope: [
651
+ "meta.brace.round.js",
652
+ "meta.array-binding-pattern-variable.js",
653
+ "meta.brace.square.js",
654
+ "meta.brace.round.ts",
655
+ "meta.array-binding-pattern-variable.ts",
656
+ "meta.brace.square.ts",
657
+ "meta.brace.round.tsx",
658
+ "meta.array-binding-pattern-variable.tsx",
659
+ "meta.brace.square.tsx"
660
+ ],
661
+ settings: { foreground: "#383A42" }
662
+ },
663
+ {
664
+ scope: [
665
+ "source.js punctuation.accessor",
666
+ "source.ts punctuation.accessor",
667
+ "source.tsx punctuation.accessor"
668
+ ],
669
+ settings: { foreground: "#383A42" }
670
+ },
671
+ {
672
+ scope: [
673
+ "punctuation.terminator.statement.js",
674
+ "punctuation.terminator.statement.ts",
675
+ "punctuation.terminator.statement.tsx"
676
+ ],
677
+ settings: { foreground: "#383A42" }
678
+ },
679
+ {
680
+ scope: [
681
+ "meta.array-binding-pattern-variable.js variable.other.readwrite.js",
682
+ "meta.array-binding-pattern-variable.ts variable.other.readwrite.ts",
683
+ "meta.array-binding-pattern-variable.tsx variable.other.readwrite.tsx"
684
+ ],
685
+ settings: { foreground: "#986801" }
686
+ },
687
+ {
688
+ scope: [
689
+ "source.js support.variable",
690
+ "source.ts support.variable",
691
+ "source.tsx support.variable"
692
+ ],
693
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
694
+ },
695
+ {
696
+ scope: [
697
+ "variable.other.constant.property.js",
698
+ "variable.other.constant.property.ts",
699
+ "variable.other.constant.property.tsx"
700
+ ],
701
+ settings: { foreground: "#986801" }
702
+ },
703
+ {
704
+ scope: [
705
+ "keyword.operator.new.ts",
706
+ "keyword.operator.new.j",
707
+ "keyword.operator.new.tsx"
708
+ ],
709
+ settings: { foreground: "#A626A4" }
710
+ },
711
+ {
712
+ scope: ["source.ts keyword.operator", "source.tsx keyword.operator"],
713
+ settings: { foreground: "#0184BC" }
714
+ },
715
+ {
716
+ scope: [
717
+ "punctuation.separator.parameter.js",
718
+ "punctuation.separator.parameter.ts",
719
+ "punctuation.separator.parameter.tsx "
720
+ ],
721
+ settings: { foreground: "#383A42" }
722
+ },
723
+ {
724
+ scope: [
725
+ "constant.language.import-export-all.js",
726
+ "constant.language.import-export-all.ts"
727
+ ],
728
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
729
+ },
730
+ {
731
+ scope: [
732
+ "constant.language.import-export-all.jsx",
733
+ "constant.language.import-export-all.tsx"
734
+ ],
735
+ settings: { foreground: "#0184BC" }
736
+ },
737
+ {
738
+ scope: [
739
+ "keyword.control.as.js",
740
+ "keyword.control.as.ts",
741
+ "keyword.control.as.jsx",
742
+ "keyword.control.as.tsx"
743
+ ],
744
+ settings: { foreground: "#383A42" }
745
+ },
746
+ {
747
+ scope: [
748
+ "variable.other.readwrite.alias.js",
749
+ "variable.other.readwrite.alias.ts",
750
+ "variable.other.readwrite.alias.jsx",
751
+ "variable.other.readwrite.alias.tsx"
752
+ ],
753
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
754
+ },
755
+ {
756
+ scope: [
757
+ "variable.other.constant.js",
758
+ "variable.other.constant.ts",
759
+ "variable.other.constant.jsx",
760
+ "variable.other.constant.tsx"
761
+ ],
762
+ settings: { foreground: "#986801" }
763
+ },
764
+ {
765
+ scope: [
766
+ "meta.export.default.js variable.other.readwrite.js",
767
+ "meta.export.default.ts variable.other.readwrite.ts"
768
+ ],
769
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
770
+ },
771
+ {
772
+ scope: [
773
+ "source.js meta.template.expression.js punctuation.accessor",
774
+ "source.ts meta.template.expression.ts punctuation.accessor",
775
+ "source.tsx meta.template.expression.tsx punctuation.accessor"
776
+ ],
777
+ settings: { foreground: "#50A14F" }
778
+ },
779
+ {
780
+ scope: [
781
+ "source.js meta.import-equals.external.js keyword.operator",
782
+ "source.jsx meta.import-equals.external.jsx keyword.operator",
783
+ "source.ts meta.import-equals.external.ts keyword.operator",
784
+ "source.tsx meta.import-equals.external.tsx keyword.operator"
785
+ ],
786
+ settings: { foreground: "#383A42" }
787
+ },
788
+ {
789
+ scope: "entity.name.type.module.js,entity.name.type.module.ts,entity.name.type.module.jsx,entity.name.type.module.tsx",
790
+ settings: { foreground: "#50A14F" }
791
+ },
792
+ {
793
+ scope: "meta.class.js,meta.class.ts,meta.class.jsx,meta.class.tsx",
794
+ settings: { foreground: "#383A42" }
795
+ },
796
+ {
797
+ scope: [
798
+ "meta.definition.property.js variable",
799
+ "meta.definition.property.ts variable",
800
+ "meta.definition.property.jsx variable",
801
+ "meta.definition.property.tsx variable"
802
+ ],
803
+ settings: { foreground: "#383A42" }
804
+ },
805
+ {
806
+ scope: [
807
+ "meta.type.parameters.js support.type",
808
+ "meta.type.parameters.jsx support.type",
809
+ "meta.type.parameters.ts support.type",
810
+ "meta.type.parameters.tsx support.type"
811
+ ],
812
+ settings: { foreground: "#383A42" }
813
+ },
814
+ {
815
+ scope: [
816
+ "source.js meta.tag.js keyword.operator",
817
+ "source.jsx meta.tag.jsx keyword.operator",
818
+ "source.ts meta.tag.ts keyword.operator",
819
+ "source.tsx meta.tag.tsx keyword.operator"
820
+ ],
821
+ settings: { foreground: "#383A42" }
822
+ },
823
+ {
824
+ scope: [
825
+ "meta.tag.js punctuation.section.embedded",
826
+ "meta.tag.jsx punctuation.section.embedded",
827
+ "meta.tag.ts punctuation.section.embedded",
828
+ "meta.tag.tsx punctuation.section.embedded"
829
+ ],
830
+ settings: { foreground: "#383A42" }
831
+ },
832
+ {
833
+ scope: [
834
+ "meta.array.literal.js variable",
835
+ "meta.array.literal.jsx variable",
836
+ "meta.array.literal.ts variable",
837
+ "meta.array.literal.tsx variable"
838
+ ],
839
+ settings: { foreground: "#C18401" }
840
+ },
841
+ {
842
+ scope: [
843
+ "support.type.object.module.js",
844
+ "support.type.object.module.jsx",
845
+ "support.type.object.module.ts",
846
+ "support.type.object.module.tsx"
847
+ ],
848
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
849
+ },
850
+ {
851
+ scope: ["constant.language.json"],
852
+ settings: { foreground: "#0184BC" }
853
+ },
854
+ {
855
+ scope: [
856
+ "variable.other.constant.object.js",
857
+ "variable.other.constant.object.jsx",
858
+ "variable.other.constant.object.ts",
859
+ "variable.other.constant.object.tsx"
860
+ ],
861
+ settings: { foreground: "#986801" }
862
+ },
863
+ {
864
+ scope: [
865
+ "storage.type.property.js",
866
+ "storage.type.property.jsx",
867
+ "storage.type.property.ts",
868
+ "storage.type.property.tsx"
869
+ ],
870
+ settings: { foreground: "#0184BC" }
871
+ },
872
+ {
873
+ scope: [
874
+ "meta.template.expression.js string.quoted punctuation.definition",
875
+ "meta.template.expression.jsx string.quoted punctuation.definition",
876
+ "meta.template.expression.ts string.quoted punctuation.definition",
877
+ "meta.template.expression.tsx string.quoted punctuation.definition"
878
+ ],
879
+ settings: { foreground: "#50A14F" }
880
+ },
881
+ {
882
+ scope: [
883
+ "meta.template.expression.js string.template punctuation.definition.string.template",
884
+ "meta.template.expression.jsx string.template punctuation.definition.string.template",
885
+ "meta.template.expression.ts string.template punctuation.definition.string.template",
886
+ "meta.template.expression.tsx string.template punctuation.definition.string.template"
887
+ ],
888
+ settings: { foreground: "#50A14F" }
889
+ },
890
+ {
891
+ scope: [
892
+ "keyword.operator.expression.in.js",
893
+ "keyword.operator.expression.in.jsx",
894
+ "keyword.operator.expression.in.ts",
895
+ "keyword.operator.expression.in.tsx"
896
+ ],
897
+ settings: { foreground: "#A626A4" }
898
+ },
899
+ {
900
+ scope: ["variable.other.object.js", "variable.other.object.ts"],
901
+ settings: { foreground: "#383A42" }
902
+ },
903
+ {
904
+ scope: ["meta.object-literal.key.js", "meta.object-literal.key.ts"],
905
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
906
+ },
907
+ {
908
+ scope: "source.python constant.other",
909
+ settings: { foreground: "#383A42" }
910
+ },
911
+ {
912
+ scope: "source.python constant",
913
+ settings: { foreground: "#986801" }
914
+ },
915
+ {
916
+ scope: "constant.character.format.placeholder.other.python storage",
917
+ settings: { foreground: "#986801" }
918
+ },
919
+ {
920
+ scope: "support.variable.magic.python",
921
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
922
+ },
923
+ {
924
+ scope: "meta.function.parameters.python",
925
+ settings: { foreground: "#986801" }
926
+ },
927
+ {
928
+ scope: "punctuation.separator.annotation.python",
929
+ settings: { foreground: "#383A42" }
930
+ },
931
+ {
932
+ scope: "punctuation.separator.parameters.python",
933
+ settings: { foreground: "#383A42" }
934
+ },
935
+ {
936
+ scope: "entity.name.variable.field.cs",
937
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
938
+ },
939
+ {
940
+ scope: "source.cs keyword.operator",
941
+ settings: { foreground: "#383A42" }
942
+ },
943
+ {
944
+ scope: "variable.other.readwrite.cs",
945
+ settings: { foreground: "#383A42" }
946
+ },
947
+ {
948
+ scope: "variable.other.object.cs",
949
+ settings: { foreground: "#383A42" }
950
+ },
951
+ {
952
+ scope: "variable.other.object.property.cs",
953
+ settings: { foreground: "#383A42" }
954
+ },
955
+ {
956
+ scope: "entity.name.variable.property.cs",
957
+ settings: { foreground: "#4078F2" }
958
+ },
959
+ { scope: "storage.type.cs", settings: { foreground: "#C18401" } },
960
+ {
961
+ scope: "keyword.other.unsafe.rust",
962
+ settings: { foreground: "#A626A4" }
963
+ },
964
+ {
965
+ scope: "entity.name.type.rust",
966
+ settings: { foreground: "#0184BC" }
967
+ },
968
+ {
969
+ scope: "storage.modifier.lifetime.rust",
970
+ settings: { foreground: "#383A42" }
971
+ },
972
+ {
973
+ scope: "entity.name.lifetime.rust",
974
+ settings: { foreground: "#986801" }
975
+ },
976
+ {
977
+ scope: "storage.type.core.rust",
978
+ settings: { foreground: "#0184BC" }
979
+ },
980
+ { scope: "meta.attribute.rust", settings: { foreground: "#986801" } },
981
+ {
982
+ scope: "storage.class.std.rust",
983
+ settings: { foreground: "#0184BC" }
984
+ },
985
+ {
986
+ scope: "markup.raw.block.markdown",
987
+ settings: { foreground: "#383A42" }
988
+ },
989
+ {
990
+ scope: "punctuation.definition.variable.shell",
991
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
992
+ },
993
+ {
994
+ scope: "support.constant.property-value.css",
995
+ settings: { foreground: "#383A42" }
996
+ },
997
+ {
998
+ scope: "punctuation.definition.constant.css",
999
+ settings: { foreground: "#986801" }
1000
+ },
1001
+ {
1002
+ scope: "punctuation.separator.key-value.scss",
1003
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1004
+ },
1005
+ {
1006
+ scope: "punctuation.definition.constant.scss",
1007
+ settings: { foreground: "#986801" }
1008
+ },
1009
+ {
1010
+ scope: "meta.property-list.scss punctuation.separator.key-value.scss",
1011
+ settings: { foreground: "#383A42" }
1012
+ },
1013
+ {
1014
+ scope: "storage.type.primitive.array.java",
1015
+ settings: { foreground: "#C18401" }
1016
+ },
1017
+ {
1018
+ scope: "entity.name.section.markdown",
1019
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1020
+ },
1021
+ {
1022
+ scope: "punctuation.definition.heading.markdown",
1023
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1024
+ },
1025
+ {
1026
+ scope: "markup.heading.setext",
1027
+ settings: { foreground: "#383A42" }
1028
+ },
1029
+ {
1030
+ scope: "punctuation.definition.bold.markdown",
1031
+ settings: { foreground: "#986801" }
1032
+ },
1033
+ {
1034
+ scope: "markup.inline.raw.markdown",
1035
+ settings: { foreground: "#50A14F" }
1036
+ },
1037
+ {
1038
+ scope: "beginning.punctuation.definition.list.markdown",
1039
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1040
+ },
1041
+ {
1042
+ scope: "markup.quote.markdown",
1043
+ settings: { fontStyle: "italic", foreground: "#A0A1A7" }
1044
+ },
1045
+ {
1046
+ scope: [
1047
+ "punctuation.definition.string.begin.markdown",
1048
+ "punctuation.definition.string.end.markdown",
1049
+ "punctuation.definition.metadata.markdown"
1050
+ ],
1051
+ settings: { foreground: "#383A42" }
1052
+ },
1053
+ {
1054
+ scope: "punctuation.definition.metadata.markdown",
1055
+ settings: { foreground: "#A626A4" }
1056
+ },
1057
+ {
1058
+ scope: [
1059
+ "markup.underline.link.markdown",
1060
+ "markup.underline.link.image.markdown"
1061
+ ],
1062
+ settings: { foreground: "#A626A4" }
1063
+ },
1064
+ {
1065
+ scope: [
1066
+ "string.other.link.title.markdown",
1067
+ "string.other.link.description.markdown"
1068
+ ],
1069
+ settings: { foreground: "#4078F2" }
1070
+ },
1071
+ {
1072
+ scope: "punctuation.separator.variable.ruby",
1073
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1074
+ },
1075
+ {
1076
+ scope: "variable.other.constant.ruby",
1077
+ settings: { foreground: "#986801" }
1078
+ },
1079
+ {
1080
+ scope: "keyword.operator.other.ruby",
1081
+ settings: { foreground: "#50A14F" }
1082
+ },
1083
+ {
1084
+ scope: "punctuation.definition.variable.php",
1085
+ settings: { foreground: "var(--Green-COZColorGreen7, #00A136)" }
1086
+ },
1087
+ { scope: "meta.class.php", settings: { foreground: "#383A42" } }
1088
+ ],
1089
+ type: "light"
1090
+ };
1091
+ var go_theme_default = Object.freeze(json);