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