@loopstack/loopstack-studio 0.21.0-rc.0 → 0.21.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 (680) hide show
  1. package/dist/components/LoadingCentered.js +28 -0
  2. package/dist/components/ai-elements/code-block.js +96 -0
  3. package/dist/components/ai-elements/message.js +87 -0
  4. package/dist/components/ai-elements/prompt-input.js +321 -0
  5. package/dist/components/ai-elements/reasoning.js +124 -0
  6. package/dist/components/ai-elements/shimmer.js +37 -0
  7. package/dist/components/ai-elements/sources.js +65 -0
  8. package/dist/components/ai-elements/tool.js +158 -0
  9. package/dist/components/content/ErrorAlert.js +17 -0
  10. package/dist/components/data-table/DataList.js +102 -102
  11. package/dist/components/data-table/DataTable.js +102 -99
  12. package/dist/components/dynamic-form/CodeContent.js +2 -2
  13. package/dist/components/dynamic-form/FormElement.js +3 -3
  14. package/dist/components/dynamic-form/FormElementHeader.js +2 -2
  15. package/dist/components/dynamic-form/ObjectController.js +2 -2
  16. package/dist/components/dynamic-form/fields/RadioField.js +3 -3
  17. package/dist/components/dynamic-form/fields/SliderField.js +13 -13
  18. package/dist/components/dynamic-form/fields/SwitchField.js +1 -1
  19. package/dist/components/dynamic-form/fields/TextareaField.js +4 -4
  20. package/dist/components/index.js +45 -0
  21. package/dist/components/layout/MainLayout.js +0 -1
  22. package/dist/components/lists/ListView.js +62 -59
  23. package/dist/components/loopstack-elements/link.js +115 -0
  24. package/dist/components/messages/CompletionMessagePaper.js +110 -0
  25. package/dist/components/snackbars/ErrorSnackbar.js +1 -1
  26. package/dist/components/ui/DiscordLogo.js +31 -0
  27. package/dist/components/ui/GoogleLogo.js +44 -0
  28. package/dist/components/ui/accordion.js +64 -0
  29. package/dist/components/ui/alert-dialog.js +91 -82
  30. package/dist/components/ui/alert.js +50 -0
  31. package/dist/components/ui/avatar.js +42 -0
  32. package/dist/components/ui/badge.js +1 -1
  33. package/dist/components/ui/breadcrumb.js +76 -56
  34. package/dist/components/ui/button-group.js +13 -0
  35. package/dist/components/ui/card.js +79 -19
  36. package/dist/components/ui/command.js +7 -0
  37. package/dist/components/ui/context-menu.js +63 -0
  38. package/dist/components/ui/dialog.js +89 -47
  39. package/dist/components/ui/drawer.js +122 -0
  40. package/dist/components/ui/dropdown-menu.js +190 -0
  41. package/dist/components/ui/hover-card.js +6 -0
  42. package/dist/components/ui/input-group.js +85 -0
  43. package/dist/components/ui/popover.js +47 -0
  44. package/dist/components/ui/scroll-area.js +50 -0
  45. package/dist/components/ui/select.js +115 -82
  46. package/dist/components/ui/separator.js +20 -0
  47. package/dist/components/ui/sheet.js +87 -57
  48. package/dist/components/ui/sidebar.js +557 -0
  49. package/dist/components/ui/skeleton.js +16 -0
  50. package/dist/components/ui/table.js +85 -61
  51. package/dist/components/ui/tabs.js +54 -0
  52. package/dist/components/ui-widgets/UiActions.js +24 -0
  53. package/dist/components/ui-widgets/UiWidget.js +43 -0
  54. package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
  55. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
  56. package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
  57. package/dist/features/code-explorer/CodeExplorer.js +69 -0
  58. package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
  59. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
  60. package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
  61. package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
  62. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
  63. package/dist/features/code-explorer/utils/fileIcons.js +42 -0
  64. package/dist/features/dashboard/Dashboard.js +125 -0
  65. package/dist/features/dashboard/RunItem.js +76 -0
  66. package/dist/features/dashboard/RunList.js +32 -0
  67. package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
  68. package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
  69. package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
  70. package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
  71. package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
  72. package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
  73. package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
  74. package/dist/features/debug/lib/edge-paths.js +47 -0
  75. package/dist/features/debug/lib/flow-utils.js +247 -0
  76. package/dist/features/health/LocalHealthCheck.js +2 -2
  77. package/dist/features/oauth/OAuthCallbackPage.js +2 -0
  78. package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
  79. package/dist/features/oauth/index.js +3 -0
  80. package/dist/features/oauth/useOAuthPopup.js +83 -0
  81. package/dist/features/workbench/NavigationItems.js +52 -0
  82. package/dist/features/workbench/Workbench.js +101 -0
  83. package/dist/features/workbench/WorkbenchNavigation.js +38 -0
  84. package/dist/features/workbench/WorkflowItem.js +67 -0
  85. package/dist/features/workbench/WorkflowList.js +110 -0
  86. package/dist/features/workbench/components/DocumentItem.js +27 -0
  87. package/dist/features/workbench/components/DocumentList.js +40 -0
  88. package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
  89. package/dist/features/workbench/components/DocumentRenderer.js +54 -0
  90. package/dist/features/workbench/components/NavigationItem.js +68 -0
  91. package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
  92. package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
  93. package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
  94. package/dist/features/workbench/components/WorkflowForms.js +22 -0
  95. package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
  96. package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
  97. package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
  98. package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
  99. package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
  100. package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
  101. package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
  102. package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
  103. package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
  104. package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
  105. package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
  106. package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
  107. package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
  108. package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
  109. package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
  110. package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
  111. package/dist/features/workbench/providers/ScrollProvider.js +22 -0
  112. package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
  113. package/dist/features/workspaces/Workspaces.js +157 -90
  114. package/dist/features/workspaces/components/CreateWorkspace.js +104 -81
  115. package/dist/features/workspaces/components/ExecutionTimeline.js +2 -2
  116. package/dist/features/workspaces/components/PipelineForm.js +2 -2
  117. package/dist/hooks/index.js +1 -0
  118. package/dist/hooks/useApi.js +1 -1
  119. package/dist/hooks/useDashboard.js +23 -0
  120. package/dist/hooks/useDocuments.js +45 -0
  121. package/dist/hooks/useFiles.js +63 -0
  122. package/dist/hooks/useNamespaceTree.js +27 -0
  123. package/dist/hooks/useNamespaces.js +34 -0
  124. package/dist/hooks/usePipelines.js +83 -6
  125. package/dist/hooks/useWorkflows.js +122 -0
  126. package/dist/hooks/useWorkspaces.js +49 -29
  127. package/dist/index.d.ts +817 -9
  128. package/dist/index.js +55 -1
  129. package/dist/lib/requireParam.js +6 -0
  130. package/dist/loopstack-studio.css +1 -1
  131. package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
  132. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
  133. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
  134. package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
  135. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
  136. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
  137. package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
  138. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
  139. package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
  140. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
  141. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
  142. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
  143. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
  144. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
  145. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
  146. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
  147. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
  148. package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
  149. package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
  150. package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
  151. package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
  152. package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
  153. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
  154. package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
  155. package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
  156. package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
  157. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
  158. package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
  159. package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
  160. package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
  161. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
  162. package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
  163. package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
  164. package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
  165. package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
  166. package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
  167. package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
  168. package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
  169. package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
  170. package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
  171. package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
  172. package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
  173. package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
  174. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
  175. package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
  176. package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
  177. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
  178. package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
  179. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
  180. package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
  181. package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
  182. package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
  183. package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
  184. package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
  185. package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
  186. package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
  187. package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
  188. package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
  189. package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
  190. package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
  191. package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
  192. package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
  193. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
  194. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
  195. package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
  196. package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
  197. package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
  198. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
  199. package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
  200. package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
  201. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
  202. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
  203. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
  204. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
  205. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
  206. package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
  207. package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
  208. package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
  209. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
  210. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
  211. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
  212. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
  213. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
  214. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
  215. package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
  216. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
  217. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
  218. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
  219. package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
  220. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
  221. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
  222. package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
  223. package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
  224. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
  225. package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
  226. package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
  227. package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
  228. package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
  229. package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
  230. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
  231. package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
  232. package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
  233. package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
  234. package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
  235. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
  236. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
  237. package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
  238. package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
  239. package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
  240. package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
  241. package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
  242. package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
  243. package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
  244. package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
  245. package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
  246. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
  247. package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
  248. package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
  249. package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
  250. package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
  251. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
  252. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
  253. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
  254. package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
  255. package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
  256. package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
  257. package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
  258. package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
  259. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
  260. package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
  261. package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
  262. package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
  263. package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
  264. package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
  265. package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
  266. package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
  267. package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
  268. package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
  269. package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
  270. package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
  271. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
  272. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
  273. package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
  274. package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
  275. package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
  276. package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
  277. package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
  278. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
  279. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
  280. package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
  281. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
  282. package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
  283. package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
  284. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
  285. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
  286. package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
  287. package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
  288. package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
  289. package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
  290. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
  291. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
  292. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
  293. package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
  294. package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
  295. package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
  296. package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
  297. package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
  298. package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
  299. package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
  300. package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
  301. package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
  302. package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
  303. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
  304. package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
  305. package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
  306. package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
  307. package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
  308. package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
  309. package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
  310. package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
  311. package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
  312. package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
  313. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
  314. package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
  315. package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
  316. package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
  317. package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
  318. package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
  319. package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
  320. package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
  321. package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
  322. package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
  323. package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
  324. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
  325. package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
  326. package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
  327. package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
  328. package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
  329. package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
  330. package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
  331. package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
  332. package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
  333. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
  334. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
  335. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
  336. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
  337. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
  338. package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
  339. package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
  340. package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
  341. package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
  342. package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
  343. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
  344. package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
  345. package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
  346. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
  347. package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
  348. package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
  349. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
  350. package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
  351. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
  352. package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
  353. package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
  354. package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
  355. package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
  356. package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
  357. package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
  358. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
  359. package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
  360. package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
  361. package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
  362. package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
  363. package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
  364. package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
  365. package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
  366. package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
  367. package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
  368. package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
  369. package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
  370. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
  371. package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
  372. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
  373. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
  374. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
  375. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
  376. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
  377. package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
  378. package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
  379. package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
  380. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
  381. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
  382. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
  383. package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
  384. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
  385. package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
  386. package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
  387. package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
  388. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
  389. package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
  390. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
  391. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
  392. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
  393. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
  394. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
  395. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
  396. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
  397. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
  398. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
  399. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
  400. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
  401. package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
  402. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
  403. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
  404. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
  405. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
  406. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
  407. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
  408. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
  409. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
  410. package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
  411. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
  412. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
  413. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
  414. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
  415. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
  416. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
  417. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
  418. package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
  419. package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
  420. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
  421. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
  422. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
  423. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
  424. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
  425. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
  426. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
  427. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
  428. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
  429. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
  430. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
  431. package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
  432. package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
  433. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
  434. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
  435. package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
  436. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
  437. package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
  438. package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
  439. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
  440. package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
  441. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
  442. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
  443. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
  444. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
  445. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
  446. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
  447. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
  448. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
  449. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
  450. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
  451. package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
  452. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
  453. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
  454. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
  455. package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
  456. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
  457. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
  458. package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
  459. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
  460. package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
  461. package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
  462. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
  463. package/dist/node_modules/ai/dist/index.js +1083 -0
  464. package/dist/node_modules/bail/index.js +4 -0
  465. package/dist/node_modules/character-entities-html4/index.js +255 -0
  466. package/dist/node_modules/character-entities-legacy/index.js +2 -0
  467. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
  468. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
  469. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
  470. package/dist/node_modules/classcat/index.js +8 -0
  471. package/dist/node_modules/comma-separated-tokens/index.js +5 -1
  472. package/dist/node_modules/d3/src/index.js +5 -0
  473. package/dist/node_modules/d3-drag/src/constant.js +2 -0
  474. package/dist/node_modules/d3-drag/src/drag.js +112 -0
  475. package/dist/node_modules/d3-drag/src/event.js +60 -0
  476. package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
  477. package/dist/node_modules/d3-drag/src/noevent.js +11 -0
  478. package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
  479. package/dist/node_modules/d3-selection/src/pointer.js +16 -0
  480. package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
  481. package/dist/node_modules/d3-zoom/src/constant.js +2 -0
  482. package/dist/node_modules/d3-zoom/src/event.js +26 -0
  483. package/dist/node_modules/d3-zoom/src/index.js +1 -1
  484. package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
  485. package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
  486. package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
  487. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
  488. package/dist/node_modules/entities/dist/esm/decode.js +129 -0
  489. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
  490. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
  491. package/dist/node_modules/extend/index.js +37 -0
  492. package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
  493. package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
  494. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
  495. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
  496. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
  497. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
  498. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
  499. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
  500. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
  501. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
  502. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
  503. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
  504. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
  505. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
  506. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
  507. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
  508. package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
  509. package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
  510. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
  511. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
  512. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
  513. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
  514. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
  515. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
  516. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
  517. package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
  518. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
  519. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
  520. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
  521. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
  522. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
  523. package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
  524. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
  525. package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
  526. package/dist/node_modules/html-void-elements/index.js +23 -0
  527. package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
  528. package/dist/node_modules/katex/dist/katex.js +717 -861
  529. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
  530. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
  531. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
  532. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
  533. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
  534. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
  535. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
  536. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
  537. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
  538. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
  539. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
  540. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
  541. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
  542. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
  543. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
  544. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
  545. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
  546. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
  547. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
  548. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
  549. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
  550. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
  551. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
  552. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
  553. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
  554. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
  555. package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
  556. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
  557. package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
  558. package/dist/node_modules/micromark/lib/constructs.js +79 -0
  559. package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
  560. package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
  561. package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
  562. package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
  563. package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
  564. package/dist/node_modules/micromark/lib/parse.js +27 -0
  565. package/dist/node_modules/micromark/lib/postprocess.js +6 -0
  566. package/dist/node_modules/micromark/lib/preprocess.js +30 -0
  567. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
  568. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
  569. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
  570. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
  571. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
  572. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
  573. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
  574. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
  575. package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
  576. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
  577. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
  578. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
  579. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
  580. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
  581. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
  582. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
  583. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
  584. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
  585. package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
  586. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
  587. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
  588. package/dist/node_modules/micromark-factory-destination/index.js +24 -0
  589. package/dist/node_modules/micromark-factory-label/index.js +18 -0
  590. package/dist/node_modules/micromark-factory-title/index.js +22 -0
  591. package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
  592. package/dist/node_modules/micromark-util-character/index.js +6 -5
  593. package/dist/node_modules/micromark-util-chunked/index.js +4 -1
  594. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
  595. package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
  596. package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
  597. package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
  598. package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
  599. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
  600. package/dist/node_modules/motion/dist/es/react.js +3 -0
  601. package/dist/node_modules/nanoid/index.browser.js +7 -0
  602. package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
  603. package/dist/node_modules/property-information/index.js +1 -0
  604. package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
  605. package/dist/node_modules/rehype-harden/dist/index.js +168 -0
  606. package/dist/node_modules/rehype-raw/lib/index.js +10 -0
  607. package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
  608. package/dist/node_modules/remark-parse/lib/index.js +14 -0
  609. package/dist/node_modules/remark-rehype/lib/index.js +16 -0
  610. package/dist/node_modules/remend/dist/index.js +459 -0
  611. package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
  612. package/dist/node_modules/shiki/dist/langs.js +1278 -0
  613. package/dist/node_modules/shiki/dist/themes.js +393 -0
  614. package/dist/node_modules/shiki/dist/wasm.js +2 -0
  615. package/dist/node_modules/space-separated-tokens/index.js +4 -1
  616. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
  617. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
  618. package/dist/node_modules/streamdown/dist/index.js +2 -0
  619. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
  620. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
  621. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
  622. package/dist/node_modules/stringify-entities/lib/core.js +21 -0
  623. package/dist/node_modules/stringify-entities/lib/index.js +6 -0
  624. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
  625. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
  626. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
  627. package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
  628. package/dist/node_modules/style-to-js/cjs/index.js +17 -0
  629. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  630. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  631. package/dist/node_modules/trim-lines/index.js +19 -0
  632. package/dist/node_modules/trough/lib/index.js +48 -0
  633. package/dist/node_modules/unified/lib/callable-instance.js +7 -0
  634. package/dist/node_modules/unified/lib/index.js +160 -0
  635. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
  636. package/dist/node_modules/unist-util-position/lib/index.js +20 -0
  637. package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
  638. package/dist/node_modules/vaul/dist/index.js +912 -0
  639. package/dist/node_modules/vfile/lib/index.js +87 -0
  640. package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
  641. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
  642. package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
  643. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
  644. package/dist/node_modules/vfile-location/lib/index.js +41 -0
  645. package/dist/node_modules/vfile-message/lib/index.js +22 -0
  646. package/dist/node_modules/zod/v3/ZodError.js +79 -0
  647. package/dist/node_modules/zod/v3/errors.js +6 -0
  648. package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
  649. package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
  650. package/dist/node_modules/zod/v3/helpers/util.js +72 -0
  651. package/dist/node_modules/zod/v3/locales/en.js +58 -0
  652. package/dist/node_modules/zod/v3/types.js +2425 -0
  653. package/dist/node_modules/zod/v4/classic/errors.js +21 -0
  654. package/dist/node_modules/zod/v4/classic/iso.js +29 -0
  655. package/dist/node_modules/zod/v4/classic/parse.js +4 -0
  656. package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
  657. package/dist/node_modules/zod/v4/core/api.js +532 -0
  658. package/dist/node_modules/zod/v4/core/checks.js +283 -0
  659. package/dist/node_modules/zod/v4/core/core.js +44 -0
  660. package/dist/node_modules/zod/v4/core/doc.js +21 -0
  661. package/dist/node_modules/zod/v4/core/errors.js +40 -0
  662. package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
  663. package/dist/node_modules/zod/v4/core/parse.js +66 -0
  664. package/dist/node_modules/zod/v4/core/regexes.js +28 -0
  665. package/dist/node_modules/zod/v4/core/registries.js +38 -0
  666. package/dist/node_modules/zod/v4/core/schemas.js +863 -0
  667. package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
  668. package/dist/node_modules/zod/v4/core/util.js +267 -0
  669. package/dist/node_modules/zod/v4/core/versions.js +6 -0
  670. package/dist/node_modules/zwitch/index.js +14 -0
  671. package/dist/pages/DashboardPage.js +58 -0
  672. package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
  673. package/dist/pages/DebugWorkflowsPage.js +130 -0
  674. package/dist/pages/EmbedWorkbenchPage.js +73 -0
  675. package/dist/pages/PipelineDebugPage.js +114 -0
  676. package/dist/pages/WorkbenchPage.js +67 -0
  677. package/dist/pages/WorkspacePage.js +1 -1
  678. package/dist/providers/ComponentOverridesProvider.js +12 -0
  679. package/dist/routing/LocalRouter.js +3 -0
  680. package/package.json +16 -16
@@ -0,0 +1,2 @@
1
+ var everforest_light_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#93b259d0\",\"activityBar.activeFocusBorder\":\"#93b259\",\"activityBar.background\":\"#fdf6e3\",\"activityBar.border\":\"#fdf6e3\",\"activityBar.dropBackground\":\"#fdf6e3\",\"activityBar.foreground\":\"#5c6a72\",\"activityBar.inactiveForeground\":\"#939f91\",\"activityBarBadge.background\":\"#93b259\",\"activityBarBadge.foreground\":\"#fdf6e3\",\"badge.background\":\"#93b259\",\"badge.foreground\":\"#fdf6e3\",\"breadcrumb.activeSelectionForeground\":\"#5c6a72\",\"breadcrumb.focusForeground\":\"#5c6a72\",\"breadcrumb.foreground\":\"#939f91\",\"button.background\":\"#93b259\",\"button.foreground\":\"#fdf6e3\",\"button.hoverBackground\":\"#93b259d0\",\"button.secondaryBackground\":\"#efebd4\",\"button.secondaryForeground\":\"#5c6a72\",\"button.secondaryHoverBackground\":\"#e6e2cc\",\"charts.blue\":\"#3a94c5\",\"charts.foreground\":\"#5c6a72\",\"charts.green\":\"#8da101\",\"charts.orange\":\"#f57d26\",\"charts.purple\":\"#df69ba\",\"charts.red\":\"#f85552\",\"charts.yellow\":\"#dfa000\",\"checkbox.background\":\"#fdf6e3\",\"checkbox.border\":\"#e0dcc7\",\"checkbox.foreground\":\"#f57d26\",\"debugConsole.errorForeground\":\"#f85552\",\"debugConsole.infoForeground\":\"#8da101\",\"debugConsole.sourceForeground\":\"#df69ba\",\"debugConsole.warningForeground\":\"#dfa000\",\"debugConsoleInputIcon.foreground\":\"#35a77c\",\"debugIcon.breakpointCurrentStackframeForeground\":\"#3a94c5\",\"debugIcon.breakpointDisabledForeground\":\"#f1706f\",\"debugIcon.breakpointForeground\":\"#f85552\",\"debugIcon.breakpointStackframeForeground\":\"#f85552\",\"debugIcon.breakpointUnverifiedForeground\":\"#879686\",\"debugIcon.continueForeground\":\"#3a94c5\",\"debugIcon.disconnectForeground\":\"#df69ba\",\"debugIcon.pauseForeground\":\"#dfa000\",\"debugIcon.restartForeground\":\"#35a77c\",\"debugIcon.startForeground\":\"#35a77c\",\"debugIcon.stepBackForeground\":\"#3a94c5\",\"debugIcon.stepIntoForeground\":\"#3a94c5\",\"debugIcon.stepOutForeground\":\"#3a94c5\",\"debugIcon.stepOverForeground\":\"#3a94c5\",\"debugIcon.stopForeground\":\"#f85552\",\"debugTokenExpression.boolean\":\"#df69ba\",\"debugTokenExpression.error\":\"#f85552\",\"debugTokenExpression.name\":\"#3a94c5\",\"debugTokenExpression.number\":\"#df69ba\",\"debugTokenExpression.string\":\"#dfa000\",\"debugTokenExpression.value\":\"#8da101\",\"debugToolBar.background\":\"#fdf6e3\",\"descriptionForeground\":\"#939f91\",\"diffEditor.diagonalFill\":\"#e0dcc7\",\"diffEditor.insertedTextBackground\":\"#6ec39830\",\"diffEditor.removedTextBackground\":\"#f1706f30\",\"dropdown.background\":\"#fdf6e3\",\"dropdown.border\":\"#e0dcc7\",\"dropdown.foreground\":\"#879686\",\"editor.background\":\"#fdf6e3\",\"editor.findMatchBackground\":\"#f3945940\",\"editor.findMatchHighlightBackground\":\"#a4bb4a40\",\"editor.findRangeHighlightBackground\":\"#e6e2cc50\",\"editor.foldBackground\":\"#e0dcc780\",\"editor.foreground\":\"#5c6a72\",\"editor.hoverHighlightBackground\":\"#e6e2cc90\",\"editor.inactiveSelectionBackground\":\"#e6e2cc50\",\"editor.lineHighlightBackground\":\"#efebd470\",\"editor.lineHighlightBorder\":\"#e0dcc700\",\"editor.rangeHighlightBackground\":\"#efebd480\",\"editor.selectionBackground\":\"#e6e2cca0\",\"editor.selectionHighlightBackground\":\"#e6e2cc50\",\"editor.snippetFinalTabstopHighlightBackground\":\"#a4bb4a40\",\"editor.snippetFinalTabstopHighlightBorder\":\"#fdf6e3\",\"editor.snippetTabstopHighlightBackground\":\"#efebd4\",\"editor.symbolHighlightBackground\":\"#6cb3c640\",\"editor.wordHighlightBackground\":\"#e6e2cc48\",\"editor.wordHighlightStrongBackground\":\"#e6e2cc90\",\"editorBracketHighlight.foreground1\":\"#f85552\",\"editorBracketHighlight.foreground2\":\"#dfa000\",\"editorBracketHighlight.foreground3\":\"#8da101\",\"editorBracketHighlight.foreground4\":\"#3a94c5\",\"editorBracketHighlight.foreground5\":\"#f57d26\",\"editorBracketHighlight.foreground6\":\"#df69ba\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#939f91\",\"editorBracketMatch.background\":\"#e0dcc7\",\"editorBracketMatch.border\":\"#fdf6e300\",\"editorCodeLens.foreground\":\"#a4ad9ea0\",\"editorCursor.foreground\":\"#5c6a72\",\"editorError.background\":\"#f1706f00\",\"editorError.foreground\":\"#f1706f\",\"editorGhostText.background\":\"#fdf6e300\",\"editorGhostText.foreground\":\"#a4ad9ea0\",\"editorGroup.border\":\"#efebd4\",\"editorGroup.dropBackground\":\"#e0dcc760\",\"editorGroupHeader.noTabsBackground\":\"#fdf6e3\",\"editorGroupHeader.tabsBackground\":\"#fdf6e3\",\"editorGutter.addedBackground\":\"#a4bb4aa0\",\"editorGutter.background\":\"#fdf6e300\",\"editorGutter.commentRangeForeground\":\"#a4ad9e\",\"editorGutter.deletedBackground\":\"#f1706fa0\",\"editorGutter.modifiedBackground\":\"#6cb3c6a0\",\"editorHint.foreground\":\"#e092be\",\"editorHoverWidget.background\":\"#f4f0d9\",\"editorHoverWidget.border\":\"#e6e2cc\",\"editorIndentGuide.activeBackground\":\"#87968650\",\"editorIndentGuide.background\":\"#87968620\",\"editorInfo.background\":\"#6cb3c600\",\"editorInfo.foreground\":\"#6cb3c6\",\"editorInlayHint.background\":\"#fdf6e300\",\"editorInlayHint.foreground\":\"#a4ad9ea0\",\"editorInlayHint.parameterBackground\":\"#fdf6e300\",\"editorInlayHint.parameterForeground\":\"#a4ad9ea0\",\"editorInlayHint.typeBackground\":\"#fdf6e300\",\"editorInlayHint.typeForeground\":\"#a4ad9ea0\",\"editorLightBulb.foreground\":\"#dfa000\",\"editorLightBulbAutoFix.foreground\":\"#35a77c\",\"editorLineNumber.activeForeground\":\"#879686e0\",\"editorLineNumber.foreground\":\"#a4ad9ea0\",\"editorLink.activeForeground\":\"#8da101\",\"editorMarkerNavigation.background\":\"#f4f0d9\",\"editorMarkerNavigationError.background\":\"#f1706f80\",\"editorMarkerNavigationInfo.background\":\"#6cb3c680\",\"editorMarkerNavigationWarning.background\":\"#e4b64980\",\"editorOverviewRuler.addedForeground\":\"#a4bb4aa0\",\"editorOverviewRuler.border\":\"#fdf6e300\",\"editorOverviewRuler.commonContentForeground\":\"#939f91\",\"editorOverviewRuler.currentContentForeground\":\"#6cb3c6\",\"editorOverviewRuler.deletedForeground\":\"#f1706fa0\",\"editorOverviewRuler.errorForeground\":\"#f85552\",\"editorOverviewRuler.findMatchForeground\":\"#6ec398\",\"editorOverviewRuler.incomingContentForeground\":\"#6ec398\",\"editorOverviewRuler.infoForeground\":\"#df69ba\",\"editorOverviewRuler.modifiedForeground\":\"#6cb3c6a0\",\"editorOverviewRuler.rangeHighlightForeground\":\"#6ec398\",\"editorOverviewRuler.selectionHighlightForeground\":\"#6ec398\",\"editorOverviewRuler.warningForeground\":\"#dfa000\",\"editorOverviewRuler.wordHighlightForeground\":\"#e0dcc7\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#e0dcc7\",\"editorRuler.foreground\":\"#e6e2cca0\",\"editorSuggestWidget.background\":\"#efebd4\",\"editorSuggestWidget.border\":\"#efebd4\",\"editorSuggestWidget.foreground\":\"#5c6a72\",\"editorSuggestWidget.highlightForeground\":\"#8da101\",\"editorSuggestWidget.selectedBackground\":\"#e6e2cc\",\"editorUnnecessaryCode.border\":\"#fdf6e3\",\"editorUnnecessaryCode.opacity\":\"#00000080\",\"editorWarning.background\":\"#e4b64900\",\"editorWarning.foreground\":\"#e4b649\",\"editorWhitespace.foreground\":\"#e6e2cc\",\"editorWidget.background\":\"#fdf6e3\",\"editorWidget.border\":\"#e0dcc7\",\"editorWidget.foreground\":\"#5c6a72\",\"errorForeground\":\"#f85552\",\"extensionBadge.remoteBackground\":\"#93b259\",\"extensionBadge.remoteForeground\":\"#fdf6e3\",\"extensionButton.prominentBackground\":\"#93b259\",\"extensionButton.prominentForeground\":\"#fdf6e3\",\"extensionButton.prominentHoverBackground\":\"#93b259d0\",\"extensionIcon.preReleaseForeground\":\"#f57d26\",\"extensionIcon.starForeground\":\"#35a77c\",\"extensionIcon.verifiedForeground\":\"#8da101\",\"focusBorder\":\"#fdf6e300\",\"foreground\":\"#879686\",\"gitDecoration.addedResourceForeground\":\"#8da101a0\",\"gitDecoration.conflictingResourceForeground\":\"#df69baa0\",\"gitDecoration.deletedResourceForeground\":\"#f85552a0\",\"gitDecoration.ignoredResourceForeground\":\"#e0dcc7\",\"gitDecoration.modifiedResourceForeground\":\"#3a94c5a0\",\"gitDecoration.stageDeletedResourceForeground\":\"#35a77ca0\",\"gitDecoration.stageModifiedResourceForeground\":\"#35a77ca0\",\"gitDecoration.submoduleResourceForeground\":\"#f57d26a0\",\"gitDecoration.untrackedResourceForeground\":\"#dfa000a0\",\"gitlens.closedPullRequestIconColor\":\"#f85552\",\"gitlens.decorations.addedForegroundColor\":\"#8da101\",\"gitlens.decorations.branchAheadForegroundColor\":\"#35a77c\",\"gitlens.decorations.branchBehindForegroundColor\":\"#f57d26\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#dfa000\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#f85552\",\"gitlens.decorations.branchUnpublishedForegroundColor\":\"#3a94c5\",\"gitlens.decorations.branchUpToDateForegroundColor\":\"#5c6a72\",\"gitlens.decorations.copiedForegroundColor\":\"#df69ba\",\"gitlens.decorations.deletedForegroundColor\":\"#f85552\",\"gitlens.decorations.ignoredForegroundColor\":\"#879686\",\"gitlens.decorations.modifiedForegroundColor\":\"#3a94c5\",\"gitlens.decorations.renamedForegroundColor\":\"#df69ba\",\"gitlens.decorations.untrackedForegroundColor\":\"#dfa000\",\"gitlens.gutterBackgroundColor\":\"#fdf6e3\",\"gitlens.gutterForegroundColor\":\"#5c6a72\",\"gitlens.gutterUncommittedForegroundColor\":\"#3a94c5\",\"gitlens.lineHighlightBackgroundColor\":\"#f4f0d9\",\"gitlens.lineHighlightOverviewRulerColor\":\"#93b259\",\"gitlens.mergedPullRequestIconColor\":\"#df69ba\",\"gitlens.openPullRequestIconColor\":\"#35a77c\",\"gitlens.trailingLineForegroundColor\":\"#939f91\",\"gitlens.unpublishedCommitIconColor\":\"#dfa000\",\"gitlens.unpulledChangesIconColor\":\"#f57d26\",\"gitlens.unpushlishedChangesIconColor\":\"#3a94c5\",\"icon.foreground\":\"#35a77c\",\"imagePreview.border\":\"#fdf6e3\",\"input.background\":\"#fdf6e300\",\"input.border\":\"#e0dcc7\",\"input.foreground\":\"#5c6a72\",\"input.placeholderForeground\":\"#a4ad9e\",\"inputOption.activeBorder\":\"#35a77c\",\"inputValidation.errorBackground\":\"#f1706f\",\"inputValidation.errorBorder\":\"#f85552\",\"inputValidation.errorForeground\":\"#5c6a72\",\"inputValidation.infoBackground\":\"#6cb3c6\",\"inputValidation.infoBorder\":\"#3a94c5\",\"inputValidation.infoForeground\":\"#5c6a72\",\"inputValidation.warningBackground\":\"#e4b649\",\"inputValidation.warningBorder\":\"#dfa000\",\"inputValidation.warningForeground\":\"#5c6a72\",\"issues.closed\":\"#f85552\",\"issues.open\":\"#35a77c\",\"keybindingLabel.background\":\"#fdf6e300\",\"keybindingLabel.border\":\"#f4f0d9\",\"keybindingLabel.bottomBorder\":\"#efebd4\",\"keybindingLabel.foreground\":\"#5c6a72\",\"keybindingTable.headerBackground\":\"#efebd4\",\"keybindingTable.rowsBackground\":\"#f4f0d9\",\"list.activeSelectionBackground\":\"#e6e2cc80\",\"list.activeSelectionForeground\":\"#5c6a72\",\"list.dropBackground\":\"#f4f0d980\",\"list.errorForeground\":\"#f85552\",\"list.focusBackground\":\"#e6e2cc80\",\"list.focusForeground\":\"#5c6a72\",\"list.highlightForeground\":\"#8da101\",\"list.hoverBackground\":\"#fdf6e300\",\"list.hoverForeground\":\"#5c6a72\",\"list.inactiveFocusBackground\":\"#e6e2cc60\",\"list.inactiveSelectionBackground\":\"#e6e2cc80\",\"list.inactiveSelectionForeground\":\"#879686\",\"list.invalidItemForeground\":\"#f1706f\",\"list.warningForeground\":\"#dfa000\",\"menu.background\":\"#fdf6e3\",\"menu.foreground\":\"#879686\",\"menu.selectionBackground\":\"#f4f0d9\",\"menu.selectionForeground\":\"#5c6a72\",\"menubar.selectionBackground\":\"#fdf6e3\",\"menubar.selectionBorder\":\"#fdf6e3\",\"merge.border\":\"#fdf6e300\",\"merge.currentContentBackground\":\"#6cb3c640\",\"merge.currentHeaderBackground\":\"#6cb3c680\",\"merge.incomingContentBackground\":\"#6ec39840\",\"merge.incomingHeaderBackground\":\"#6ec39880\",\"minimap.errorHighlight\":\"#f1706f80\",\"minimap.findMatchHighlight\":\"#6ec39860\",\"minimap.selectionHighlight\":\"#e0dcc7f0\",\"minimap.warningHighlight\":\"#e4b64980\",\"minimapGutter.addedBackground\":\"#a4bb4aa0\",\"minimapGutter.deletedBackground\":\"#f1706fa0\",\"minimapGutter.modifiedBackground\":\"#6cb3c6a0\",\"notebook.cellBorderColor\":\"#e0dcc7\",\"notebook.cellHoverBackground\":\"#fdf6e3\",\"notebook.cellStatusBarItemHoverBackground\":\"#f4f0d9\",\"notebook.cellToolbarSeparator\":\"#e0dcc7\",\"notebook.focusedCellBackground\":\"#fdf6e3\",\"notebook.focusedCellBorder\":\"#e0dcc7\",\"notebook.focusedEditorBorder\":\"#e0dcc7\",\"notebook.focusedRowBorder\":\"#e0dcc7\",\"notebook.inactiveFocusedCellBorder\":\"#e0dcc7\",\"notebook.outputContainerBackgroundColor\":\"#f4f0d9\",\"notebook.selectedCellBorder\":\"#e0dcc7\",\"notebookStatusErrorIcon.foreground\":\"#f85552\",\"notebookStatusRunningIcon.foreground\":\"#3a94c5\",\"notebookStatusSuccessIcon.foreground\":\"#8da101\",\"notificationCenterHeader.background\":\"#efebd4\",\"notificationCenterHeader.foreground\":\"#5c6a72\",\"notificationLink.foreground\":\"#8da101\",\"notifications.background\":\"#fdf6e3\",\"notifications.foreground\":\"#5c6a72\",\"notificationsErrorIcon.foreground\":\"#f85552\",\"notificationsInfoIcon.foreground\":\"#3a94c5\",\"notificationsWarningIcon.foreground\":\"#dfa000\",\"panel.background\":\"#fdf6e3\",\"panel.border\":\"#fdf6e3\",\"panelInput.border\":\"#e0dcc7\",\"panelSection.border\":\"#efebd4\",\"panelSectionHeader.background\":\"#fdf6e3\",\"panelTitle.activeBorder\":\"#93b259d0\",\"panelTitle.activeForeground\":\"#5c6a72\",\"panelTitle.inactiveForeground\":\"#939f91\",\"peekView.border\":\"#e6e2cc\",\"peekViewEditor.background\":\"#f4f0d9\",\"peekViewEditor.matchHighlightBackground\":\"#e4b64950\",\"peekViewEditorGutter.background\":\"#f4f0d9\",\"peekViewResult.background\":\"#f4f0d9\",\"peekViewResult.fileForeground\":\"#5c6a72\",\"peekViewResult.lineForeground\":\"#879686\",\"peekViewResult.matchHighlightBackground\":\"#e4b64950\",\"peekViewResult.selectionBackground\":\"#6ec39850\",\"peekViewResult.selectionForeground\":\"#5c6a72\",\"peekViewTitle.background\":\"#e6e2cc\",\"peekViewTitleDescription.foreground\":\"#5c6a72\",\"peekViewTitleLabel.foreground\":\"#8da101\",\"pickerGroup.border\":\"#93b2591a\",\"pickerGroup.foreground\":\"#5c6a72\",\"ports.iconRunningProcessForeground\":\"#f57d26\",\"problemsErrorIcon.foreground\":\"#f85552\",\"problemsInfoIcon.foreground\":\"#3a94c5\",\"problemsWarningIcon.foreground\":\"#dfa000\",\"progressBar.background\":\"#93b259\",\"quickInputTitle.background\":\"#f4f0d9\",\"rust_analyzer.inlayHints.background\":\"#fdf6e300\",\"rust_analyzer.inlayHints.foreground\":\"#a4ad9ea0\",\"rust_analyzer.syntaxTreeBorder\":\"#f85552\",\"sash.hoverBorder\":\"#e6e2cc\",\"scrollbar.shadow\":\"#3c474d20\",\"scrollbarSlider.activeBackground\":\"#879686\",\"scrollbarSlider.background\":\"#e0dcc780\",\"scrollbarSlider.hoverBackground\":\"#e0dcc7\",\"selection.background\":\"#e6e2ccc0\",\"settings.checkboxBackground\":\"#fdf6e3\",\"settings.checkboxBorder\":\"#e0dcc7\",\"settings.checkboxForeground\":\"#f57d26\",\"settings.dropdownBackground\":\"#fdf6e3\",\"settings.dropdownBorder\":\"#e0dcc7\",\"settings.dropdownForeground\":\"#35a77c\",\"settings.focusedRowBackground\":\"#f4f0d9\",\"settings.headerForeground\":\"#879686\",\"settings.modifiedItemIndicator\":\"#a4ad9e\",\"settings.numberInputBackground\":\"#fdf6e3\",\"settings.numberInputBorder\":\"#e0dcc7\",\"settings.numberInputForeground\":\"#df69ba\",\"settings.rowHoverBackground\":\"#f4f0d9\",\"settings.textInputBackground\":\"#fdf6e3\",\"settings.textInputBorder\":\"#e0dcc7\",\"settings.textInputForeground\":\"#3a94c5\",\"sideBar.background\":\"#fdf6e3\",\"sideBar.foreground\":\"#939f91\",\"sideBarSectionHeader.background\":\"#fdf6e300\",\"sideBarSectionHeader.foreground\":\"#879686\",\"sideBarTitle.foreground\":\"#879686\",\"statusBar.background\":\"#fdf6e3\",\"statusBar.border\":\"#fdf6e3\",\"statusBar.debuggingBackground\":\"#fdf6e3\",\"statusBar.debuggingForeground\":\"#f57d26\",\"statusBar.foreground\":\"#879686\",\"statusBar.noFolderBackground\":\"#fdf6e3\",\"statusBar.noFolderBorder\":\"#fdf6e3\",\"statusBar.noFolderForeground\":\"#879686\",\"statusBarItem.activeBackground\":\"#e6e2cc70\",\"statusBarItem.errorBackground\":\"#fdf6e3\",\"statusBarItem.errorForeground\":\"#f85552\",\"statusBarItem.hoverBackground\":\"#e6e2cca0\",\"statusBarItem.prominentBackground\":\"#fdf6e3\",\"statusBarItem.prominentForeground\":\"#5c6a72\",\"statusBarItem.prominentHoverBackground\":\"#e6e2cca0\",\"statusBarItem.remoteBackground\":\"#fdf6e3\",\"statusBarItem.remoteForeground\":\"#879686\",\"statusBarItem.warningBackground\":\"#fdf6e3\",\"statusBarItem.warningForeground\":\"#dfa000\",\"symbolIcon.arrayForeground\":\"#3a94c5\",\"symbolIcon.booleanForeground\":\"#df69ba\",\"symbolIcon.classForeground\":\"#dfa000\",\"symbolIcon.colorForeground\":\"#5c6a72\",\"symbolIcon.constantForeground\":\"#35a77c\",\"symbolIcon.constructorForeground\":\"#df69ba\",\"symbolIcon.enumeratorForeground\":\"#df69ba\",\"symbolIcon.enumeratorMemberForeground\":\"#35a77c\",\"symbolIcon.eventForeground\":\"#dfa000\",\"symbolIcon.fieldForeground\":\"#5c6a72\",\"symbolIcon.fileForeground\":\"#5c6a72\",\"symbolIcon.folderForeground\":\"#5c6a72\",\"symbolIcon.functionForeground\":\"#8da101\",\"symbolIcon.interfaceForeground\":\"#dfa000\",\"symbolIcon.keyForeground\":\"#8da101\",\"symbolIcon.keywordForeground\":\"#f85552\",\"symbolIcon.methodForeground\":\"#8da101\",\"symbolIcon.moduleForeground\":\"#df69ba\",\"symbolIcon.namespaceForeground\":\"#df69ba\",\"symbolIcon.nullForeground\":\"#35a77c\",\"symbolIcon.numberForeground\":\"#df69ba\",\"symbolIcon.objectForeground\":\"#df69ba\",\"symbolIcon.operatorForeground\":\"#f57d26\",\"symbolIcon.packageForeground\":\"#df69ba\",\"symbolIcon.propertyForeground\":\"#35a77c\",\"symbolIcon.referenceForeground\":\"#3a94c5\",\"symbolIcon.snippetForeground\":\"#5c6a72\",\"symbolIcon.stringForeground\":\"#8da101\",\"symbolIcon.structForeground\":\"#dfa000\",\"symbolIcon.textForeground\":\"#5c6a72\",\"symbolIcon.typeParameterForeground\":\"#35a77c\",\"symbolIcon.unitForeground\":\"#5c6a72\",\"symbolIcon.variableForeground\":\"#3a94c5\",\"tab.activeBackground\":\"#fdf6e3\",\"tab.activeBorder\":\"#93b259d0\",\"tab.activeForeground\":\"#5c6a72\",\"tab.border\":\"#fdf6e3\",\"tab.hoverBackground\":\"#fdf6e3\",\"tab.hoverForeground\":\"#5c6a72\",\"tab.inactiveBackground\":\"#fdf6e3\",\"tab.inactiveForeground\":\"#a4ad9e\",\"tab.lastPinnedBorder\":\"#93b259d0\",\"tab.unfocusedActiveBorder\":\"#939f91\",\"tab.unfocusedActiveForeground\":\"#879686\",\"tab.unfocusedHoverForeground\":\"#5c6a72\",\"tab.unfocusedInactiveForeground\":\"#a4ad9e\",\"terminal.ansiBlack\":\"#5c6a72\",\"terminal.ansiBlue\":\"#3a94c5\",\"terminal.ansiBrightBlack\":\"#5c6a72\",\"terminal.ansiBrightBlue\":\"#3a94c5\",\"terminal.ansiBrightCyan\":\"#35a77c\",\"terminal.ansiBrightGreen\":\"#8da101\",\"terminal.ansiBrightMagenta\":\"#df69ba\",\"terminal.ansiBrightRed\":\"#f85552\",\"terminal.ansiBrightWhite\":\"#f4f0d9\",\"terminal.ansiBrightYellow\":\"#dfa000\",\"terminal.ansiCyan\":\"#35a77c\",\"terminal.ansiGreen\":\"#8da101\",\"terminal.ansiMagenta\":\"#df69ba\",\"terminal.ansiRed\":\"#f85552\",\"terminal.ansiWhite\":\"#939f91\",\"terminal.ansiYellow\":\"#dfa000\",\"terminal.foreground\":\"#5c6a72\",\"terminalCursor.foreground\":\"#5c6a72\",\"testing.iconErrored\":\"#f85552\",\"testing.iconFailed\":\"#f85552\",\"testing.iconPassed\":\"#35a77c\",\"testing.iconQueued\":\"#3a94c5\",\"testing.iconSkipped\":\"#df69ba\",\"testing.iconUnset\":\"#dfa000\",\"testing.runAction\":\"#35a77c\",\"textBlockQuote.background\":\"#f4f0d9\",\"textBlockQuote.border\":\"#e6e2cc\",\"textCodeBlock.background\":\"#f4f0d9\",\"textLink.activeForeground\":\"#8da101c0\",\"textLink.foreground\":\"#8da101\",\"textPreformat.foreground\":\"#dfa000\",\"titleBar.activeBackground\":\"#fdf6e3\",\"titleBar.activeForeground\":\"#879686\",\"titleBar.border\":\"#fdf6e3\",\"titleBar.inactiveBackground\":\"#fdf6e3\",\"titleBar.inactiveForeground\":\"#a4ad9e\",\"toolbar.hoverBackground\":\"#f4f0d9\",\"tree.indentGuidesStroke\":\"#a4ad9e\",\"walkThrough.embeddedEditorBackground\":\"#f4f0d9\",\"welcomePage.buttonBackground\":\"#f4f0d9\",\"welcomePage.buttonHoverBackground\":\"#f4f0d9a0\",\"welcomePage.progress.foreground\":\"#8da101\",\"welcomePage.tileHoverBackground\":\"#f4f0d9\",\"widget.shadow\":\"#3c474d20\"},\"displayName\":\"Everforest Light\",\"name\":\"everforest-light\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"class:python\":\"#35a77c\",\"class:typescript\":\"#35a77c\",\"class:typescriptreact\":\"#35a77c\",\"enum:typescript\":\"#df69ba\",\"enum:typescriptreact\":\"#df69ba\",\"enumMember:typescript\":\"#3a94c5\",\"enumMember:typescriptreact\":\"#3a94c5\",\"interface:typescript\":\"#35a77c\",\"interface:typescriptreact\":\"#35a77c\",\"intrinsic:python\":\"#df69ba\",\"macro:rust\":\"#35a77c\",\"memberOperatorOverload\":\"#f57d26\",\"module:python\":\"#3a94c5\",\"namespace:rust\":\"#df69ba\",\"namespace:typescript\":\"#df69ba\",\"namespace:typescriptreact\":\"#df69ba\",\"operatorOverload\":\"#f57d26\",\"property.defaultLibrary:javascript\":\"#df69ba\",\"property.defaultLibrary:javascriptreact\":\"#df69ba\",\"property.defaultLibrary:typescript\":\"#df69ba\",\"property.defaultLibrary:typescriptreact\":\"#df69ba\",\"selfKeyword:rust\":\"#df69ba\",\"variable.defaultLibrary:javascript\":\"#df69ba\",\"variable.defaultLibrary:javascriptreact\":\"#df69ba\",\"variable.defaultLibrary:typescript\":\"#df69ba\",\"variable.defaultLibrary:typescriptreact\":\"#df69ba\"},\"tokenColors\":[{\"scope\":\"keyword, storage.type.function, storage.type.class, storage.type.enum, storage.type.interface, storage.type.property, keyword.operator.new, keyword.operator.expression, keyword.operator.new, keyword.operator.delete, storage.type.extends\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.other.debugger\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage, modifier, keyword.var, entity.name.tag, keyword.control.case, keyword.control.switch\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"string, punctuation.definition.string.end, punctuation.definition.string.begin, punctuation.definition.string.template.begin, punctuation.definition.string.template.end\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"constant.character.escape, punctuation.quasi.element, punctuation.definition.template-expression, punctuation.section.embedded, storage.type.format, constant.other.placeholder, constant.other.placeholder, variable.interpolation\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.function, support.function, meta.function, meta.function-call, meta.definition.method\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.control.at-rule, keyword.control.import, keyword.control.export, storage.type.namespace, punctuation.decorator, keyword.control.directive, keyword.preprocessor, punctuation.definition.preprocessor, punctuation.definition.directive, keyword.other.import, keyword.other.package, entity.name.type.namespace, entity.name.scope-resolution, keyword.other.using, keyword.package, keyword.import, keyword.map\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.label, constant.other.label\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"support.module, support.node, support.other.module, support.type.object.module, entity.name.type.module, entity.name.type.class.module, keyword.control.module\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type, support.type, entity.name.type, keyword.type\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"entity.name.type.class, support.class, entity.name.class, entity.other.inherited-class, storage.class\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.function.preprocessor\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"variable.language.this, variable.language.self, variable.language.super, keyword.other.this, variable.language.special, constant.language.null, constant.language.undefined, constant.language.nan\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"constant.language, support.constant\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"variable, support.variable, meta.definition.variable\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"variable.object.property, support.variable.property, variable.other.property, variable.other.object.property, variable.other.enummember, variable.other.member, meta.object-literal.key\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation, meta.brace, meta.delimiter, meta.bracket\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"heading.1.markdown, markup.heading.setext.1.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f85552\"}},{\"scope\":\"heading.2.markdown, markup.heading.setext.2.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f57d26\"}},{\"scope\":\"heading.3.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dfa000\"}},{\"scope\":\"heading.4.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8da101\"}},{\"scope\":\"heading.5.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#3a94c5\"}},{\"scope\":\"heading.6.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.definition.heading.markdown\",\"settings\":{\"fontStyle\":\"regular\",\"foreground\":\"#939f91\"}},{\"scope\":\"string.other.link.title.markdown, constant.other.reference.link.markdown, string.other.link.description.markdown\",\"settings\":{\"fontStyle\":\"regular\",\"foreground\":\"#df69ba\"}},{\"scope\":\"markup.underline.link.image.markdown, markup.underline.link.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#8da101\"}},{\"scope\":\"punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.italic.markdown, punctuation.definition.quote.begin.markdown, punctuation.definition.metadata.markdown, punctuation.separator.key-value.markdown, punctuation.definition.constant.markdown\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"punctuation.definition.bold.markdown\",\"settings\":{\"fontStyle\":\"regular\",\"foreground\":\"#939f91\"}},{\"scope\":\"meta.separator.markdown, punctuation.definition.constant.begin.markdown, punctuation.definition.constant.end.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#939f91\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\"}},{\"scope\":\"punctuation.definition.markdown, punctuation.definition.raw.markdown\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"fenced_code.block.language\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"markup.fenced_code.block.markdown, markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"punctuation.definition.heading.restructuredtext\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f57d26\"}},{\"scope\":\"punctuation.definition.field.restructuredtext, punctuation.separator.key-value.restructuredtext, punctuation.definition.directive.restructuredtext, punctuation.definition.constant.restructuredtext, punctuation.definition.italic.restructuredtext, punctuation.definition.table.restructuredtext\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"punctuation.definition.bold.restructuredtext\",\"settings\":{\"fontStyle\":\"regular\",\"foreground\":\"#939f91\"}},{\"scope\":\"entity.name.tag.restructuredtext, punctuation.definition.link.restructuredtext, punctuation.definition.raw.restructuredtext, punctuation.section.raw.restructuredtext\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"constant.other.footnote.link.restructuredtext\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"support.directive.restructuredtext\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"entity.name.directive.restructuredtext, markup.raw.restructuredtext, markup.raw.inner.restructuredtext, string.other.link.title.restructuredtext\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"punctuation.definition.function.latex, punctuation.definition.function.tex, punctuation.definition.keyword.latex, constant.character.newline.tex, punctuation.definition.keyword.tex\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"support.function.be.latex\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"support.function.section.latex, keyword.control.table.cell.latex, keyword.control.table.newline.latex\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"support.class.latex, variable.parameter.latex, variable.parameter.function.latex, variable.parameter.definition.label.latex, constant.other.reference.label.latex\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"keyword.control.preamble.latex\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.separator.namespace.xml\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"entity.name.tag.html, entity.name.tag.xml, entity.name.tag.localname.xml\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.other.attribute-name.html, entity.other.attribute-name.xml, entity.other.attribute-name.localname.xml\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.html, string.quoted.single.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.separator.key-value.html, punctuation.definition.string.begin.xml, punctuation.definition.string.end.xml, string.quoted.double.xml, string.quoted.single.xml, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.definition.tag.xml, meta.tag.xml, meta.tag.preprocessor.xml, meta.tag.other.html, meta.tag.block.any.html, meta.tag.inline.any.html\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"variable.language.documentroot.xml, meta.tag.sgml.doctype.xml\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"storage.type.proto\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.proto.syntax, string.quoted.single.proto.syntax, string.quoted.double.proto, string.quoted.single.proto\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.class.proto, entity.name.class.message.proto\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"punctuation.definition.entity.css, punctuation.separator.key-value.css, punctuation.terminator.rule.css, punctuation.separator.list.comma.css\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"entity.other.attribute-name.class.css\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.single.css, string.quoted.double.css, support.constant.property-value.css, meta.property-value.css, punctuation.definition.string.begin.css, punctuation.definition.string.end.css, constant.numeric.css, support.constant.font-name.css, variable.parameter.keyframe-list.css\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"support.type.vendored.property-name.css\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"entity.name.tag.css, entity.other.keyframe-offset.css, punctuation.definition.keyword.css, keyword.control.at-rule.keyframes.css, meta.selector.css\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.definition.entity.scss, punctuation.separator.key-value.scss, punctuation.terminator.rule.scss, punctuation.separator.list.comma.scss\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.control.at-rule.keyframes.scss\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"punctuation.definition.interpolation.begin.bracket.curly.scss, punctuation.definition.interpolation.end.bracket.curly.scss\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"punctuation.definition.string.begin.scss, punctuation.definition.string.end.scss, string.quoted.double.scss, string.quoted.single.scss, constant.character.css.sass, meta.property-value.scss\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.control.at-rule.include.scss, keyword.control.at-rule.use.scss, keyword.control.at-rule.mixin.scss, keyword.control.at-rule.extend.scss, keyword.control.at-rule.import.scss\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"meta.function.stylus\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"entity.name.function.stylus\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.unquoted.js\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.accessor.js, punctuation.separator.key-value.js, punctuation.separator.label.js, keyword.operator.accessor.js\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"punctuation.definition.block.tag.jsdoc\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage.type.js, storage.type.function.arrow.js\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"JSXNested\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.definition.tag.jsx, entity.other.attribute-name.jsx, punctuation.definition.tag.begin.js.jsx, punctuation.definition.tag.end.js.jsx, entity.other.attribute-name.js.jsx\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.type.module.ts\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.operator.type.annotation.ts, punctuation.accessor.ts, punctuation.separator.key-value.ts\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"punctuation.definition.tag.directive.ts, entity.other.attribute-name.directive.ts\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.type.ts, entity.name.type.interface.ts, entity.other.inherited-class.ts, entity.name.type.alias.ts, entity.name.type.class.ts, entity.name.type.enum.ts\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type.ts, storage.type.function.arrow.ts, storage.type.type.ts\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.name.type.module.ts\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.control.import.ts, keyword.control.export.ts, storage.type.namespace.ts\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.type.module.tsx\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.operator.type.annotation.tsx, punctuation.accessor.tsx, punctuation.separator.key-value.tsx\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"punctuation.definition.tag.directive.tsx, entity.other.attribute-name.directive.tsx, punctuation.definition.tag.begin.tsx, punctuation.definition.tag.end.tsx, entity.other.attribute-name.tsx\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.type.tsx, entity.name.type.interface.tsx, entity.other.inherited-class.tsx, entity.name.type.alias.tsx, entity.name.type.class.tsx, entity.name.type.enum.tsx\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.type.module.tsx\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.control.import.tsx, keyword.control.export.tsx, storage.type.namespace.tsx\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"storage.type.tsx, storage.type.function.arrow.tsx, storage.type.type.tsx, support.class.component.tsx\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"storage.type.function.coffee\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"meta.type-signature.purescript\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.other.double-colon.purescript, keyword.other.arrow.purescript, keyword.other.big-arrow.purescript\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.name.function.purescript\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.single.purescript, string.quoted.double.purescript, punctuation.definition.string.begin.purescript, punctuation.definition.string.end.purescript, string.quoted.triple.purescript, entity.name.type.purescript\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"support.other.module.purescript\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.dot.dart\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"storage.type.primitive.dart\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"support.class.dart\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"entity.name.function.dart, string.interpolated.single.dart, string.interpolated.double.dart\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"variable.language.dart\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.other.import.dart, storage.type.annotation.dart\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.other.attribute-name.class.pug\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage.type.function.pug\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.other.attribute-name.tag.pug\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.tag.pug, storage.type.import.include.pug\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"meta.function-call.c, storage.modifier.array.bracket.square.c, meta.function.definition.parameters.c\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.separator.dot-access.c, constant.character.escape.line-continuation.c\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.control.directive.include.c, punctuation.definition.directive.c, keyword.control.directive.pragma.c, keyword.control.directive.line.c, keyword.control.directive.define.c, keyword.control.directive.conditional.c, keyword.control.directive.diagnostic.error.c, keyword.control.directive.undef.c, keyword.control.directive.conditional.ifdef.c, keyword.control.directive.endif.c, keyword.control.directive.conditional.ifndef.c, keyword.control.directive.conditional.if.c, keyword.control.directive.else.c\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"punctuation.separator.pointer-access.c\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.member.c\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"meta.function-call.cpp, storage.modifier.array.bracket.square.cpp, meta.function.definition.parameters.cpp, meta.body.function.definition.cpp\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.separator.dot-access.cpp, constant.character.escape.line-continuation.cpp\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.control.directive.include.cpp, punctuation.definition.directive.cpp, keyword.control.directive.pragma.cpp, keyword.control.directive.line.cpp, keyword.control.directive.define.cpp, keyword.control.directive.conditional.cpp, keyword.control.directive.diagnostic.error.cpp, keyword.control.directive.undef.cpp, keyword.control.directive.conditional.ifdef.cpp, keyword.control.directive.endif.cpp, keyword.control.directive.conditional.ifndef.cpp, keyword.control.directive.conditional.if.cpp, keyword.control.directive.else.cpp, storage.type.namespace.definition.cpp, keyword.other.using.directive.cpp, storage.type.struct.cpp\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"punctuation.separator.pointer-access.cpp, punctuation.section.angle-brackets.begin.template.call.cpp, punctuation.section.angle-brackets.end.template.call.cpp\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.member.cpp\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.other.using.cs\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.type.cs, constant.character.escape.cs, punctuation.definition.interpolation.begin.cs, punctuation.definition.interpolation.end.cs\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.cs, string.quoted.single.cs, punctuation.definition.string.begin.cs, punctuation.definition.string.end.cs\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"variable.other.object.property.cs\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.type.namespace.cs\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"keyword.symbol.fsharp, constant.language.unit.fsharp\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.format.specifier.fsharp, entity.name.type.fsharp\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.fsharp, string.quoted.single.fsharp, punctuation.definition.string.begin.fsharp, punctuation.definition.string.end.fsharp\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.section.fsharp\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"support.function.attribute.fsharp\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.separator.java, punctuation.separator.period.java\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.other.import.java, keyword.other.package.java\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage.type.function.arrow.java, keyword.control.ternary.java\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.property.java\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"variable.language.wildcard.java, storage.modifier.import.java, storage.type.annotation.java, punctuation.definition.annotation.java, storage.modifier.package.java, entity.name.type.module.java\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"keyword.other.import.kotlin\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage.type.kotlin\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"constant.language.kotlin\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.package.kotlin, storage.type.annotation.kotlin\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.package.scala\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"constant.language.scala\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"entity.name.import.scala\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"string.quoted.double.scala, string.quoted.single.scala, punctuation.definition.string.begin.scala, punctuation.definition.string.end.scala, string.quoted.double.interpolated.scala, string.quoted.single.interpolated.scala, string.quoted.triple.scala\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.class, entity.other.inherited-class.scala\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"keyword.declaration.stable.scala, keyword.other.arrow.scala\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"keyword.other.import.scala\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.operator.navigation.groovy, meta.method.body.java, meta.definition.method.groovy, meta.definition.method.signature.java\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.separator.groovy\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.other.import.groovy, keyword.other.package.groovy, keyword.other.import.static.groovy\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"storage.type.def.groovy\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.interpolated.groovy, meta.method.groovy\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"storage.modifier.import.groovy, storage.modifier.package.groovy\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type.annotation.groovy\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"keyword.type.go\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"entity.name.package.go\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.import.go, keyword.package.go\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.type.mod.rust\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.operator.path.rust, keyword.operator.member-access.rust\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"storage.type.rust\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"support.constant.core.rust\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"meta.attribute.rust, variable.language.rust, storage.type.module.rust\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"meta.function-call.swift, support.function.any-method.swift\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"support.variable.swift\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.operator.class.php\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"storage.type.trait.php\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"constant.language.php, support.other.namespace.php\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type.modifier.access.control.public.cpp, storage.type.modifier.access.control.private.cpp\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.control.import.include.php, storage.type.php\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"meta.function-call.arguments.python\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.definition.decorator.python, punctuation.separator.period.python\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"constant.language.python\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.control.import.python, keyword.control.import.from.python\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"constant.language.lua\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.class.lua\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"meta.function.method.with-arguments.ruby\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"punctuation.separator.method.ruby\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.control.pseudo-method.ruby, storage.type.variable.ruby\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"keyword.other.special-method.ruby\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.control.module.ruby, punctuation.definition.constant.ruby\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"string.regexp.character-class.ruby,string.regexp.interpolated.ruby,punctuation.definition.character-class.ruby,string.regexp.group.ruby, punctuation.section.regexp.ruby, punctuation.definition.group.ruby\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"variable.other.constant.ruby\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.other.arrow.haskell, keyword.other.big-arrow.haskell, keyword.other.double-colon.haskell\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"storage.type.haskell\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"constant.other.haskell, string.quoted.double.haskell, string.quoted.single.haskell, punctuation.definition.string.begin.haskell, punctuation.definition.string.end.haskell\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.function.haskell\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"entity.name.namespace, meta.preprocessor.haskell\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.control.import.julia, keyword.control.export.julia\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.storage.modifier.julia\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"constant.language.julia\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"support.function.macro.julia\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"keyword.other.period.elm\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"storage.type.elm\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"keyword.other.r\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"entity.name.function.r, variable.function.r\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"constant.language.r\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.namespace.r\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.separator.module-function.erlang, punctuation.section.directive.begin.erlang\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"keyword.control.directive.erlang, keyword.control.directive.define.erlang\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"entity.name.type.class.module.erlang\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.erlang, string.quoted.single.erlang, punctuation.definition.string.begin.erlang, punctuation.definition.string.end.erlang\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.control.directive.export.erlang, keyword.control.directive.module.erlang, keyword.control.directive.import.erlang, keyword.control.directive.behaviour.erlang\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"variable.other.readwrite.module.elixir, punctuation.definition.variable.elixir\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"constant.language.elixir\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"keyword.control.module.elixir\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.type.value-signature.ocaml\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.other.ocaml\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"constant.language.variant.ocaml\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.type.sub.perl, storage.type.declare.routine.perl\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"meta.function.lisp\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"storage.type.function-type.lisp\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"keyword.constant.lisp\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.function.lisp\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"constant.keyword.clojure, support.variable.clojure, meta.definition.variable.clojure\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.global.clojure\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.function.clojure\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"meta.scope.if-block.shell, meta.scope.group.shell\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"support.function.builtin.shell, entity.name.function.shell\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.shell, string.quoted.single.shell, punctuation.definition.string.begin.shell, punctuation.definition.string.end.shell, string.unquoted.heredoc.shell\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.control.heredoc-token.shell, variable.other.normal.shell, punctuation.definition.variable.shell, variable.other.special.shell, variable.other.positional.shell, variable.other.bracket.shell\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"support.function.builtin.fish\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"support.function.unix.fish\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.normal.fish, punctuation.definition.variable.fish, variable.other.fixed.fish, variable.other.special.fish\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"string.quoted.double.fish, punctuation.definition.string.end.fish, punctuation.definition.string.begin.fish, string.quoted.single.fish\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"constant.character.escape.single.fish\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.definition.variable.powershell\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"entity.name.function.powershell, support.function.attribute.powershell, support.function.powershell\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.single.powershell, string.quoted.double.powershell, punctuation.definition.string.begin.powershell, punctuation.definition.string.end.powershell, string.quoted.double.heredoc.powershell\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"variable.other.member.powershell\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"string.unquoted.alias.graphql\",\"settings\":{\"foreground\":\"#5c6a72\"}},{\"scope\":\"keyword.type.graphql\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"entity.name.fragment.graphql\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.function.target.makefile\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"variable.other.makefile\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"meta.scope.prerequisites.makefile\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"string.source.cmake\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.source.cmake\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"storage.source.cmake\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.definition.map.viml\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"storage.type.map.viml\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"constant.character.map.viml, constant.character.map.key.viml\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"constant.character.map.special.viml\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"constant.language.tmux, constant.numeric.tmux\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"entity.name.function.package-manager.dockerfile\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"keyword.operator.flag.dockerfile\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.double.dockerfile, string.quoted.single.dockerfile\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"constant.character.escape.dockerfile\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"entity.name.type.base-image.dockerfile, entity.name.image.dockerfile\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"punctuation.definition.separator.diff\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"markup.deleted.diff, punctuation.definition.deleted.diff\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"meta.diff.range.context, punctuation.definition.range.diff\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"meta.diff.header.from-file\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"markup.inserted.diff, punctuation.definition.inserted.diff\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"markup.changed.diff, punctuation.definition.changed.diff\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"punctuation.definition.from-file.diff\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"entity.name.section.group-title.ini, punctuation.definition.entity.ini\",\"settings\":{\"foreground\":\"#f85552\"}},{\"scope\":\"punctuation.separator.key-value.ini\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"string.quoted.double.ini, string.quoted.single.ini, punctuation.definition.string.begin.ini, punctuation.definition.string.end.ini\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"support.function.aggregate.sql\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"string.quoted.single.sql, punctuation.definition.string.end.sql, punctuation.definition.string.begin.sql, string.quoted.double.sql\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"support.type.graphql\",\"settings\":{\"foreground\":\"#dfa000\"}},{\"scope\":\"variable.parameter.graphql\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"constant.character.enum.graphql\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"punctuation.support.type.property-name.begin.json, punctuation.support.type.property-name.end.json, punctuation.separator.dictionary.key-value.json, punctuation.definition.string.begin.json, punctuation.definition.string.end.json, punctuation.separator.dictionary.pair.json, punctuation.separator.array.json\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"punctuation.separator.key-value.mapping.yaml\",\"settings\":{\"foreground\":\"#939f91\"}},{\"scope\":\"string.unquoted.plain.out.yaml, string.quoted.single.yaml, string.quoted.double.yaml, punctuation.definition.string.begin.yaml, punctuation.definition.string.end.yaml, string.unquoted.plain.in.yaml, string.unquoted.block.yaml\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"punctuation.definition.anchor.yaml, punctuation.definition.block.sequence.item.yaml\",\"settings\":{\"foreground\":\"#35a77c\"}},{\"scope\":\"keyword.key.toml\",\"settings\":{\"foreground\":\"#f57d26\"}},{\"scope\":\"string.quoted.single.basic.line.toml, string.quoted.single.literal.line.toml, punctuation.definition.keyValuePair.toml\",\"settings\":{\"foreground\":\"#8da101\"}},{\"scope\":\"constant.other.boolean.toml\",\"settings\":{\"foreground\":\"#3a94c5\"}},{\"scope\":\"entity.other.attribute-name.table.toml, punctuation.definition.table.toml, entity.other.attribute-name.table.array.toml, punctuation.definition.table.array.toml\",\"settings\":{\"foreground\":\"#df69ba\"}},{\"scope\":\"comment, string.comment, punctuation.definition.comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#939f91\"}}],\"type\":\"light\"}"));
2
+ export { everforest_light_default as default };
@@ -0,0 +1,2 @@
1
+ var github_dark_default_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#f78166\",\"activityBar.background\":\"#0d1117\",\"activityBar.border\":\"#30363d\",\"activityBar.foreground\":\"#e6edf3\",\"activityBar.inactiveForeground\":\"#7d8590\",\"activityBarBadge.background\":\"#1f6feb\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#1f6feb\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#7d8590\",\"breadcrumb.focusForeground\":\"#e6edf3\",\"breadcrumb.foreground\":\"#7d8590\",\"breadcrumbPicker.background\":\"#161b22\",\"button.background\":\"#238636\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#2ea043\",\"button.secondaryBackground\":\"#282e33\",\"button.secondaryForeground\":\"#c9d1d9\",\"button.secondaryHoverBackground\":\"#30363d\",\"checkbox.background\":\"#161b22\",\"checkbox.border\":\"#30363d\",\"debugConsole.errorForeground\":\"#ffa198\",\"debugConsole.infoForeground\":\"#8b949e\",\"debugConsole.sourceForeground\":\"#e3b341\",\"debugConsole.warningForeground\":\"#d29922\",\"debugConsoleInputIcon.foreground\":\"#bc8cff\",\"debugIcon.breakpointForeground\":\"#f85149\",\"debugTokenExpression.boolean\":\"#56d364\",\"debugTokenExpression.error\":\"#ffa198\",\"debugTokenExpression.name\":\"#79c0ff\",\"debugTokenExpression.number\":\"#56d364\",\"debugTokenExpression.string\":\"#a5d6ff\",\"debugTokenExpression.value\":\"#a5d6ff\",\"debugToolBar.background\":\"#161b22\",\"descriptionForeground\":\"#7d8590\",\"diffEditor.insertedLineBackground\":\"#23863626\",\"diffEditor.insertedTextBackground\":\"#3fb9504d\",\"diffEditor.removedLineBackground\":\"#da363326\",\"diffEditor.removedTextBackground\":\"#ff7b724d\",\"dropdown.background\":\"#161b22\",\"dropdown.border\":\"#30363d\",\"dropdown.foreground\":\"#e6edf3\",\"dropdown.listBackground\":\"#161b22\",\"editor.background\":\"#0d1117\",\"editor.findMatchBackground\":\"#9e6a03\",\"editor.findMatchHighlightBackground\":\"#f2cc6080\",\"editor.focusedStackFrameHighlightBackground\":\"#2ea04366\",\"editor.foldBackground\":\"#6e76811a\",\"editor.foreground\":\"#e6edf3\",\"editor.lineHighlightBackground\":\"#6e76811a\",\"editor.linkedEditingBackground\":\"#2f81f712\",\"editor.selectionHighlightBackground\":\"#3fb95040\",\"editor.stackFrameHighlightBackground\":\"#bb800966\",\"editor.wordHighlightBackground\":\"#6e768180\",\"editor.wordHighlightBorder\":\"#6e768199\",\"editor.wordHighlightStrongBackground\":\"#6e76814d\",\"editor.wordHighlightStrongBorder\":\"#6e768199\",\"editorBracketHighlight.foreground1\":\"#79c0ff\",\"editorBracketHighlight.foreground2\":\"#56d364\",\"editorBracketHighlight.foreground3\":\"#e3b341\",\"editorBracketHighlight.foreground4\":\"#ffa198\",\"editorBracketHighlight.foreground5\":\"#ff9bce\",\"editorBracketHighlight.foreground6\":\"#d2a8ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#7d8590\",\"editorBracketMatch.background\":\"#3fb95040\",\"editorBracketMatch.border\":\"#3fb95099\",\"editorCursor.foreground\":\"#2f81f7\",\"editorGroup.border\":\"#30363d\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#30363d\",\"editorGutter.addedBackground\":\"#2ea04366\",\"editorGutter.deletedBackground\":\"#f8514966\",\"editorGutter.modifiedBackground\":\"#bb800966\",\"editorIndentGuide.activeBackground\":\"#e6edf33d\",\"editorIndentGuide.background\":\"#e6edf31f\",\"editorInlayHint.background\":\"#8b949e33\",\"editorInlayHint.foreground\":\"#7d8590\",\"editorInlayHint.paramBackground\":\"#8b949e33\",\"editorInlayHint.paramForeground\":\"#7d8590\",\"editorInlayHint.typeBackground\":\"#8b949e33\",\"editorInlayHint.typeForeground\":\"#7d8590\",\"editorLineNumber.activeForeground\":\"#e6edf3\",\"editorLineNumber.foreground\":\"#6e7681\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#484f58\",\"editorWidget.background\":\"#161b22\",\"errorForeground\":\"#f85149\",\"focusBorder\":\"#1f6feb\",\"foreground\":\"#e6edf3\",\"gitDecoration.addedResourceForeground\":\"#3fb950\",\"gitDecoration.conflictingResourceForeground\":\"#db6d28\",\"gitDecoration.deletedResourceForeground\":\"#f85149\",\"gitDecoration.ignoredResourceForeground\":\"#6e7681\",\"gitDecoration.modifiedResourceForeground\":\"#d29922\",\"gitDecoration.submoduleResourceForeground\":\"#7d8590\",\"gitDecoration.untrackedResourceForeground\":\"#3fb950\",\"icon.foreground\":\"#7d8590\",\"input.background\":\"#0d1117\",\"input.border\":\"#30363d\",\"input.foreground\":\"#e6edf3\",\"input.placeholderForeground\":\"#6e7681\",\"keybindingLabel.foreground\":\"#e6edf3\",\"list.activeSelectionBackground\":\"#6e768166\",\"list.activeSelectionForeground\":\"#e6edf3\",\"list.focusBackground\":\"#388bfd26\",\"list.focusForeground\":\"#e6edf3\",\"list.highlightForeground\":\"#2f81f7\",\"list.hoverBackground\":\"#6e76811a\",\"list.hoverForeground\":\"#e6edf3\",\"list.inactiveFocusBackground\":\"#388bfd26\",\"list.inactiveSelectionBackground\":\"#6e768166\",\"list.inactiveSelectionForeground\":\"#e6edf3\",\"minimapSlider.activeBackground\":\"#8b949e47\",\"minimapSlider.background\":\"#8b949e33\",\"minimapSlider.hoverBackground\":\"#8b949e3d\",\"notificationCenterHeader.background\":\"#161b22\",\"notificationCenterHeader.foreground\":\"#7d8590\",\"notifications.background\":\"#161b22\",\"notifications.border\":\"#30363d\",\"notifications.foreground\":\"#e6edf3\",\"notificationsErrorIcon.foreground\":\"#f85149\",\"notificationsInfoIcon.foreground\":\"#2f81f7\",\"notificationsWarningIcon.foreground\":\"#d29922\",\"panel.background\":\"#010409\",\"panel.border\":\"#30363d\",\"panelInput.border\":\"#30363d\",\"panelTitle.activeBorder\":\"#f78166\",\"panelTitle.activeForeground\":\"#e6edf3\",\"panelTitle.inactiveForeground\":\"#7d8590\",\"peekViewEditor.background\":\"#6e76811a\",\"peekViewEditor.matchHighlightBackground\":\"#bb800966\",\"peekViewResult.background\":\"#0d1117\",\"peekViewResult.matchHighlightBackground\":\"#bb800966\",\"pickerGroup.border\":\"#30363d\",\"pickerGroup.foreground\":\"#7d8590\",\"progressBar.background\":\"#1f6feb\",\"quickInput.background\":\"#161b22\",\"quickInput.foreground\":\"#e6edf3\",\"scrollbar.shadow\":\"#484f5833\",\"scrollbarSlider.activeBackground\":\"#8b949e47\",\"scrollbarSlider.background\":\"#8b949e33\",\"scrollbarSlider.hoverBackground\":\"#8b949e3d\",\"settings.headerForeground\":\"#e6edf3\",\"settings.modifiedItemIndicator\":\"#bb800966\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#30363d\",\"sideBar.foreground\":\"#e6edf3\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#30363d\",\"sideBarSectionHeader.foreground\":\"#e6edf3\",\"sideBarTitle.foreground\":\"#e6edf3\",\"statusBar.background\":\"#0d1117\",\"statusBar.border\":\"#30363d\",\"statusBar.debuggingBackground\":\"#da3633\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#1f6feb80\",\"statusBar.foreground\":\"#7d8590\",\"statusBar.noFolderBackground\":\"#0d1117\",\"statusBarItem.activeBackground\":\"#e6edf31f\",\"statusBarItem.focusBorder\":\"#1f6feb\",\"statusBarItem.hoverBackground\":\"#e6edf314\",\"statusBarItem.prominentBackground\":\"#6e768166\",\"statusBarItem.remoteBackground\":\"#30363d\",\"statusBarItem.remoteForeground\":\"#e6edf3\",\"symbolIcon.arrayForeground\":\"#f0883e\",\"symbolIcon.booleanForeground\":\"#58a6ff\",\"symbolIcon.classForeground\":\"#f0883e\",\"symbolIcon.colorForeground\":\"#79c0ff\",\"symbolIcon.constantForeground\":[\"#aff5b4\",\"#7ee787\",\"#56d364\",\"#3fb950\",\"#2ea043\",\"#238636\",\"#196c2e\",\"#0f5323\",\"#033a16\",\"#04260f\"],\"symbolIcon.constructorForeground\":\"#d2a8ff\",\"symbolIcon.enumeratorForeground\":\"#f0883e\",\"symbolIcon.enumeratorMemberForeground\":\"#58a6ff\",\"symbolIcon.eventForeground\":\"#6e7681\",\"symbolIcon.fieldForeground\":\"#f0883e\",\"symbolIcon.fileForeground\":\"#d29922\",\"symbolIcon.folderForeground\":\"#d29922\",\"symbolIcon.functionForeground\":\"#bc8cff\",\"symbolIcon.interfaceForeground\":\"#f0883e\",\"symbolIcon.keyForeground\":\"#58a6ff\",\"symbolIcon.keywordForeground\":\"#ff7b72\",\"symbolIcon.methodForeground\":\"#bc8cff\",\"symbolIcon.moduleForeground\":\"#ff7b72\",\"symbolIcon.namespaceForeground\":\"#ff7b72\",\"symbolIcon.nullForeground\":\"#58a6ff\",\"symbolIcon.numberForeground\":\"#3fb950\",\"symbolIcon.objectForeground\":\"#f0883e\",\"symbolIcon.operatorForeground\":\"#79c0ff\",\"symbolIcon.packageForeground\":\"#f0883e\",\"symbolIcon.propertyForeground\":\"#f0883e\",\"symbolIcon.referenceForeground\":\"#58a6ff\",\"symbolIcon.snippetForeground\":\"#58a6ff\",\"symbolIcon.stringForeground\":\"#79c0ff\",\"symbolIcon.structForeground\":\"#f0883e\",\"symbolIcon.textForeground\":\"#79c0ff\",\"symbolIcon.typeParameterForeground\":\"#79c0ff\",\"symbolIcon.unitForeground\":\"#58a6ff\",\"symbolIcon.variableForeground\":\"#f0883e\",\"tab.activeBackground\":\"#0d1117\",\"tab.activeBorder\":\"#0d1117\",\"tab.activeBorderTop\":\"#f78166\",\"tab.activeForeground\":\"#e6edf3\",\"tab.border\":\"#30363d\",\"tab.hoverBackground\":\"#0d1117\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#7d8590\",\"tab.unfocusedActiveBorder\":\"#0d1117\",\"tab.unfocusedActiveBorderTop\":\"#30363d\",\"tab.unfocusedHoverBackground\":\"#6e76811a\",\"terminal.ansiBlack\":\"#484f58\",\"terminal.ansiBlue\":\"#58a6ff\",\"terminal.ansiBrightBlack\":\"#6e7681\",\"terminal.ansiBrightBlue\":\"#79c0ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#56d364\",\"terminal.ansiBrightMagenta\":\"#d2a8ff\",\"terminal.ansiBrightRed\":\"#ffa198\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#e3b341\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#3fb950\",\"terminal.ansiMagenta\":\"#bc8cff\",\"terminal.ansiRed\":\"#ff7b72\",\"terminal.ansiWhite\":\"#b1bac4\",\"terminal.ansiYellow\":\"#d29922\",\"terminal.foreground\":\"#e6edf3\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#30363d\",\"textCodeBlock.background\":\"#6e768166\",\"textLink.activeForeground\":\"#2f81f7\",\"textLink.foreground\":\"#2f81f7\",\"textPreformat.background\":\"#6e768166\",\"textPreformat.foreground\":\"#7d8590\",\"textSeparator.foreground\":\"#21262d\",\"titleBar.activeBackground\":\"#0d1117\",\"titleBar.activeForeground\":\"#7d8590\",\"titleBar.border\":\"#30363d\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#7d8590\",\"tree.indentGuidesStroke\":\"#21262d\",\"welcomePage.buttonBackground\":\"#21262d\",\"welcomePage.buttonHoverBackground\":\"#30363d\"},\"displayName\":\"GitHub Dark Default\",\"name\":\"github-dark-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#d2a8ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#e6edf3\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffa198\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff7b72\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f0f6fc\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#a5d6ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7ee787\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#7ee787\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#e6edf3\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#e6edf3\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#490202\",\"foreground\":\"#ffa198\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff7b72\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#04260f\",\"foreground\":\"#7ee787\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#5a1e02\",\"foreground\":\"#ffa657\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79c0ff\",\"foreground\":\"#161b22\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d2a8ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79c0ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79c0ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#8b949e\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffa198\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#a5d6ff\"}}],\"type\":\"dark\"}"));
2
+ export { github_dark_default_default as default };
@@ -0,0 +1,2 @@
1
+ var github_dark_dimmed_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ec775c\",\"activityBar.background\":\"#22272e\",\"activityBar.border\":\"#444c56\",\"activityBar.foreground\":\"#adbac7\",\"activityBar.inactiveForeground\":\"#768390\",\"activityBarBadge.background\":\"#316dca\",\"activityBarBadge.foreground\":\"#cdd9e5\",\"badge.background\":\"#316dca\",\"badge.foreground\":\"#cdd9e5\",\"breadcrumb.activeSelectionForeground\":\"#768390\",\"breadcrumb.focusForeground\":\"#adbac7\",\"breadcrumb.foreground\":\"#768390\",\"breadcrumbPicker.background\":\"#2d333b\",\"button.background\":\"#347d39\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#46954a\",\"button.secondaryBackground\":\"#3d444d\",\"button.secondaryForeground\":\"#adbac7\",\"button.secondaryHoverBackground\":\"#444c56\",\"checkbox.background\":\"#2d333b\",\"checkbox.border\":\"#444c56\",\"debugConsole.errorForeground\":\"#ff938a\",\"debugConsole.infoForeground\":\"#768390\",\"debugConsole.sourceForeground\":\"#daaa3f\",\"debugConsole.warningForeground\":\"#c69026\",\"debugConsoleInputIcon.foreground\":\"#b083f0\",\"debugIcon.breakpointForeground\":\"#e5534b\",\"debugTokenExpression.boolean\":\"#6bc46d\",\"debugTokenExpression.error\":\"#ff938a\",\"debugTokenExpression.name\":\"#6cb6ff\",\"debugTokenExpression.number\":\"#6bc46d\",\"debugTokenExpression.string\":\"#96d0ff\",\"debugTokenExpression.value\":\"#96d0ff\",\"debugToolBar.background\":\"#2d333b\",\"descriptionForeground\":\"#768390\",\"diffEditor.insertedLineBackground\":\"#347d3926\",\"diffEditor.insertedTextBackground\":\"#57ab5a4d\",\"diffEditor.removedLineBackground\":\"#c93c3726\",\"diffEditor.removedTextBackground\":\"#f470674d\",\"dropdown.background\":\"#2d333b\",\"dropdown.border\":\"#444c56\",\"dropdown.foreground\":\"#adbac7\",\"dropdown.listBackground\":\"#2d333b\",\"editor.background\":\"#22272e\",\"editor.findMatchBackground\":\"#966600\",\"editor.findMatchHighlightBackground\":\"#eac55f80\",\"editor.focusedStackFrameHighlightBackground\":\"#46954a66\",\"editor.foldBackground\":\"#636e7b1a\",\"editor.foreground\":\"#adbac7\",\"editor.lineHighlightBackground\":\"#636e7b1a\",\"editor.linkedEditingBackground\":\"#539bf512\",\"editor.selectionHighlightBackground\":\"#57ab5a40\",\"editor.stackFrameHighlightBackground\":\"#ae7c1466\",\"editor.wordHighlightBackground\":\"#636e7b80\",\"editor.wordHighlightBorder\":\"#636e7b99\",\"editor.wordHighlightStrongBackground\":\"#636e7b4d\",\"editor.wordHighlightStrongBorder\":\"#636e7b99\",\"editorBracketHighlight.foreground1\":\"#6cb6ff\",\"editorBracketHighlight.foreground2\":\"#6bc46d\",\"editorBracketHighlight.foreground3\":\"#daaa3f\",\"editorBracketHighlight.foreground4\":\"#ff938a\",\"editorBracketHighlight.foreground5\":\"#fc8dc7\",\"editorBracketHighlight.foreground6\":\"#dcbdfb\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#768390\",\"editorBracketMatch.background\":\"#57ab5a40\",\"editorBracketMatch.border\":\"#57ab5a99\",\"editorCursor.foreground\":\"#539bf5\",\"editorGroup.border\":\"#444c56\",\"editorGroupHeader.tabsBackground\":\"#1c2128\",\"editorGroupHeader.tabsBorder\":\"#444c56\",\"editorGutter.addedBackground\":\"#46954a66\",\"editorGutter.deletedBackground\":\"#e5534b66\",\"editorGutter.modifiedBackground\":\"#ae7c1466\",\"editorIndentGuide.activeBackground\":\"#adbac73d\",\"editorIndentGuide.background\":\"#adbac71f\",\"editorInlayHint.background\":\"#76839033\",\"editorInlayHint.foreground\":\"#768390\",\"editorInlayHint.paramBackground\":\"#76839033\",\"editorInlayHint.paramForeground\":\"#768390\",\"editorInlayHint.typeBackground\":\"#76839033\",\"editorInlayHint.typeForeground\":\"#768390\",\"editorLineNumber.activeForeground\":\"#adbac7\",\"editorLineNumber.foreground\":\"#636e7b\",\"editorOverviewRuler.border\":\"#1c2128\",\"editorWhitespace.foreground\":\"#545d68\",\"editorWidget.background\":\"#2d333b\",\"errorForeground\":\"#e5534b\",\"focusBorder\":\"#316dca\",\"foreground\":\"#adbac7\",\"gitDecoration.addedResourceForeground\":\"#57ab5a\",\"gitDecoration.conflictingResourceForeground\":\"#cc6b2c\",\"gitDecoration.deletedResourceForeground\":\"#e5534b\",\"gitDecoration.ignoredResourceForeground\":\"#636e7b\",\"gitDecoration.modifiedResourceForeground\":\"#c69026\",\"gitDecoration.submoduleResourceForeground\":\"#768390\",\"gitDecoration.untrackedResourceForeground\":\"#57ab5a\",\"icon.foreground\":\"#768390\",\"input.background\":\"#22272e\",\"input.border\":\"#444c56\",\"input.foreground\":\"#adbac7\",\"input.placeholderForeground\":\"#636e7b\",\"keybindingLabel.foreground\":\"#adbac7\",\"list.activeSelectionBackground\":\"#636e7b66\",\"list.activeSelectionForeground\":\"#adbac7\",\"list.focusBackground\":\"#4184e426\",\"list.focusForeground\":\"#adbac7\",\"list.highlightForeground\":\"#539bf5\",\"list.hoverBackground\":\"#636e7b1a\",\"list.hoverForeground\":\"#adbac7\",\"list.inactiveFocusBackground\":\"#4184e426\",\"list.inactiveSelectionBackground\":\"#636e7b66\",\"list.inactiveSelectionForeground\":\"#adbac7\",\"minimapSlider.activeBackground\":\"#76839047\",\"minimapSlider.background\":\"#76839033\",\"minimapSlider.hoverBackground\":\"#7683903d\",\"notificationCenterHeader.background\":\"#2d333b\",\"notificationCenterHeader.foreground\":\"#768390\",\"notifications.background\":\"#2d333b\",\"notifications.border\":\"#444c56\",\"notifications.foreground\":\"#adbac7\",\"notificationsErrorIcon.foreground\":\"#e5534b\",\"notificationsInfoIcon.foreground\":\"#539bf5\",\"notificationsWarningIcon.foreground\":\"#c69026\",\"panel.background\":\"#1c2128\",\"panel.border\":\"#444c56\",\"panelInput.border\":\"#444c56\",\"panelTitle.activeBorder\":\"#ec775c\",\"panelTitle.activeForeground\":\"#adbac7\",\"panelTitle.inactiveForeground\":\"#768390\",\"peekViewEditor.background\":\"#636e7b1a\",\"peekViewEditor.matchHighlightBackground\":\"#ae7c1466\",\"peekViewResult.background\":\"#22272e\",\"peekViewResult.matchHighlightBackground\":\"#ae7c1466\",\"pickerGroup.border\":\"#444c56\",\"pickerGroup.foreground\":\"#768390\",\"progressBar.background\":\"#316dca\",\"quickInput.background\":\"#2d333b\",\"quickInput.foreground\":\"#adbac7\",\"scrollbar.shadow\":\"#545d6833\",\"scrollbarSlider.activeBackground\":\"#76839047\",\"scrollbarSlider.background\":\"#76839033\",\"scrollbarSlider.hoverBackground\":\"#7683903d\",\"settings.headerForeground\":\"#adbac7\",\"settings.modifiedItemIndicator\":\"#ae7c1466\",\"sideBar.background\":\"#1c2128\",\"sideBar.border\":\"#444c56\",\"sideBar.foreground\":\"#adbac7\",\"sideBarSectionHeader.background\":\"#1c2128\",\"sideBarSectionHeader.border\":\"#444c56\",\"sideBarSectionHeader.foreground\":\"#adbac7\",\"sideBarTitle.foreground\":\"#adbac7\",\"statusBar.background\":\"#22272e\",\"statusBar.border\":\"#444c56\",\"statusBar.debuggingBackground\":\"#c93c37\",\"statusBar.debuggingForeground\":\"#cdd9e5\",\"statusBar.focusBorder\":\"#316dca80\",\"statusBar.foreground\":\"#768390\",\"statusBar.noFolderBackground\":\"#22272e\",\"statusBarItem.activeBackground\":\"#adbac71f\",\"statusBarItem.focusBorder\":\"#316dca\",\"statusBarItem.hoverBackground\":\"#adbac714\",\"statusBarItem.prominentBackground\":\"#636e7b66\",\"statusBarItem.remoteBackground\":\"#444c56\",\"statusBarItem.remoteForeground\":\"#adbac7\",\"symbolIcon.arrayForeground\":\"#e0823d\",\"symbolIcon.booleanForeground\":\"#539bf5\",\"symbolIcon.classForeground\":\"#e0823d\",\"symbolIcon.colorForeground\":\"#6cb6ff\",\"symbolIcon.constantForeground\":[\"#b4f1b4\",\"#8ddb8c\",\"#6bc46d\",\"#57ab5a\",\"#46954a\",\"#347d39\",\"#2b6a30\",\"#245829\",\"#1b4721\",\"#113417\"],\"symbolIcon.constructorForeground\":\"#dcbdfb\",\"symbolIcon.enumeratorForeground\":\"#e0823d\",\"symbolIcon.enumeratorMemberForeground\":\"#539bf5\",\"symbolIcon.eventForeground\":\"#636e7b\",\"symbolIcon.fieldForeground\":\"#e0823d\",\"symbolIcon.fileForeground\":\"#c69026\",\"symbolIcon.folderForeground\":\"#c69026\",\"symbolIcon.functionForeground\":\"#b083f0\",\"symbolIcon.interfaceForeground\":\"#e0823d\",\"symbolIcon.keyForeground\":\"#539bf5\",\"symbolIcon.keywordForeground\":\"#f47067\",\"symbolIcon.methodForeground\":\"#b083f0\",\"symbolIcon.moduleForeground\":\"#f47067\",\"symbolIcon.namespaceForeground\":\"#f47067\",\"symbolIcon.nullForeground\":\"#539bf5\",\"symbolIcon.numberForeground\":\"#57ab5a\",\"symbolIcon.objectForeground\":\"#e0823d\",\"symbolIcon.operatorForeground\":\"#6cb6ff\",\"symbolIcon.packageForeground\":\"#e0823d\",\"symbolIcon.propertyForeground\":\"#e0823d\",\"symbolIcon.referenceForeground\":\"#539bf5\",\"symbolIcon.snippetForeground\":\"#539bf5\",\"symbolIcon.stringForeground\":\"#6cb6ff\",\"symbolIcon.structForeground\":\"#e0823d\",\"symbolIcon.textForeground\":\"#6cb6ff\",\"symbolIcon.typeParameterForeground\":\"#6cb6ff\",\"symbolIcon.unitForeground\":\"#539bf5\",\"symbolIcon.variableForeground\":\"#e0823d\",\"tab.activeBackground\":\"#22272e\",\"tab.activeBorder\":\"#22272e\",\"tab.activeBorderTop\":\"#ec775c\",\"tab.activeForeground\":\"#adbac7\",\"tab.border\":\"#444c56\",\"tab.hoverBackground\":\"#22272e\",\"tab.inactiveBackground\":\"#1c2128\",\"tab.inactiveForeground\":\"#768390\",\"tab.unfocusedActiveBorder\":\"#22272e\",\"tab.unfocusedActiveBorderTop\":\"#444c56\",\"tab.unfocusedHoverBackground\":\"#636e7b1a\",\"terminal.ansiBlack\":\"#545d68\",\"terminal.ansiBlue\":\"#539bf5\",\"terminal.ansiBrightBlack\":\"#636e7b\",\"terminal.ansiBrightBlue\":\"#6cb6ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#6bc46d\",\"terminal.ansiBrightMagenta\":\"#dcbdfb\",\"terminal.ansiBrightRed\":\"#ff938a\",\"terminal.ansiBrightWhite\":\"#cdd9e5\",\"terminal.ansiBrightYellow\":\"#daaa3f\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#57ab5a\",\"terminal.ansiMagenta\":\"#b083f0\",\"terminal.ansiRed\":\"#f47067\",\"terminal.ansiWhite\":\"#909dab\",\"terminal.ansiYellow\":\"#c69026\",\"terminal.foreground\":\"#adbac7\",\"textBlockQuote.background\":\"#1c2128\",\"textBlockQuote.border\":\"#444c56\",\"textCodeBlock.background\":\"#636e7b66\",\"textLink.activeForeground\":\"#539bf5\",\"textLink.foreground\":\"#539bf5\",\"textPreformat.background\":\"#636e7b66\",\"textPreformat.foreground\":\"#768390\",\"textSeparator.foreground\":\"#373e47\",\"titleBar.activeBackground\":\"#22272e\",\"titleBar.activeForeground\":\"#768390\",\"titleBar.border\":\"#444c56\",\"titleBar.inactiveBackground\":\"#1c2128\",\"titleBar.inactiveForeground\":\"#768390\",\"tree.indentGuidesStroke\":\"#373e47\",\"welcomePage.buttonBackground\":\"#373e47\",\"welcomePage.buttonHoverBackground\":\"#444c56\"},\"displayName\":\"GitHub Dark Dimmed\",\"name\":\"github-dark-dimmed\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dcbdfb\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#adbac7\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ff938a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f47067\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#cdd9e5\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#96d0ff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ddb8c\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#8ddb8c\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#adbac7\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#adbac7\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#5d0f12\",\"foreground\":\"#ff938a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#f47067\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#113417\",\"foreground\":\"#8ddb8c\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#682d0f\",\"foreground\":\"#f69d50\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#6cb6ff\",\"foreground\":\"#2d333b\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dcbdfb\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6cb6ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#6cb6ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#768390\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ff938a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#96d0ff\"}}],\"type\":\"dark\"}"));
2
+ export { github_dark_dimmed_default as default };
@@ -0,0 +1,2 @@
1
+ var github_dark_high_contrast_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ff967d\",\"activityBar.background\":\"#0a0c10\",\"activityBar.border\":\"#7a828e\",\"activityBar.foreground\":\"#f0f3f6\",\"activityBar.inactiveForeground\":\"#f0f3f6\",\"activityBarBadge.background\":\"#409eff\",\"activityBarBadge.foreground\":\"#0a0c10\",\"badge.background\":\"#409eff\",\"badge.foreground\":\"#0a0c10\",\"breadcrumb.activeSelectionForeground\":\"#f0f3f6\",\"breadcrumb.focusForeground\":\"#f0f3f6\",\"breadcrumb.foreground\":\"#f0f3f6\",\"breadcrumbPicker.background\":\"#272b33\",\"button.background\":\"#09b43a\",\"button.foreground\":\"#0a0c10\",\"button.hoverBackground\":\"#26cd4d\",\"button.secondaryBackground\":\"#4c525d\",\"button.secondaryForeground\":\"#f0f3f6\",\"button.secondaryHoverBackground\":\"#525964\",\"checkbox.background\":\"#272b33\",\"checkbox.border\":\"#7a828e\",\"debugConsole.errorForeground\":\"#ffb1af\",\"debugConsole.infoForeground\":\"#bdc4cc\",\"debugConsole.sourceForeground\":\"#f7c843\",\"debugConsole.warningForeground\":\"#f0b72f\",\"debugConsoleInputIcon.foreground\":\"#cb9eff\",\"debugIcon.breakpointForeground\":\"#ff6a69\",\"debugTokenExpression.boolean\":\"#4ae168\",\"debugTokenExpression.error\":\"#ffb1af\",\"debugTokenExpression.name\":\"#91cbff\",\"debugTokenExpression.number\":\"#4ae168\",\"debugTokenExpression.string\":\"#addcff\",\"debugTokenExpression.value\":\"#addcff\",\"debugToolBar.background\":\"#272b33\",\"descriptionForeground\":\"#f0f3f6\",\"diffEditor.insertedLineBackground\":\"#09b43a26\",\"diffEditor.insertedTextBackground\":\"#26cd4d4d\",\"diffEditor.removedLineBackground\":\"#ff6a6926\",\"diffEditor.removedTextBackground\":\"#ff94924d\",\"dropdown.background\":\"#272b33\",\"dropdown.border\":\"#7a828e\",\"dropdown.foreground\":\"#f0f3f6\",\"dropdown.listBackground\":\"#272b33\",\"editor.background\":\"#0a0c10\",\"editor.findMatchBackground\":\"#e09b13\",\"editor.findMatchHighlightBackground\":\"#fbd66980\",\"editor.focusedStackFrameHighlightBackground\":\"#09b43a\",\"editor.foldBackground\":\"#9ea7b31a\",\"editor.foreground\":\"#f0f3f6\",\"editor.inactiveSelectionBackground\":\"#9ea7b3\",\"editor.lineHighlightBackground\":\"#9ea7b31a\",\"editor.lineHighlightBorder\":\"#71b7ff\",\"editor.linkedEditingBackground\":\"#71b7ff12\",\"editor.selectionBackground\":\"#ffffff\",\"editor.selectionForeground\":\"#0a0c10\",\"editor.selectionHighlightBackground\":\"#26cd4d40\",\"editor.stackFrameHighlightBackground\":\"#e09b13\",\"editor.wordHighlightBackground\":\"#9ea7b380\",\"editor.wordHighlightBorder\":\"#9ea7b399\",\"editor.wordHighlightStrongBackground\":\"#9ea7b34d\",\"editor.wordHighlightStrongBorder\":\"#9ea7b399\",\"editorBracketHighlight.foreground1\":\"#91cbff\",\"editorBracketHighlight.foreground2\":\"#4ae168\",\"editorBracketHighlight.foreground3\":\"#f7c843\",\"editorBracketHighlight.foreground4\":\"#ffb1af\",\"editorBracketHighlight.foreground5\":\"#ffadd4\",\"editorBracketHighlight.foreground6\":\"#dbb7ff\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#f0f3f6\",\"editorBracketMatch.background\":\"#26cd4d40\",\"editorBracketMatch.border\":\"#26cd4d99\",\"editorCursor.foreground\":\"#71b7ff\",\"editorGroup.border\":\"#7a828e\",\"editorGroupHeader.tabsBackground\":\"#010409\",\"editorGroupHeader.tabsBorder\":\"#7a828e\",\"editorGutter.addedBackground\":\"#09b43a\",\"editorGutter.deletedBackground\":\"#ff6a69\",\"editorGutter.modifiedBackground\":\"#e09b13\",\"editorIndentGuide.activeBackground\":\"#f0f3f63d\",\"editorIndentGuide.background\":\"#f0f3f61f\",\"editorInlayHint.background\":\"#bdc4cc33\",\"editorInlayHint.foreground\":\"#f0f3f6\",\"editorInlayHint.paramBackground\":\"#bdc4cc33\",\"editorInlayHint.paramForeground\":\"#f0f3f6\",\"editorInlayHint.typeBackground\":\"#bdc4cc33\",\"editorInlayHint.typeForeground\":\"#f0f3f6\",\"editorLineNumber.activeForeground\":\"#f0f3f6\",\"editorLineNumber.foreground\":\"#9ea7b3\",\"editorOverviewRuler.border\":\"#010409\",\"editorWhitespace.foreground\":\"#7a828e\",\"editorWidget.background\":\"#272b33\",\"errorForeground\":\"#ff6a69\",\"focusBorder\":\"#409eff\",\"foreground\":\"#f0f3f6\",\"gitDecoration.addedResourceForeground\":\"#26cd4d\",\"gitDecoration.conflictingResourceForeground\":\"#e7811d\",\"gitDecoration.deletedResourceForeground\":\"#ff6a69\",\"gitDecoration.ignoredResourceForeground\":\"#9ea7b3\",\"gitDecoration.modifiedResourceForeground\":\"#f0b72f\",\"gitDecoration.submoduleResourceForeground\":\"#f0f3f6\",\"gitDecoration.untrackedResourceForeground\":\"#26cd4d\",\"icon.foreground\":\"#f0f3f6\",\"input.background\":\"#0a0c10\",\"input.border\":\"#7a828e\",\"input.foreground\":\"#f0f3f6\",\"input.placeholderForeground\":\"#9ea7b3\",\"keybindingLabel.foreground\":\"#f0f3f6\",\"list.activeSelectionBackground\":\"#9ea7b366\",\"list.activeSelectionForeground\":\"#f0f3f6\",\"list.focusBackground\":\"#409eff26\",\"list.focusForeground\":\"#f0f3f6\",\"list.highlightForeground\":\"#71b7ff\",\"list.hoverBackground\":\"#9ea7b31a\",\"list.hoverForeground\":\"#f0f3f6\",\"list.inactiveFocusBackground\":\"#409eff26\",\"list.inactiveSelectionBackground\":\"#9ea7b366\",\"list.inactiveSelectionForeground\":\"#f0f3f6\",\"minimapSlider.activeBackground\":\"#bdc4cc47\",\"minimapSlider.background\":\"#bdc4cc33\",\"minimapSlider.hoverBackground\":\"#bdc4cc3d\",\"notificationCenterHeader.background\":\"#272b33\",\"notificationCenterHeader.foreground\":\"#f0f3f6\",\"notifications.background\":\"#272b33\",\"notifications.border\":\"#7a828e\",\"notifications.foreground\":\"#f0f3f6\",\"notificationsErrorIcon.foreground\":\"#ff6a69\",\"notificationsInfoIcon.foreground\":\"#71b7ff\",\"notificationsWarningIcon.foreground\":\"#f0b72f\",\"panel.background\":\"#010409\",\"panel.border\":\"#7a828e\",\"panelInput.border\":\"#7a828e\",\"panelTitle.activeBorder\":\"#ff967d\",\"panelTitle.activeForeground\":\"#f0f3f6\",\"panelTitle.inactiveForeground\":\"#f0f3f6\",\"peekViewEditor.background\":\"#9ea7b31a\",\"peekViewEditor.matchHighlightBackground\":\"#e09b13\",\"peekViewResult.background\":\"#0a0c10\",\"peekViewResult.matchHighlightBackground\":\"#e09b13\",\"pickerGroup.border\":\"#7a828e\",\"pickerGroup.foreground\":\"#f0f3f6\",\"progressBar.background\":\"#409eff\",\"quickInput.background\":\"#272b33\",\"quickInput.foreground\":\"#f0f3f6\",\"scrollbar.shadow\":\"#7a828e33\",\"scrollbarSlider.activeBackground\":\"#bdc4cc47\",\"scrollbarSlider.background\":\"#bdc4cc33\",\"scrollbarSlider.hoverBackground\":\"#bdc4cc3d\",\"settings.headerForeground\":\"#f0f3f6\",\"settings.modifiedItemIndicator\":\"#e09b13\",\"sideBar.background\":\"#010409\",\"sideBar.border\":\"#7a828e\",\"sideBar.foreground\":\"#f0f3f6\",\"sideBarSectionHeader.background\":\"#010409\",\"sideBarSectionHeader.border\":\"#7a828e\",\"sideBarSectionHeader.foreground\":\"#f0f3f6\",\"sideBarTitle.foreground\":\"#f0f3f6\",\"statusBar.background\":\"#0a0c10\",\"statusBar.border\":\"#7a828e\",\"statusBar.debuggingBackground\":\"#ff6a69\",\"statusBar.debuggingForeground\":\"#0a0c10\",\"statusBar.focusBorder\":\"#409eff80\",\"statusBar.foreground\":\"#f0f3f6\",\"statusBar.noFolderBackground\":\"#0a0c10\",\"statusBarItem.activeBackground\":\"#f0f3f61f\",\"statusBarItem.focusBorder\":\"#409eff\",\"statusBarItem.hoverBackground\":\"#f0f3f614\",\"statusBarItem.prominentBackground\":\"#9ea7b366\",\"statusBarItem.remoteBackground\":\"#525964\",\"statusBarItem.remoteForeground\":\"#f0f3f6\",\"symbolIcon.arrayForeground\":\"#fe9a2d\",\"symbolIcon.booleanForeground\":\"#71b7ff\",\"symbolIcon.classForeground\":\"#fe9a2d\",\"symbolIcon.colorForeground\":\"#91cbff\",\"symbolIcon.constantForeground\":[\"#acf7b6\",\"#72f088\",\"#4ae168\",\"#26cd4d\",\"#09b43a\",\"#09b43a\",\"#02a232\",\"#008c2c\",\"#007728\",\"#006222\"],\"symbolIcon.constructorForeground\":\"#dbb7ff\",\"symbolIcon.enumeratorForeground\":\"#fe9a2d\",\"symbolIcon.enumeratorMemberForeground\":\"#71b7ff\",\"symbolIcon.eventForeground\":\"#9ea7b3\",\"symbolIcon.fieldForeground\":\"#fe9a2d\",\"symbolIcon.fileForeground\":\"#f0b72f\",\"symbolIcon.folderForeground\":\"#f0b72f\",\"symbolIcon.functionForeground\":\"#cb9eff\",\"symbolIcon.interfaceForeground\":\"#fe9a2d\",\"symbolIcon.keyForeground\":\"#71b7ff\",\"symbolIcon.keywordForeground\":\"#ff9492\",\"symbolIcon.methodForeground\":\"#cb9eff\",\"symbolIcon.moduleForeground\":\"#ff9492\",\"symbolIcon.namespaceForeground\":\"#ff9492\",\"symbolIcon.nullForeground\":\"#71b7ff\",\"symbolIcon.numberForeground\":\"#26cd4d\",\"symbolIcon.objectForeground\":\"#fe9a2d\",\"symbolIcon.operatorForeground\":\"#91cbff\",\"symbolIcon.packageForeground\":\"#fe9a2d\",\"symbolIcon.propertyForeground\":\"#fe9a2d\",\"symbolIcon.referenceForeground\":\"#71b7ff\",\"symbolIcon.snippetForeground\":\"#71b7ff\",\"symbolIcon.stringForeground\":\"#91cbff\",\"symbolIcon.structForeground\":\"#fe9a2d\",\"symbolIcon.textForeground\":\"#91cbff\",\"symbolIcon.typeParameterForeground\":\"#91cbff\",\"symbolIcon.unitForeground\":\"#71b7ff\",\"symbolIcon.variableForeground\":\"#fe9a2d\",\"tab.activeBackground\":\"#0a0c10\",\"tab.activeBorder\":\"#0a0c10\",\"tab.activeBorderTop\":\"#ff967d\",\"tab.activeForeground\":\"#f0f3f6\",\"tab.border\":\"#7a828e\",\"tab.hoverBackground\":\"#0a0c10\",\"tab.inactiveBackground\":\"#010409\",\"tab.inactiveForeground\":\"#f0f3f6\",\"tab.unfocusedActiveBorder\":\"#0a0c10\",\"tab.unfocusedActiveBorderTop\":\"#7a828e\",\"tab.unfocusedHoverBackground\":\"#9ea7b31a\",\"terminal.ansiBlack\":\"#7a828e\",\"terminal.ansiBlue\":\"#71b7ff\",\"terminal.ansiBrightBlack\":\"#9ea7b3\",\"terminal.ansiBrightBlue\":\"#91cbff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#4ae168\",\"terminal.ansiBrightMagenta\":\"#dbb7ff\",\"terminal.ansiBrightRed\":\"#ffb1af\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#f7c843\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#26cd4d\",\"terminal.ansiMagenta\":\"#cb9eff\",\"terminal.ansiRed\":\"#ff9492\",\"terminal.ansiWhite\":\"#d9dee3\",\"terminal.ansiYellow\":\"#f0b72f\",\"terminal.foreground\":\"#f0f3f6\",\"textBlockQuote.background\":\"#010409\",\"textBlockQuote.border\":\"#7a828e\",\"textCodeBlock.background\":\"#9ea7b366\",\"textLink.activeForeground\":\"#71b7ff\",\"textLink.foreground\":\"#71b7ff\",\"textPreformat.background\":\"#9ea7b366\",\"textPreformat.foreground\":\"#f0f3f6\",\"textSeparator.foreground\":\"#7a828e\",\"titleBar.activeBackground\":\"#0a0c10\",\"titleBar.activeForeground\":\"#f0f3f6\",\"titleBar.border\":\"#7a828e\",\"titleBar.inactiveBackground\":\"#010409\",\"titleBar.inactiveForeground\":\"#f0f3f6\",\"tree.indentGuidesStroke\":\"#7a828e\",\"welcomePage.buttonBackground\":\"#272b33\",\"welcomePage.buttonHoverBackground\":\"#525964\"},\"displayName\":\"GitHub Dark High Contrast\",\"name\":\"github-dark-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#dbb7ff\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#f0f3f6\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffb1af\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#ff9492\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#addcff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#72f088\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#72f088\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f0f3f6\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f0f3f6\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ad0116\",\"foreground\":\"#ffb1af\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#ff9492\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#006222\",\"foreground\":\"#72f088\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#a74c00\",\"foreground\":\"#ffb757\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#91cbff\",\"foreground\":\"#272b33\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dbb7ff\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#91cbff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#91cbff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#bdc4cc\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#ffb1af\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#addcff\"}}],\"type\":\"dark\"}"));
2
+ export { github_dark_high_contrast_default as default };
@@ -0,0 +1,2 @@
1
+ var github_dark_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#f9826c\",\"activityBar.background\":\"#24292e\",\"activityBar.border\":\"#1b1f23\",\"activityBar.foreground\":\"#e1e4e8\",\"activityBar.inactiveForeground\":\"#6a737d\",\"activityBarBadge.background\":\"#0366d6\",\"activityBarBadge.foreground\":\"#fff\",\"badge.background\":\"#044289\",\"badge.foreground\":\"#c8e1ff\",\"breadcrumb.activeSelectionForeground\":\"#d1d5da\",\"breadcrumb.focusForeground\":\"#e1e4e8\",\"breadcrumb.foreground\":\"#959da5\",\"breadcrumbPicker.background\":\"#2b3036\",\"button.background\":\"#176f2c\",\"button.foreground\":\"#dcffe4\",\"button.hoverBackground\":\"#22863a\",\"button.secondaryBackground\":\"#444d56\",\"button.secondaryForeground\":\"#fff\",\"button.secondaryHoverBackground\":\"#586069\",\"checkbox.background\":\"#444d56\",\"checkbox.border\":\"#1b1f23\",\"debugToolBar.background\":\"#2b3036\",\"descriptionForeground\":\"#959da5\",\"diffEditor.insertedTextBackground\":\"#28a74530\",\"diffEditor.removedTextBackground\":\"#d73a4930\",\"dropdown.background\":\"#2f363d\",\"dropdown.border\":\"#1b1f23\",\"dropdown.foreground\":\"#e1e4e8\",\"dropdown.listBackground\":\"#24292e\",\"editor.background\":\"#24292e\",\"editor.findMatchBackground\":\"#ffd33d44\",\"editor.findMatchHighlightBackground\":\"#ffd33d22\",\"editor.focusedStackFrameHighlightBackground\":\"#2b6a3033\",\"editor.foldBackground\":\"#58606915\",\"editor.foreground\":\"#e1e4e8\",\"editor.inactiveSelectionBackground\":\"#3392FF22\",\"editor.lineHighlightBackground\":\"#2b3036\",\"editor.linkedEditingBackground\":\"#3392FF22\",\"editor.selectionBackground\":\"#3392FF44\",\"editor.selectionHighlightBackground\":\"#17E5E633\",\"editor.selectionHighlightBorder\":\"#17E5E600\",\"editor.stackFrameHighlightBackground\":\"#C6902625\",\"editor.wordHighlightBackground\":\"#17E5E600\",\"editor.wordHighlightBorder\":\"#17E5E699\",\"editor.wordHighlightStrongBackground\":\"#17E5E600\",\"editor.wordHighlightStrongBorder\":\"#17E5E666\",\"editorBracketHighlight.foreground1\":\"#79b8ff\",\"editorBracketHighlight.foreground2\":\"#ffab70\",\"editorBracketHighlight.foreground3\":\"#b392f0\",\"editorBracketHighlight.foreground4\":\"#79b8ff\",\"editorBracketHighlight.foreground5\":\"#ffab70\",\"editorBracketHighlight.foreground6\":\"#b392f0\",\"editorBracketMatch.background\":\"#17E5E650\",\"editorBracketMatch.border\":\"#17E5E600\",\"editorCursor.foreground\":\"#c8e1ff\",\"editorError.foreground\":\"#f97583\",\"editorGroup.border\":\"#1b1f23\",\"editorGroupHeader.tabsBackground\":\"#1f2428\",\"editorGroupHeader.tabsBorder\":\"#1b1f23\",\"editorGutter.addedBackground\":\"#28a745\",\"editorGutter.deletedBackground\":\"#ea4a5a\",\"editorGutter.modifiedBackground\":\"#2188ff\",\"editorIndentGuide.activeBackground\":\"#444d56\",\"editorIndentGuide.background\":\"#2f363d\",\"editorLineNumber.activeForeground\":\"#e1e4e8\",\"editorLineNumber.foreground\":\"#444d56\",\"editorOverviewRuler.border\":\"#1b1f23\",\"editorWarning.foreground\":\"#ffea7f\",\"editorWhitespace.foreground\":\"#444d56\",\"editorWidget.background\":\"#1f2428\",\"errorForeground\":\"#f97583\",\"focusBorder\":\"#005cc5\",\"foreground\":\"#d1d5da\",\"gitDecoration.addedResourceForeground\":\"#34d058\",\"gitDecoration.conflictingResourceForeground\":\"#ffab70\",\"gitDecoration.deletedResourceForeground\":\"#ea4a5a\",\"gitDecoration.ignoredResourceForeground\":\"#6a737d\",\"gitDecoration.modifiedResourceForeground\":\"#79b8ff\",\"gitDecoration.submoduleResourceForeground\":\"#6a737d\",\"gitDecoration.untrackedResourceForeground\":\"#34d058\",\"input.background\":\"#2f363d\",\"input.border\":\"#1b1f23\",\"input.foreground\":\"#e1e4e8\",\"input.placeholderForeground\":\"#959da5\",\"list.activeSelectionBackground\":\"#39414a\",\"list.activeSelectionForeground\":\"#e1e4e8\",\"list.focusBackground\":\"#044289\",\"list.hoverBackground\":\"#282e34\",\"list.hoverForeground\":\"#e1e4e8\",\"list.inactiveFocusBackground\":\"#1d2d3e\",\"list.inactiveSelectionBackground\":\"#282e34\",\"list.inactiveSelectionForeground\":\"#e1e4e8\",\"notificationCenterHeader.background\":\"#24292e\",\"notificationCenterHeader.foreground\":\"#959da5\",\"notifications.background\":\"#2f363d\",\"notifications.border\":\"#1b1f23\",\"notifications.foreground\":\"#e1e4e8\",\"notificationsErrorIcon.foreground\":\"#ea4a5a\",\"notificationsInfoIcon.foreground\":\"#79b8ff\",\"notificationsWarningIcon.foreground\":\"#ffab70\",\"panel.background\":\"#1f2428\",\"panel.border\":\"#1b1f23\",\"panelInput.border\":\"#2f363d\",\"panelTitle.activeBorder\":\"#f9826c\",\"panelTitle.activeForeground\":\"#e1e4e8\",\"panelTitle.inactiveForeground\":\"#959da5\",\"peekViewEditor.background\":\"#1f242888\",\"peekViewEditor.matchHighlightBackground\":\"#ffd33d33\",\"peekViewResult.background\":\"#1f2428\",\"peekViewResult.matchHighlightBackground\":\"#ffd33d33\",\"pickerGroup.border\":\"#444d56\",\"pickerGroup.foreground\":\"#e1e4e8\",\"progressBar.background\":\"#0366d6\",\"quickInput.background\":\"#24292e\",\"quickInput.foreground\":\"#e1e4e8\",\"scrollbar.shadow\":\"#0008\",\"scrollbarSlider.activeBackground\":\"#6a737d88\",\"scrollbarSlider.background\":\"#6a737d33\",\"scrollbarSlider.hoverBackground\":\"#6a737d44\",\"settings.headerForeground\":\"#e1e4e8\",\"settings.modifiedItemIndicator\":\"#0366d6\",\"sideBar.background\":\"#1f2428\",\"sideBar.border\":\"#1b1f23\",\"sideBar.foreground\":\"#d1d5da\",\"sideBarSectionHeader.background\":\"#1f2428\",\"sideBarSectionHeader.border\":\"#1b1f23\",\"sideBarSectionHeader.foreground\":\"#e1e4e8\",\"sideBarTitle.foreground\":\"#e1e4e8\",\"statusBar.background\":\"#24292e\",\"statusBar.border\":\"#1b1f23\",\"statusBar.debuggingBackground\":\"#931c06\",\"statusBar.debuggingForeground\":\"#fff\",\"statusBar.foreground\":\"#d1d5da\",\"statusBar.noFolderBackground\":\"#24292e\",\"statusBarItem.prominentBackground\":\"#282e34\",\"statusBarItem.remoteBackground\":\"#24292e\",\"statusBarItem.remoteForeground\":\"#d1d5da\",\"tab.activeBackground\":\"#24292e\",\"tab.activeBorder\":\"#24292e\",\"tab.activeBorderTop\":\"#f9826c\",\"tab.activeForeground\":\"#e1e4e8\",\"tab.border\":\"#1b1f23\",\"tab.hoverBackground\":\"#24292e\",\"tab.inactiveBackground\":\"#1f2428\",\"tab.inactiveForeground\":\"#959da5\",\"tab.unfocusedActiveBorder\":\"#24292e\",\"tab.unfocusedActiveBorderTop\":\"#1b1f23\",\"tab.unfocusedHoverBackground\":\"#24292e\",\"terminal.ansiBlack\":\"#586069\",\"terminal.ansiBlue\":\"#2188ff\",\"terminal.ansiBrightBlack\":\"#959da5\",\"terminal.ansiBrightBlue\":\"#79b8ff\",\"terminal.ansiBrightCyan\":\"#56d4dd\",\"terminal.ansiBrightGreen\":\"#85e89d\",\"terminal.ansiBrightMagenta\":\"#b392f0\",\"terminal.ansiBrightRed\":\"#f97583\",\"terminal.ansiBrightWhite\":\"#fafbfc\",\"terminal.ansiBrightYellow\":\"#ffea7f\",\"terminal.ansiCyan\":\"#39c5cf\",\"terminal.ansiGreen\":\"#34d058\",\"terminal.ansiMagenta\":\"#b392f0\",\"terminal.ansiRed\":\"#ea4a5a\",\"terminal.ansiWhite\":\"#d1d5da\",\"terminal.ansiYellow\":\"#ffea7f\",\"terminal.foreground\":\"#d1d5da\",\"terminal.tab.activeBorder\":\"#f9826c\",\"terminalCursor.background\":\"#586069\",\"terminalCursor.foreground\":\"#79b8ff\",\"textBlockQuote.background\":\"#24292e\",\"textBlockQuote.border\":\"#444d56\",\"textCodeBlock.background\":\"#2f363d\",\"textLink.activeForeground\":\"#c8e1ff\",\"textLink.foreground\":\"#79b8ff\",\"textPreformat.foreground\":\"#d1d5da\",\"textSeparator.foreground\":\"#586069\",\"titleBar.activeBackground\":\"#24292e\",\"titleBar.activeForeground\":\"#e1e4e8\",\"titleBar.border\":\"#1b1f23\",\"titleBar.inactiveBackground\":\"#1f2428\",\"titleBar.inactiveForeground\":\"#959da5\",\"tree.indentGuidesStroke\":\"#2f363d\",\"welcomePage.buttonBackground\":\"#2f363d\",\"welcomePage.buttonHoverBackground\":\"#444d56\"},\"displayName\":\"GitHub Dark\",\"name\":\"github-dark\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#6a737d\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\"],\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"entity\",\"entity.name\"],\"settings\":{\"foreground\":\"#b392f0\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#e1e4e8\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#85e89d\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#f97583\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#f97583\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#e1e4e8\"}},{\"scope\":[\"string\",\"punctuation.definition.string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#9ecbff\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#ffab70\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#e1e4e8\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f97583\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#24292e\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#dbedff\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#dbedff\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#85e89d\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#ffab70\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79b8ff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#85e89d\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#e1e4e8\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#e1e4e8\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#86181d\",\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#144620\",\"foreground\":\"#85e89d\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#c24e00\",\"foreground\":\"#ffab70\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79b8ff\",\"foreground\":\"#2f363d\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b392f0\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#d1d5da\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#dbedff\"}}],\"type\":\"dark\"}"));
2
+ export { github_dark_default as default };
@@ -0,0 +1,2 @@
1
+ var github_light_default_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#fd8c73\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#d0d7de\",\"activityBar.foreground\":\"#1f2328\",\"activityBar.inactiveForeground\":\"#656d76\",\"activityBarBadge.background\":\"#0969da\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0969da\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#656d76\",\"breadcrumb.focusForeground\":\"#1f2328\",\"breadcrumb.foreground\":\"#656d76\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#1f883d\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#1a7f37\",\"button.secondaryBackground\":\"#ebecf0\",\"button.secondaryForeground\":\"#24292f\",\"button.secondaryHoverBackground\":\"#f3f4f6\",\"checkbox.background\":\"#f6f8fa\",\"checkbox.border\":\"#d0d7de\",\"debugConsole.errorForeground\":\"#cf222e\",\"debugConsole.infoForeground\":\"#57606a\",\"debugConsole.sourceForeground\":\"#9a6700\",\"debugConsole.warningForeground\":\"#7d4e00\",\"debugConsoleInputIcon.foreground\":\"#6639ba\",\"debugIcon.breakpointForeground\":\"#cf222e\",\"debugTokenExpression.boolean\":\"#116329\",\"debugTokenExpression.error\":\"#a40e26\",\"debugTokenExpression.name\":\"#0550ae\",\"debugTokenExpression.number\":\"#116329\",\"debugTokenExpression.string\":\"#0a3069\",\"debugTokenExpression.value\":\"#0a3069\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#656d76\",\"diffEditor.insertedLineBackground\":\"#aceebb4d\",\"diffEditor.insertedTextBackground\":\"#6fdd8b80\",\"diffEditor.removedLineBackground\":\"#ffcecb4d\",\"diffEditor.removedTextBackground\":\"#ff818266\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#d0d7de\",\"dropdown.foreground\":\"#1f2328\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#bf8700\",\"editor.findMatchHighlightBackground\":\"#fae17d80\",\"editor.focusedStackFrameHighlightBackground\":\"#4ac26b66\",\"editor.foldBackground\":\"#6e77811a\",\"editor.foreground\":\"#1f2328\",\"editor.lineHighlightBackground\":\"#eaeef280\",\"editor.linkedEditingBackground\":\"#0969da12\",\"editor.selectionHighlightBackground\":\"#4ac26b40\",\"editor.stackFrameHighlightBackground\":\"#d4a72c66\",\"editor.wordHighlightBackground\":\"#eaeef280\",\"editor.wordHighlightBorder\":\"#afb8c199\",\"editor.wordHighlightStrongBackground\":\"#afb8c14d\",\"editor.wordHighlightStrongBorder\":\"#afb8c199\",\"editorBracketHighlight.foreground1\":\"#0969da\",\"editorBracketHighlight.foreground2\":\"#1a7f37\",\"editorBracketHighlight.foreground3\":\"#9a6700\",\"editorBracketHighlight.foreground4\":\"#cf222e\",\"editorBracketHighlight.foreground5\":\"#bf3989\",\"editorBracketHighlight.foreground6\":\"#8250df\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#656d76\",\"editorBracketMatch.background\":\"#4ac26b40\",\"editorBracketMatch.border\":\"#4ac26b99\",\"editorCursor.foreground\":\"#0969da\",\"editorGroup.border\":\"#d0d7de\",\"editorGroupHeader.tabsBackground\":\"#f6f8fa\",\"editorGroupHeader.tabsBorder\":\"#d0d7de\",\"editorGutter.addedBackground\":\"#4ac26b66\",\"editorGutter.deletedBackground\":\"#ff818266\",\"editorGutter.modifiedBackground\":\"#d4a72c66\",\"editorIndentGuide.activeBackground\":\"#1f23283d\",\"editorIndentGuide.background\":\"#1f23281f\",\"editorInlayHint.background\":\"#afb8c133\",\"editorInlayHint.foreground\":\"#656d76\",\"editorInlayHint.paramBackground\":\"#afb8c133\",\"editorInlayHint.paramForeground\":\"#656d76\",\"editorInlayHint.typeBackground\":\"#afb8c133\",\"editorInlayHint.typeForeground\":\"#656d76\",\"editorLineNumber.activeForeground\":\"#1f2328\",\"editorLineNumber.foreground\":\"#8c959f\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#afb8c1\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#cf222e\",\"focusBorder\":\"#0969da\",\"foreground\":\"#1f2328\",\"gitDecoration.addedResourceForeground\":\"#1a7f37\",\"gitDecoration.conflictingResourceForeground\":\"#bc4c00\",\"gitDecoration.deletedResourceForeground\":\"#cf222e\",\"gitDecoration.ignoredResourceForeground\":\"#6e7781\",\"gitDecoration.modifiedResourceForeground\":\"#9a6700\",\"gitDecoration.submoduleResourceForeground\":\"#656d76\",\"gitDecoration.untrackedResourceForeground\":\"#1a7f37\",\"icon.foreground\":\"#656d76\",\"input.background\":\"#ffffff\",\"input.border\":\"#d0d7de\",\"input.foreground\":\"#1f2328\",\"input.placeholderForeground\":\"#6e7781\",\"keybindingLabel.foreground\":\"#1f2328\",\"list.activeSelectionBackground\":\"#afb8c133\",\"list.activeSelectionForeground\":\"#1f2328\",\"list.focusBackground\":\"#ddf4ff\",\"list.focusForeground\":\"#1f2328\",\"list.highlightForeground\":\"#0969da\",\"list.hoverBackground\":\"#eaeef280\",\"list.hoverForeground\":\"#1f2328\",\"list.inactiveFocusBackground\":\"#ddf4ff\",\"list.inactiveSelectionBackground\":\"#afb8c133\",\"list.inactiveSelectionForeground\":\"#1f2328\",\"minimapSlider.activeBackground\":\"#8c959f47\",\"minimapSlider.background\":\"#8c959f33\",\"minimapSlider.hoverBackground\":\"#8c959f3d\",\"notificationCenterHeader.background\":\"#f6f8fa\",\"notificationCenterHeader.foreground\":\"#656d76\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#d0d7de\",\"notifications.foreground\":\"#1f2328\",\"notificationsErrorIcon.foreground\":\"#cf222e\",\"notificationsInfoIcon.foreground\":\"#0969da\",\"notificationsWarningIcon.foreground\":\"#9a6700\",\"panel.background\":\"#f6f8fa\",\"panel.border\":\"#d0d7de\",\"panelInput.border\":\"#d0d7de\",\"panelTitle.activeBorder\":\"#fd8c73\",\"panelTitle.activeForeground\":\"#1f2328\",\"panelTitle.inactiveForeground\":\"#656d76\",\"pickerGroup.border\":\"#d0d7de\",\"pickerGroup.foreground\":\"#656d76\",\"progressBar.background\":\"#0969da\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#1f2328\",\"scrollbar.shadow\":\"#6e778133\",\"scrollbarSlider.activeBackground\":\"#8c959f47\",\"scrollbarSlider.background\":\"#8c959f33\",\"scrollbarSlider.hoverBackground\":\"#8c959f3d\",\"settings.headerForeground\":\"#1f2328\",\"settings.modifiedItemIndicator\":\"#d4a72c66\",\"sideBar.background\":\"#f6f8fa\",\"sideBar.border\":\"#d0d7de\",\"sideBar.foreground\":\"#1f2328\",\"sideBarSectionHeader.background\":\"#f6f8fa\",\"sideBarSectionHeader.border\":\"#d0d7de\",\"sideBarSectionHeader.foreground\":\"#1f2328\",\"sideBarTitle.foreground\":\"#1f2328\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#d0d7de\",\"statusBar.debuggingBackground\":\"#cf222e\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0969da80\",\"statusBar.foreground\":\"#656d76\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#1f23281f\",\"statusBarItem.focusBorder\":\"#0969da\",\"statusBarItem.hoverBackground\":\"#1f232814\",\"statusBarItem.prominentBackground\":\"#afb8c133\",\"statusBarItem.remoteBackground\":\"#eaeef2\",\"statusBarItem.remoteForeground\":\"#1f2328\",\"symbolIcon.arrayForeground\":\"#953800\",\"symbolIcon.booleanForeground\":\"#0550ae\",\"symbolIcon.classForeground\":\"#953800\",\"symbolIcon.colorForeground\":\"#0a3069\",\"symbolIcon.constantForeground\":\"#116329\",\"symbolIcon.constructorForeground\":\"#3e1f79\",\"symbolIcon.enumeratorForeground\":\"#953800\",\"symbolIcon.enumeratorMemberForeground\":\"#0550ae\",\"symbolIcon.eventForeground\":\"#57606a\",\"symbolIcon.fieldForeground\":\"#953800\",\"symbolIcon.fileForeground\":\"#7d4e00\",\"symbolIcon.folderForeground\":\"#7d4e00\",\"symbolIcon.functionForeground\":\"#6639ba\",\"symbolIcon.interfaceForeground\":\"#953800\",\"symbolIcon.keyForeground\":\"#0550ae\",\"symbolIcon.keywordForeground\":\"#a40e26\",\"symbolIcon.methodForeground\":\"#6639ba\",\"symbolIcon.moduleForeground\":\"#a40e26\",\"symbolIcon.namespaceForeground\":\"#a40e26\",\"symbolIcon.nullForeground\":\"#0550ae\",\"symbolIcon.numberForeground\":\"#116329\",\"symbolIcon.objectForeground\":\"#953800\",\"symbolIcon.operatorForeground\":\"#0a3069\",\"symbolIcon.packageForeground\":\"#953800\",\"symbolIcon.propertyForeground\":\"#953800\",\"symbolIcon.referenceForeground\":\"#0550ae\",\"symbolIcon.snippetForeground\":\"#0550ae\",\"symbolIcon.stringForeground\":\"#0a3069\",\"symbolIcon.structForeground\":\"#953800\",\"symbolIcon.textForeground\":\"#0a3069\",\"symbolIcon.typeParameterForeground\":\"#0a3069\",\"symbolIcon.unitForeground\":\"#0550ae\",\"symbolIcon.variableForeground\":\"#953800\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#fd8c73\",\"tab.activeForeground\":\"#1f2328\",\"tab.border\":\"#d0d7de\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#f6f8fa\",\"tab.inactiveForeground\":\"#656d76\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#d0d7de\",\"tab.unfocusedHoverBackground\":\"#eaeef280\",\"terminal.ansiBlack\":\"#24292f\",\"terminal.ansiBlue\":\"#0969da\",\"terminal.ansiBrightBlack\":\"#57606a\",\"terminal.ansiBrightBlue\":\"#218bff\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#1a7f37\",\"terminal.ansiBrightMagenta\":\"#a475f9\",\"terminal.ansiBrightRed\":\"#a40e26\",\"terminal.ansiBrightWhite\":\"#8c959f\",\"terminal.ansiBrightYellow\":\"#633c01\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#116329\",\"terminal.ansiMagenta\":\"#8250df\",\"terminal.ansiRed\":\"#cf222e\",\"terminal.ansiWhite\":\"#6e7781\",\"terminal.ansiYellow\":\"#4d2d00\",\"terminal.foreground\":\"#1f2328\",\"textBlockQuote.background\":\"#f6f8fa\",\"textBlockQuote.border\":\"#d0d7de\",\"textCodeBlock.background\":\"#afb8c133\",\"textLink.activeForeground\":\"#0969da\",\"textLink.foreground\":\"#0969da\",\"textPreformat.background\":\"#afb8c133\",\"textPreformat.foreground\":\"#656d76\",\"textSeparator.foreground\":\"#d8dee4\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#656d76\",\"titleBar.border\":\"#d0d7de\",\"titleBar.inactiveBackground\":\"#f6f8fa\",\"titleBar.inactiveForeground\":\"#656d76\",\"tree.indentGuidesStroke\":\"#d8dee4\",\"welcomePage.buttonBackground\":\"#f6f8fa\",\"welcomePage.buttonHoverBackground\":\"#f3f4f6\"},\"displayName\":\"GitHub Light Default\",\"name\":\"github-light-default\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#6e7781\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#8250df\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#1f2328\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#82071e\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#cf222e\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#f6f8fa\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#0a3069\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#116329\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#953800\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#116329\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#1f2328\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#1f2328\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ffebe9\",\"foreground\":\"#82071e\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#cf222e\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#dafbe1\",\"foreground\":\"#116329\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffd8b5\",\"foreground\":\"#953800\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#0550ae\",\"foreground\":\"#eaeef2\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8250df\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0550ae\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#0550ae\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#57606a\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#82071e\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#0a3069\"}}],\"type\":\"light\"}"));
2
+ export { github_light_default_default as default };
@@ -0,0 +1,2 @@
1
+ var github_light_high_contrast_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#ef5b48\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#20252c\",\"activityBar.foreground\":\"#0e1116\",\"activityBar.inactiveForeground\":\"#0e1116\",\"activityBarBadge.background\":\"#0349b4\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#0349b4\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#0e1116\",\"breadcrumb.focusForeground\":\"#0e1116\",\"breadcrumb.foreground\":\"#0e1116\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#055d20\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#024c1a\",\"button.secondaryBackground\":\"#acb6c0\",\"button.secondaryForeground\":\"#0e1116\",\"button.secondaryHoverBackground\":\"#ced5dc\",\"checkbox.background\":\"#e7ecf0\",\"checkbox.border\":\"#20252c\",\"debugConsole.errorForeground\":\"#a0111f\",\"debugConsole.infoForeground\":\"#4b535d\",\"debugConsole.sourceForeground\":\"#744500\",\"debugConsole.warningForeground\":\"#603700\",\"debugConsoleInputIcon.foreground\":\"#512598\",\"debugIcon.breakpointForeground\":\"#a0111f\",\"debugTokenExpression.boolean\":\"#024c1a\",\"debugTokenExpression.error\":\"#86061d\",\"debugTokenExpression.name\":\"#023b95\",\"debugTokenExpression.number\":\"#024c1a\",\"debugTokenExpression.string\":\"#032563\",\"debugTokenExpression.value\":\"#032563\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#0e1116\",\"diffEditor.insertedLineBackground\":\"#82e5964d\",\"diffEditor.insertedTextBackground\":\"#43c66380\",\"diffEditor.removedLineBackground\":\"#ffc1bc4d\",\"diffEditor.removedTextBackground\":\"#ee5a5d66\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#20252c\",\"dropdown.foreground\":\"#0e1116\",\"dropdown.listBackground\":\"#ffffff\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#744500\",\"editor.findMatchHighlightBackground\":\"#f0ce5380\",\"editor.focusedStackFrameHighlightBackground\":\"#26a148\",\"editor.foldBackground\":\"#66707b1a\",\"editor.foreground\":\"#0e1116\",\"editor.inactiveSelectionBackground\":\"#66707b\",\"editor.lineHighlightBackground\":\"#e7ecf0\",\"editor.linkedEditingBackground\":\"#0349b412\",\"editor.selectionBackground\":\"#0e1116\",\"editor.selectionForeground\":\"#ffffff\",\"editor.selectionHighlightBackground\":\"#26a14840\",\"editor.stackFrameHighlightBackground\":\"#b58407\",\"editor.wordHighlightBackground\":\"#e7ecf080\",\"editor.wordHighlightBorder\":\"#acb6c099\",\"editor.wordHighlightStrongBackground\":\"#acb6c04d\",\"editor.wordHighlightStrongBorder\":\"#acb6c099\",\"editorBracketHighlight.foreground1\":\"#0349b4\",\"editorBracketHighlight.foreground2\":\"#055d20\",\"editorBracketHighlight.foreground3\":\"#744500\",\"editorBracketHighlight.foreground4\":\"#a0111f\",\"editorBracketHighlight.foreground5\":\"#971368\",\"editorBracketHighlight.foreground6\":\"#622cbc\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#0e1116\",\"editorBracketMatch.background\":\"#26a14840\",\"editorBracketMatch.border\":\"#26a14899\",\"editorCursor.foreground\":\"#0349b4\",\"editorGroup.border\":\"#20252c\",\"editorGroupHeader.tabsBackground\":\"#ffffff\",\"editorGroupHeader.tabsBorder\":\"#20252c\",\"editorGutter.addedBackground\":\"#26a148\",\"editorGutter.deletedBackground\":\"#ee5a5d\",\"editorGutter.modifiedBackground\":\"#b58407\",\"editorIndentGuide.activeBackground\":\"#0e11163d\",\"editorIndentGuide.background\":\"#0e11161f\",\"editorInlayHint.background\":\"#acb6c033\",\"editorInlayHint.foreground\":\"#0e1116\",\"editorInlayHint.paramBackground\":\"#acb6c033\",\"editorInlayHint.paramForeground\":\"#0e1116\",\"editorInlayHint.typeBackground\":\"#acb6c033\",\"editorInlayHint.typeForeground\":\"#0e1116\",\"editorLineNumber.activeForeground\":\"#0e1116\",\"editorLineNumber.foreground\":\"#88929d\",\"editorOverviewRuler.border\":\"#ffffff\",\"editorWhitespace.foreground\":\"#acb6c0\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#a0111f\",\"focusBorder\":\"#0349b4\",\"foreground\":\"#0e1116\",\"gitDecoration.addedResourceForeground\":\"#055d20\",\"gitDecoration.conflictingResourceForeground\":\"#873800\",\"gitDecoration.deletedResourceForeground\":\"#a0111f\",\"gitDecoration.ignoredResourceForeground\":\"#66707b\",\"gitDecoration.modifiedResourceForeground\":\"#744500\",\"gitDecoration.submoduleResourceForeground\":\"#0e1116\",\"gitDecoration.untrackedResourceForeground\":\"#055d20\",\"icon.foreground\":\"#0e1116\",\"input.background\":\"#ffffff\",\"input.border\":\"#20252c\",\"input.foreground\":\"#0e1116\",\"input.placeholderForeground\":\"#66707b\",\"keybindingLabel.foreground\":\"#0e1116\",\"list.activeSelectionBackground\":\"#acb6c033\",\"list.activeSelectionForeground\":\"#0e1116\",\"list.focusBackground\":\"#dff7ff\",\"list.focusForeground\":\"#0e1116\",\"list.highlightForeground\":\"#0349b4\",\"list.hoverBackground\":\"#e7ecf0\",\"list.hoverForeground\":\"#0e1116\",\"list.inactiveFocusBackground\":\"#dff7ff\",\"list.inactiveSelectionBackground\":\"#acb6c033\",\"list.inactiveSelectionForeground\":\"#0e1116\",\"minimapSlider.activeBackground\":\"#88929d47\",\"minimapSlider.background\":\"#88929d33\",\"minimapSlider.hoverBackground\":\"#88929d3d\",\"notificationCenterHeader.background\":\"#e7ecf0\",\"notificationCenterHeader.foreground\":\"#0e1116\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#20252c\",\"notifications.foreground\":\"#0e1116\",\"notificationsErrorIcon.foreground\":\"#a0111f\",\"notificationsInfoIcon.foreground\":\"#0349b4\",\"notificationsWarningIcon.foreground\":\"#744500\",\"panel.background\":\"#ffffff\",\"panel.border\":\"#20252c\",\"panelInput.border\":\"#20252c\",\"panelTitle.activeBorder\":\"#ef5b48\",\"panelTitle.activeForeground\":\"#0e1116\",\"panelTitle.inactiveForeground\":\"#0e1116\",\"pickerGroup.border\":\"#20252c\",\"pickerGroup.foreground\":\"#0e1116\",\"progressBar.background\":\"#0349b4\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#0e1116\",\"scrollbar.shadow\":\"#66707b33\",\"scrollbarSlider.activeBackground\":\"#88929d47\",\"scrollbarSlider.background\":\"#88929d33\",\"scrollbarSlider.hoverBackground\":\"#88929d3d\",\"settings.headerForeground\":\"#0e1116\",\"settings.modifiedItemIndicator\":\"#b58407\",\"sideBar.background\":\"#ffffff\",\"sideBar.border\":\"#20252c\",\"sideBar.foreground\":\"#0e1116\",\"sideBarSectionHeader.background\":\"#ffffff\",\"sideBarSectionHeader.border\":\"#20252c\",\"sideBarSectionHeader.foreground\":\"#0e1116\",\"sideBarTitle.foreground\":\"#0e1116\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#20252c\",\"statusBar.debuggingBackground\":\"#a0111f\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.focusBorder\":\"#0349b480\",\"statusBar.foreground\":\"#0e1116\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.activeBackground\":\"#0e11161f\",\"statusBarItem.focusBorder\":\"#0349b4\",\"statusBarItem.hoverBackground\":\"#0e111614\",\"statusBarItem.prominentBackground\":\"#acb6c033\",\"statusBarItem.remoteBackground\":\"#e7ecf0\",\"statusBarItem.remoteForeground\":\"#0e1116\",\"symbolIcon.arrayForeground\":\"#702c00\",\"symbolIcon.booleanForeground\":\"#023b95\",\"symbolIcon.classForeground\":\"#702c00\",\"symbolIcon.colorForeground\":\"#032563\",\"symbolIcon.constantForeground\":\"#024c1a\",\"symbolIcon.constructorForeground\":\"#341763\",\"symbolIcon.enumeratorForeground\":\"#702c00\",\"symbolIcon.enumeratorMemberForeground\":\"#023b95\",\"symbolIcon.eventForeground\":\"#4b535d\",\"symbolIcon.fieldForeground\":\"#702c00\",\"symbolIcon.fileForeground\":\"#603700\",\"symbolIcon.folderForeground\":\"#603700\",\"symbolIcon.functionForeground\":\"#512598\",\"symbolIcon.interfaceForeground\":\"#702c00\",\"symbolIcon.keyForeground\":\"#023b95\",\"symbolIcon.keywordForeground\":\"#86061d\",\"symbolIcon.methodForeground\":\"#512598\",\"symbolIcon.moduleForeground\":\"#86061d\",\"symbolIcon.namespaceForeground\":\"#86061d\",\"symbolIcon.nullForeground\":\"#023b95\",\"symbolIcon.numberForeground\":\"#024c1a\",\"symbolIcon.objectForeground\":\"#702c00\",\"symbolIcon.operatorForeground\":\"#032563\",\"symbolIcon.packageForeground\":\"#702c00\",\"symbolIcon.propertyForeground\":\"#702c00\",\"symbolIcon.referenceForeground\":\"#023b95\",\"symbolIcon.snippetForeground\":\"#023b95\",\"symbolIcon.stringForeground\":\"#032563\",\"symbolIcon.structForeground\":\"#702c00\",\"symbolIcon.textForeground\":\"#032563\",\"symbolIcon.typeParameterForeground\":\"#032563\",\"symbolIcon.unitForeground\":\"#023b95\",\"symbolIcon.variableForeground\":\"#702c00\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#ffffff\",\"tab.activeBorderTop\":\"#ef5b48\",\"tab.activeForeground\":\"#0e1116\",\"tab.border\":\"#20252c\",\"tab.hoverBackground\":\"#ffffff\",\"tab.inactiveBackground\":\"#ffffff\",\"tab.inactiveForeground\":\"#0e1116\",\"tab.unfocusedActiveBorder\":\"#ffffff\",\"tab.unfocusedActiveBorderTop\":\"#20252c\",\"tab.unfocusedHoverBackground\":\"#e7ecf0\",\"terminal.ansiBlack\":\"#0e1116\",\"terminal.ansiBlue\":\"#0349b4\",\"terminal.ansiBrightBlack\":\"#4b535d\",\"terminal.ansiBrightBlue\":\"#1168e3\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#055d20\",\"terminal.ansiBrightMagenta\":\"#844ae7\",\"terminal.ansiBrightRed\":\"#86061d\",\"terminal.ansiBrightWhite\":\"#88929d\",\"terminal.ansiBrightYellow\":\"#4e2c00\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#024c1a\",\"terminal.ansiMagenta\":\"#622cbc\",\"terminal.ansiRed\":\"#a0111f\",\"terminal.ansiWhite\":\"#66707b\",\"terminal.ansiYellow\":\"#3f2200\",\"terminal.foreground\":\"#0e1116\",\"textBlockQuote.background\":\"#ffffff\",\"textBlockQuote.border\":\"#20252c\",\"textCodeBlock.background\":\"#acb6c033\",\"textLink.activeForeground\":\"#0349b4\",\"textLink.foreground\":\"#0349b4\",\"textPreformat.background\":\"#acb6c033\",\"textPreformat.foreground\":\"#0e1116\",\"textSeparator.foreground\":\"#88929d\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#0e1116\",\"titleBar.border\":\"#20252c\",\"titleBar.inactiveBackground\":\"#ffffff\",\"titleBar.inactiveForeground\":\"#0e1116\",\"tree.indentGuidesStroke\":\"#88929d\",\"welcomePage.buttonBackground\":\"#e7ecf0\",\"welcomePage.buttonHoverBackground\":\"#ced5dc\"},\"displayName\":\"GitHub Light High Contrast\",\"name\":\"github-light-high-contrast\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#66707b\"}},{\"scope\":[\"constant.other.placeholder\",\"constant.character\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\",\"entity\"],\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"entity.name\",\"meta.export.default\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"variable.parameter.function\",\"meta.jsx.children\",\"meta.block\",\"meta.tag.attributes\",\"entity.name.constant\",\"meta.object.member\",\"meta.embedded.expression\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#622cbc\"}},{\"scope\":[\"entity.name.tag\",\"support.class.component\"],\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#0e1116\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#6e011a\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#a0111f\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#ffffff\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#032563\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#024c1a\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#024c1a\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#0e1116\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#0e1116\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#fff0ee\",\"foreground\":\"#6e011a\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#a0111f\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#d2fedb\",\"foreground\":\"#024c1a\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffc67b\",\"foreground\":\"#702c00\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#023b95\",\"foreground\":\"#e7ecf0\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#622cbc\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#023b95\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#023b95\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#4b535d\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#6e011a\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"foreground\":\"#032563\"}}],\"type\":\"light\"}"));
2
+ export { github_light_high_contrast_default as default };
@@ -0,0 +1,2 @@
1
+ var github_light_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#f9826c\",\"activityBar.background\":\"#fff\",\"activityBar.border\":\"#e1e4e8\",\"activityBar.foreground\":\"#2f363d\",\"activityBar.inactiveForeground\":\"#959da5\",\"activityBarBadge.background\":\"#2188ff\",\"activityBarBadge.foreground\":\"#fff\",\"badge.background\":\"#dbedff\",\"badge.foreground\":\"#005cc5\",\"breadcrumb.activeSelectionForeground\":\"#586069\",\"breadcrumb.focusForeground\":\"#2f363d\",\"breadcrumb.foreground\":\"#6a737d\",\"breadcrumbPicker.background\":\"#fafbfc\",\"button.background\":\"#159739\",\"button.foreground\":\"#fff\",\"button.hoverBackground\":\"#138934\",\"button.secondaryBackground\":\"#e1e4e8\",\"button.secondaryForeground\":\"#1b1f23\",\"button.secondaryHoverBackground\":\"#d1d5da\",\"checkbox.background\":\"#fafbfc\",\"checkbox.border\":\"#d1d5da\",\"debugToolBar.background\":\"#fff\",\"descriptionForeground\":\"#6a737d\",\"diffEditor.insertedTextBackground\":\"#34d05822\",\"diffEditor.removedTextBackground\":\"#d73a4922\",\"dropdown.background\":\"#fafbfc\",\"dropdown.border\":\"#e1e4e8\",\"dropdown.foreground\":\"#2f363d\",\"dropdown.listBackground\":\"#fff\",\"editor.background\":\"#fff\",\"editor.findMatchBackground\":\"#ffdf5d\",\"editor.findMatchHighlightBackground\":\"#ffdf5d66\",\"editor.focusedStackFrameHighlightBackground\":\"#28a74525\",\"editor.foldBackground\":\"#d1d5da11\",\"editor.foreground\":\"#24292e\",\"editor.inactiveSelectionBackground\":\"#0366d611\",\"editor.lineHighlightBackground\":\"#f6f8fa\",\"editor.linkedEditingBackground\":\"#0366d611\",\"editor.selectionBackground\":\"#0366d625\",\"editor.selectionHighlightBackground\":\"#34d05840\",\"editor.selectionHighlightBorder\":\"#34d05800\",\"editor.stackFrameHighlightBackground\":\"#ffd33d33\",\"editor.wordHighlightBackground\":\"#34d05800\",\"editor.wordHighlightBorder\":\"#24943e99\",\"editor.wordHighlightStrongBackground\":\"#34d05800\",\"editor.wordHighlightStrongBorder\":\"#24943e50\",\"editorBracketHighlight.foreground1\":\"#005cc5\",\"editorBracketHighlight.foreground2\":\"#e36209\",\"editorBracketHighlight.foreground3\":\"#5a32a3\",\"editorBracketHighlight.foreground4\":\"#005cc5\",\"editorBracketHighlight.foreground5\":\"#e36209\",\"editorBracketHighlight.foreground6\":\"#5a32a3\",\"editorBracketMatch.background\":\"#34d05840\",\"editorBracketMatch.border\":\"#34d05800\",\"editorCursor.foreground\":\"#044289\",\"editorError.foreground\":\"#cb2431\",\"editorGroup.border\":\"#e1e4e8\",\"editorGroupHeader.tabsBackground\":\"#f6f8fa\",\"editorGroupHeader.tabsBorder\":\"#e1e4e8\",\"editorGutter.addedBackground\":\"#28a745\",\"editorGutter.deletedBackground\":\"#d73a49\",\"editorGutter.modifiedBackground\":\"#2188ff\",\"editorIndentGuide.activeBackground\":\"#d7dbe0\",\"editorIndentGuide.background\":\"#eff2f6\",\"editorLineNumber.activeForeground\":\"#24292e\",\"editorLineNumber.foreground\":\"#1b1f234d\",\"editorOverviewRuler.border\":\"#fff\",\"editorWarning.foreground\":\"#f9c513\",\"editorWhitespace.foreground\":\"#d1d5da\",\"editorWidget.background\":\"#f6f8fa\",\"errorForeground\":\"#cb2431\",\"focusBorder\":\"#2188ff\",\"foreground\":\"#444d56\",\"gitDecoration.addedResourceForeground\":\"#28a745\",\"gitDecoration.conflictingResourceForeground\":\"#e36209\",\"gitDecoration.deletedResourceForeground\":\"#d73a49\",\"gitDecoration.ignoredResourceForeground\":\"#959da5\",\"gitDecoration.modifiedResourceForeground\":\"#005cc5\",\"gitDecoration.submoduleResourceForeground\":\"#959da5\",\"gitDecoration.untrackedResourceForeground\":\"#28a745\",\"input.background\":\"#fafbfc\",\"input.border\":\"#e1e4e8\",\"input.foreground\":\"#2f363d\",\"input.placeholderForeground\":\"#959da5\",\"list.activeSelectionBackground\":\"#e2e5e9\",\"list.activeSelectionForeground\":\"#2f363d\",\"list.focusBackground\":\"#cce5ff\",\"list.hoverBackground\":\"#ebf0f4\",\"list.hoverForeground\":\"#2f363d\",\"list.inactiveFocusBackground\":\"#dbedff\",\"list.inactiveSelectionBackground\":\"#e8eaed\",\"list.inactiveSelectionForeground\":\"#2f363d\",\"notificationCenterHeader.background\":\"#e1e4e8\",\"notificationCenterHeader.foreground\":\"#6a737d\",\"notifications.background\":\"#fafbfc\",\"notifications.border\":\"#e1e4e8\",\"notifications.foreground\":\"#2f363d\",\"notificationsErrorIcon.foreground\":\"#d73a49\",\"notificationsInfoIcon.foreground\":\"#005cc5\",\"notificationsWarningIcon.foreground\":\"#e36209\",\"panel.background\":\"#f6f8fa\",\"panel.border\":\"#e1e4e8\",\"panelInput.border\":\"#e1e4e8\",\"panelTitle.activeBorder\":\"#f9826c\",\"panelTitle.activeForeground\":\"#2f363d\",\"panelTitle.inactiveForeground\":\"#6a737d\",\"pickerGroup.border\":\"#e1e4e8\",\"pickerGroup.foreground\":\"#2f363d\",\"progressBar.background\":\"#2188ff\",\"quickInput.background\":\"#fafbfc\",\"quickInput.foreground\":\"#2f363d\",\"scrollbar.shadow\":\"#6a737d33\",\"scrollbarSlider.activeBackground\":\"#959da588\",\"scrollbarSlider.background\":\"#959da533\",\"scrollbarSlider.hoverBackground\":\"#959da544\",\"settings.headerForeground\":\"#2f363d\",\"settings.modifiedItemIndicator\":\"#2188ff\",\"sideBar.background\":\"#f6f8fa\",\"sideBar.border\":\"#e1e4e8\",\"sideBar.foreground\":\"#586069\",\"sideBarSectionHeader.background\":\"#f6f8fa\",\"sideBarSectionHeader.border\":\"#e1e4e8\",\"sideBarSectionHeader.foreground\":\"#2f363d\",\"sideBarTitle.foreground\":\"#2f363d\",\"statusBar.background\":\"#fff\",\"statusBar.border\":\"#e1e4e8\",\"statusBar.debuggingBackground\":\"#f9826c\",\"statusBar.debuggingForeground\":\"#fff\",\"statusBar.foreground\":\"#586069\",\"statusBar.noFolderBackground\":\"#fff\",\"statusBarItem.prominentBackground\":\"#e8eaed\",\"statusBarItem.remoteBackground\":\"#fff\",\"statusBarItem.remoteForeground\":\"#586069\",\"tab.activeBackground\":\"#fff\",\"tab.activeBorder\":\"#fff\",\"tab.activeBorderTop\":\"#f9826c\",\"tab.activeForeground\":\"#2f363d\",\"tab.border\":\"#e1e4e8\",\"tab.hoverBackground\":\"#fff\",\"tab.inactiveBackground\":\"#f6f8fa\",\"tab.inactiveForeground\":\"#6a737d\",\"tab.unfocusedActiveBorder\":\"#fff\",\"tab.unfocusedActiveBorderTop\":\"#e1e4e8\",\"tab.unfocusedHoverBackground\":\"#fff\",\"terminal.ansiBlack\":\"#24292e\",\"terminal.ansiBlue\":\"#0366d6\",\"terminal.ansiBrightBlack\":\"#959da5\",\"terminal.ansiBrightBlue\":\"#005cc5\",\"terminal.ansiBrightCyan\":\"#3192aa\",\"terminal.ansiBrightGreen\":\"#22863a\",\"terminal.ansiBrightMagenta\":\"#5a32a3\",\"terminal.ansiBrightRed\":\"#cb2431\",\"terminal.ansiBrightWhite\":\"#d1d5da\",\"terminal.ansiBrightYellow\":\"#b08800\",\"terminal.ansiCyan\":\"#1b7c83\",\"terminal.ansiGreen\":\"#28a745\",\"terminal.ansiMagenta\":\"#5a32a3\",\"terminal.ansiRed\":\"#d73a49\",\"terminal.ansiWhite\":\"#6a737d\",\"terminal.ansiYellow\":\"#dbab09\",\"terminal.foreground\":\"#586069\",\"terminal.tab.activeBorder\":\"#f9826c\",\"terminalCursor.background\":\"#d1d5da\",\"terminalCursor.foreground\":\"#005cc5\",\"textBlockQuote.background\":\"#fafbfc\",\"textBlockQuote.border\":\"#e1e4e8\",\"textCodeBlock.background\":\"#f6f8fa\",\"textLink.activeForeground\":\"#005cc5\",\"textLink.foreground\":\"#0366d6\",\"textPreformat.foreground\":\"#586069\",\"textSeparator.foreground\":\"#d1d5da\",\"titleBar.activeBackground\":\"#fff\",\"titleBar.activeForeground\":\"#2f363d\",\"titleBar.border\":\"#e1e4e8\",\"titleBar.inactiveBackground\":\"#f6f8fa\",\"titleBar.inactiveForeground\":\"#6a737d\",\"tree.indentGuidesStroke\":\"#e1e4e8\",\"welcomePage.buttonBackground\":\"#f6f8fa\",\"welcomePage.buttonHoverBackground\":\"#e1e4e8\"},\"displayName\":\"GitHub Light\",\"name\":\"github-light\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#6a737d\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.other.constant\",\"variable.other.enummember\",\"variable.language\"],\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":[\"entity\",\"entity.name\"],\"settings\":{\"foreground\":\"#6f42c1\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#24292e\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#22863a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#d73a49\"}},{\"scope\":[\"storage\",\"storage.type\"],\"settings\":{\"foreground\":\"#d73a49\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#24292e\"}},{\"scope\":[\"string\",\"punctuation.definition.string\",\"string punctuation.section.embedded source\"],\"settings\":{\"foreground\":\"#032f62\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.property-name\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#e36209\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#24292e\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#d73a49\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#fafbfc\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#b31d28\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#032f62\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#032f62\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#22863a\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#e36209\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#005cc5\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#22863a\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#24292e\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#24292e\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"markup.strikethrough\"],\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ffeef0\",\"foreground\":\"#b31d28\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#f0fff4\",\"foreground\":\"#22863a\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffebda\",\"foreground\":\"#e36209\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#005cc5\",\"foreground\":\"#f6f8fa\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6f42c1\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#586069\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#b31d28\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#032f62\"}}],\"type\":\"light\"}"));
2
+ export { github_light_default as default };