@loopstack/loopstack-studio 0.21.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 (649) hide show
  1. package/dist/components/LoadingCentered.js +2 -2
  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/DataTable.js +99 -96
  11. package/dist/components/dynamic-form/CodeContent.js +2 -2
  12. package/dist/components/dynamic-form/FormElement.js +3 -3
  13. package/dist/components/dynamic-form/FormElementHeader.js +2 -2
  14. package/dist/components/dynamic-form/ObjectController.js +2 -2
  15. package/dist/components/layout/MainLayout.js +0 -1
  16. package/dist/components/lists/ListView.js +62 -59
  17. package/dist/components/loopstack-elements/link.js +115 -0
  18. package/dist/components/ui/button-group.js +13 -0
  19. package/dist/components/ui/command.js +7 -0
  20. package/dist/components/ui/context-menu.js +63 -0
  21. package/dist/components/ui/hover-card.js +6 -0
  22. package/dist/components/ui/input-group.js +85 -0
  23. package/dist/components/ui/table.js +2 -2
  24. package/dist/components/ui/tabs.js +54 -0
  25. package/dist/components/ui-widgets/UiActions.js +24 -0
  26. package/dist/components/ui-widgets/UiWidget.js +43 -0
  27. package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
  28. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
  29. package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
  30. package/dist/features/code-explorer/CodeExplorer.js +69 -0
  31. package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
  32. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
  33. package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
  34. package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
  35. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
  36. package/dist/features/code-explorer/utils/fileIcons.js +42 -0
  37. package/dist/features/dashboard/Dashboard.js +125 -0
  38. package/dist/features/dashboard/RunItem.js +76 -0
  39. package/dist/features/dashboard/RunList.js +32 -0
  40. package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
  41. package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
  42. package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
  43. package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
  44. package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
  45. package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
  46. package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
  47. package/dist/features/debug/lib/edge-paths.js +47 -0
  48. package/dist/features/debug/lib/flow-utils.js +247 -0
  49. package/dist/features/health/LocalHealthCheck.js +1 -1
  50. package/dist/features/oauth/OAuthCallbackPage.js +2 -0
  51. package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
  52. package/dist/features/oauth/index.js +3 -0
  53. package/dist/features/oauth/useOAuthPopup.js +83 -0
  54. package/dist/features/workbench/NavigationItems.js +52 -0
  55. package/dist/features/workbench/Workbench.js +101 -0
  56. package/dist/features/workbench/WorkbenchNavigation.js +38 -0
  57. package/dist/features/workbench/WorkflowItem.js +67 -0
  58. package/dist/features/workbench/WorkflowList.js +110 -0
  59. package/dist/features/workbench/components/DocumentItem.js +27 -0
  60. package/dist/features/workbench/components/DocumentList.js +40 -0
  61. package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
  62. package/dist/features/workbench/components/DocumentRenderer.js +54 -0
  63. package/dist/features/workbench/components/NavigationItem.js +68 -0
  64. package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
  65. package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
  66. package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
  67. package/dist/features/workbench/components/WorkflowForms.js +22 -0
  68. package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
  69. package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
  70. package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
  71. package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
  72. package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
  73. package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
  74. package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
  75. package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
  76. package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
  77. package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
  78. package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
  79. package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
  80. package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
  81. package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
  82. package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
  83. package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
  84. package/dist/features/workbench/providers/ScrollProvider.js +22 -0
  85. package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
  86. package/dist/features/workspaces/Workspaces.js +156 -89
  87. package/dist/features/workspaces/components/CreateWorkspace.js +101 -78
  88. package/dist/features/workspaces/components/ExecutionTimeline.js +1 -1
  89. package/dist/hooks/index.js +1 -0
  90. package/dist/hooks/useDashboard.js +23 -0
  91. package/dist/hooks/useDocuments.js +45 -0
  92. package/dist/hooks/useFiles.js +63 -0
  93. package/dist/hooks/useNamespaceTree.js +27 -0
  94. package/dist/hooks/useNamespaces.js +34 -0
  95. package/dist/hooks/usePipelines.js +83 -6
  96. package/dist/hooks/useWorkflows.js +122 -0
  97. package/dist/hooks/useWorkspaces.js +49 -29
  98. package/dist/index.d.ts +75 -9
  99. package/dist/index.js +9 -1
  100. package/dist/lib/requireParam.js +6 -0
  101. package/dist/loopstack-studio.css +1 -1
  102. package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
  103. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
  104. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
  105. package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
  106. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
  107. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
  108. package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
  109. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
  110. package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
  111. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
  112. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
  113. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
  114. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
  115. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
  116. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
  117. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
  118. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
  119. package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
  120. package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
  121. package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
  122. package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
  123. package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
  124. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
  125. package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
  126. package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
  127. package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
  128. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
  129. package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
  130. package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
  131. package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
  132. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
  133. package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
  134. package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
  135. package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
  136. package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
  137. package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
  138. package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
  139. package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
  140. package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
  141. package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
  142. package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
  143. package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
  144. package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
  145. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
  146. package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
  147. package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
  148. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
  149. package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
  150. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
  151. package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
  152. package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
  153. package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
  154. package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
  155. package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
  156. package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
  157. package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
  158. package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
  159. package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
  160. package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
  161. package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
  162. package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
  163. package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
  164. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
  165. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
  166. package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
  167. package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
  168. package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
  169. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
  170. package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
  171. package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
  172. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
  173. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
  174. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
  175. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
  176. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
  177. package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
  178. package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
  179. package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
  180. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
  181. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
  182. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
  183. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
  184. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
  185. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
  186. package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
  187. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
  188. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
  189. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
  190. package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
  191. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
  192. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
  193. package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
  194. package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
  195. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
  196. package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
  197. package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
  198. package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
  199. package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
  200. package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
  201. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
  202. package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
  203. package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
  204. package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
  205. package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
  206. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
  207. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
  208. package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
  209. package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
  210. package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
  211. package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
  212. package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
  213. package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
  214. package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
  215. package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
  216. package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
  217. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
  218. package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
  219. package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
  220. package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
  221. package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
  222. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
  223. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
  224. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
  225. package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
  226. package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
  227. package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
  228. package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
  229. package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
  230. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
  231. package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
  232. package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
  233. package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
  234. package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
  235. package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
  236. package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
  237. package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
  238. package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
  239. package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
  240. package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
  241. package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
  242. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
  243. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
  244. package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
  245. package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
  246. package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
  247. package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
  248. package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
  249. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
  250. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
  251. package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
  252. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
  253. package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
  254. package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
  255. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
  256. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
  257. package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
  258. package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
  259. package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
  260. package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
  261. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
  262. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
  263. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
  264. package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
  265. package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
  266. package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
  267. package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
  268. package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
  269. package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
  270. package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
  271. package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
  272. package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
  273. package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
  274. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
  275. package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
  276. package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
  277. package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
  278. package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
  279. package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
  280. package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
  281. package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
  282. package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
  283. package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
  284. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
  285. package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
  286. package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
  287. package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
  288. package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
  289. package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
  290. package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
  291. package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
  292. package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
  293. package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
  294. package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
  295. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
  296. package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
  297. package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
  298. package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
  299. package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
  300. package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
  301. package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
  302. package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
  303. package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
  304. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
  305. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
  306. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
  307. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
  308. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
  309. package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
  310. package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
  311. package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
  312. package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
  313. package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
  314. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
  315. package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
  316. package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
  317. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
  318. package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
  319. package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
  320. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
  321. package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
  322. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
  323. package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
  324. package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
  325. package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
  326. package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
  327. package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
  328. package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
  329. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
  330. package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
  331. package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
  332. package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
  333. package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
  334. package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
  335. package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
  336. package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
  337. package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
  338. package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
  339. package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
  340. package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
  341. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
  342. package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
  343. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
  344. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
  345. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
  346. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
  347. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
  348. package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
  349. package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
  350. package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
  351. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
  352. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
  353. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
  354. package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
  355. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
  356. package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
  357. package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
  358. package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
  359. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
  360. package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
  361. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
  362. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
  363. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
  364. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
  365. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
  366. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
  367. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
  368. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
  369. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
  370. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
  371. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
  372. package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
  373. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
  374. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
  375. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
  376. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
  377. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
  378. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
  379. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
  380. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
  381. package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
  382. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
  383. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
  384. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
  385. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
  386. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
  387. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
  388. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
  389. package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
  390. package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
  391. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
  392. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
  393. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
  394. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
  395. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
  396. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
  397. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
  398. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
  399. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
  400. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
  401. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
  402. package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
  403. package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
  404. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
  405. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
  406. package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
  407. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
  408. package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
  409. package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
  410. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
  411. package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
  412. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
  413. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
  414. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
  415. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
  416. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
  417. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
  418. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
  419. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
  420. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
  421. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
  422. package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
  423. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
  424. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
  425. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
  426. package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
  427. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
  428. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
  429. package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
  430. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
  431. package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
  432. package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
  433. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
  434. package/dist/node_modules/ai/dist/index.js +1083 -0
  435. package/dist/node_modules/bail/index.js +4 -0
  436. package/dist/node_modules/character-entities-html4/index.js +255 -0
  437. package/dist/node_modules/character-entities-legacy/index.js +2 -0
  438. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
  439. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
  440. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
  441. package/dist/node_modules/classcat/index.js +8 -0
  442. package/dist/node_modules/comma-separated-tokens/index.js +5 -1
  443. package/dist/node_modules/d3/src/index.js +5 -0
  444. package/dist/node_modules/d3-drag/src/constant.js +2 -0
  445. package/dist/node_modules/d3-drag/src/drag.js +112 -0
  446. package/dist/node_modules/d3-drag/src/event.js +60 -0
  447. package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
  448. package/dist/node_modules/d3-drag/src/noevent.js +11 -0
  449. package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
  450. package/dist/node_modules/d3-selection/src/pointer.js +16 -0
  451. package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
  452. package/dist/node_modules/d3-zoom/src/constant.js +2 -0
  453. package/dist/node_modules/d3-zoom/src/event.js +26 -0
  454. package/dist/node_modules/d3-zoom/src/index.js +1 -1
  455. package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
  456. package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
  457. package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
  458. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
  459. package/dist/node_modules/entities/dist/esm/decode.js +129 -0
  460. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
  461. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
  462. package/dist/node_modules/extend/index.js +37 -0
  463. package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
  464. package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
  465. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
  466. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
  467. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
  468. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
  469. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
  470. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
  471. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
  472. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
  473. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
  474. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
  475. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
  476. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
  477. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
  478. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
  479. package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
  480. package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
  481. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
  482. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
  483. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
  484. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
  485. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
  486. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
  487. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
  488. package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
  489. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
  490. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
  491. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
  492. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
  493. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
  494. package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
  495. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
  496. package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
  497. package/dist/node_modules/html-void-elements/index.js +23 -0
  498. package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
  499. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
  500. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
  501. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
  502. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
  503. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
  504. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
  505. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
  506. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
  507. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
  508. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
  509. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
  510. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
  511. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
  512. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
  513. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
  514. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
  515. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
  516. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
  517. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
  518. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
  519. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
  520. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
  521. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
  522. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
  523. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
  524. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
  525. package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
  526. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
  527. package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
  528. package/dist/node_modules/micromark/lib/constructs.js +79 -0
  529. package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
  530. package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
  531. package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
  532. package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
  533. package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
  534. package/dist/node_modules/micromark/lib/parse.js +27 -0
  535. package/dist/node_modules/micromark/lib/postprocess.js +6 -0
  536. package/dist/node_modules/micromark/lib/preprocess.js +30 -0
  537. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
  538. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
  539. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
  540. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
  541. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
  542. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
  543. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
  544. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
  545. package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
  546. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
  547. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
  548. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
  549. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
  550. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
  551. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
  552. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
  553. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
  554. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
  555. package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
  556. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
  557. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
  558. package/dist/node_modules/micromark-factory-destination/index.js +24 -0
  559. package/dist/node_modules/micromark-factory-label/index.js +18 -0
  560. package/dist/node_modules/micromark-factory-title/index.js +22 -0
  561. package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
  562. package/dist/node_modules/micromark-util-character/index.js +6 -5
  563. package/dist/node_modules/micromark-util-chunked/index.js +4 -1
  564. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
  565. package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
  566. package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
  567. package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
  568. package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
  569. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
  570. package/dist/node_modules/motion/dist/es/react.js +3 -0
  571. package/dist/node_modules/nanoid/index.browser.js +7 -0
  572. package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
  573. package/dist/node_modules/property-information/index.js +1 -0
  574. package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
  575. package/dist/node_modules/rehype-harden/dist/index.js +168 -0
  576. package/dist/node_modules/rehype-raw/lib/index.js +10 -0
  577. package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
  578. package/dist/node_modules/remark-parse/lib/index.js +14 -0
  579. package/dist/node_modules/remark-rehype/lib/index.js +16 -0
  580. package/dist/node_modules/remend/dist/index.js +459 -0
  581. package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
  582. package/dist/node_modules/shiki/dist/langs.js +1278 -0
  583. package/dist/node_modules/shiki/dist/themes.js +393 -0
  584. package/dist/node_modules/shiki/dist/wasm.js +2 -0
  585. package/dist/node_modules/space-separated-tokens/index.js +4 -1
  586. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
  587. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
  588. package/dist/node_modules/streamdown/dist/index.js +2 -0
  589. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
  590. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
  591. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
  592. package/dist/node_modules/stringify-entities/lib/core.js +21 -0
  593. package/dist/node_modules/stringify-entities/lib/index.js +6 -0
  594. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
  595. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
  596. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
  597. package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
  598. package/dist/node_modules/style-to-js/cjs/index.js +17 -0
  599. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  600. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  601. package/dist/node_modules/trim-lines/index.js +19 -0
  602. package/dist/node_modules/trough/lib/index.js +48 -0
  603. package/dist/node_modules/unified/lib/callable-instance.js +7 -0
  604. package/dist/node_modules/unified/lib/index.js +160 -0
  605. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
  606. package/dist/node_modules/unist-util-position/lib/index.js +20 -0
  607. package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
  608. package/dist/node_modules/vfile/lib/index.js +87 -0
  609. package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
  610. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
  611. package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
  612. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
  613. package/dist/node_modules/vfile-location/lib/index.js +41 -0
  614. package/dist/node_modules/vfile-message/lib/index.js +22 -0
  615. package/dist/node_modules/zod/v3/ZodError.js +79 -0
  616. package/dist/node_modules/zod/v3/errors.js +6 -0
  617. package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
  618. package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
  619. package/dist/node_modules/zod/v3/helpers/util.js +72 -0
  620. package/dist/node_modules/zod/v3/locales/en.js +58 -0
  621. package/dist/node_modules/zod/v3/types.js +2425 -0
  622. package/dist/node_modules/zod/v4/classic/errors.js +21 -0
  623. package/dist/node_modules/zod/v4/classic/iso.js +29 -0
  624. package/dist/node_modules/zod/v4/classic/parse.js +4 -0
  625. package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
  626. package/dist/node_modules/zod/v4/core/api.js +532 -0
  627. package/dist/node_modules/zod/v4/core/checks.js +283 -0
  628. package/dist/node_modules/zod/v4/core/core.js +44 -0
  629. package/dist/node_modules/zod/v4/core/doc.js +21 -0
  630. package/dist/node_modules/zod/v4/core/errors.js +40 -0
  631. package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
  632. package/dist/node_modules/zod/v4/core/parse.js +66 -0
  633. package/dist/node_modules/zod/v4/core/regexes.js +28 -0
  634. package/dist/node_modules/zod/v4/core/registries.js +38 -0
  635. package/dist/node_modules/zod/v4/core/schemas.js +863 -0
  636. package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
  637. package/dist/node_modules/zod/v4/core/util.js +267 -0
  638. package/dist/node_modules/zod/v4/core/versions.js +6 -0
  639. package/dist/node_modules/zwitch/index.js +14 -0
  640. package/dist/pages/DashboardPage.js +58 -0
  641. package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
  642. package/dist/pages/DebugWorkflowsPage.js +130 -0
  643. package/dist/pages/EmbedWorkbenchPage.js +73 -0
  644. package/dist/pages/PipelineDebugPage.js +114 -0
  645. package/dist/pages/WorkbenchPage.js +67 -0
  646. package/dist/pages/WorkspacePage.js +1 -1
  647. package/dist/providers/ComponentOverridesProvider.js +12 -0
  648. package/dist/routing/LocalRouter.js +3 -0
  649. package/package.json +3 -3
@@ -0,0 +1,2 @@
1
+ var horizon_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#1C1E26\",\"activityBar.dropBackground\":\"#6C6F9380\",\"activityBar.foreground\":\"#D5D8DAB3\",\"activityBarBadge.background\":\"#E95378\",\"activityBarBadge.foreground\":\"#06060C\",\"badge.background\":\"#2E303E\",\"badge.foreground\":\"#D5D8DA\",\"breadcrumbPicker.background\":\"#232530\",\"button.background\":\"#2E303E\",\"debugToolBar.background\":\"#1C1E26\",\"diffEditor.insertedTextBackground\":\"#09F7A01A\",\"diffEditor.removedTextBackground\":\"#F43E5C1A\",\"dropdown.background\":\"#232530\",\"dropdown.listBackground\":\"#2E303E\",\"editor.background\":\"#1C1E26\",\"editor.findMatchBackground\":\"#6C6F9380\",\"editor.findMatchHighlightBackground\":\"#6C6F934D\",\"editor.findRangeHighlightBackground\":\"#6C6F931A\",\"editor.hoverHighlightBackground\":\"#6C6F934D\",\"editor.lineHighlightBackground\":\"#2E303E4D\",\"editor.rangeHighlightBackground\":\"#2E303E80\",\"editor.selectionBackground\":\"#2E303EB3\",\"editor.selectionHighlightBackground\":\"#6C6F934D\",\"editor.wordHighlightBackground\":\"#6C6F9380\",\"editor.wordHighlightStrongBackground\":\"#6C6F9380\",\"editorBracketMatch.background\":\"#6C6F9380\",\"editorBracketMatch.border\":\"#6C6F9300\",\"editorCodeLens.foreground\":\"#6C6F9380\",\"editorCursor.background\":\"#1C1E26\",\"editorCursor.foreground\":\"#E95378\",\"editorError.foreground\":\"#F43E5C\",\"editorGroup.border\":\"#1A1C23\",\"editorGroup.dropBackground\":\"#6C6F934D\",\"editorGroupHeader.tabsBackground\":\"#1C1E26\",\"editorGutter.addedBackground\":\"#09F7A0B3\",\"editorGutter.deletedBackground\":\"#F43E5CB3\",\"editorGutter.modifiedBackground\":\"#21BFC2B3\",\"editorIndentGuide.activeBackground\":\"#2E303E\",\"editorIndentGuide.background\":\"#2E303E80\",\"editorLineNumber.activeForeground\":\"#D5D8DA80\",\"editorLineNumber.foreground\":\"#D5D8DA1A\",\"editorOverviewRuler.addedForeground\":\"#09F7A080\",\"editorOverviewRuler.border\":\"#2E303EB3\",\"editorOverviewRuler.bracketMatchForeground\":\"#D5D8DA80\",\"editorOverviewRuler.deletedForeground\":\"#F43E5C80\",\"editorOverviewRuler.errorForeground\":\"#F43E5CE6\",\"editorOverviewRuler.findMatchForeground\":\"#6C6F93\",\"editorOverviewRuler.modifiedForeground\":\"#21BFC280\",\"editorOverviewRuler.warningForeground\":\"#27D79780\",\"editorRuler.foreground\":\"#6C6F934D\",\"editorSuggestWidget.highlightForeground\":\"#E95378\",\"editorWarning.foreground\":\"#27D797B3\",\"editorWidget.background\":\"#232530\",\"editorWidget.border\":\"#232530\",\"errorForeground\":\"#F43E5C\",\"extensionButton.prominentBackground\":\"#E95378\",\"extensionButton.prominentHoverBackground\":\"#E9436D\",\"focusBorder\":\"#1A1C23\",\"foreground\":\"#D5D8DA\",\"gitDecoration.addedResourceForeground\":\"#27D797B3\",\"gitDecoration.deletedResourceForeground\":\"#F43E5C\",\"gitDecoration.ignoredResourceForeground\":\"#D5D8DA4D\",\"gitDecoration.modifiedResourceForeground\":\"#FAB38E\",\"gitDecoration.untrackedResourceForeground\":\"#27D797\",\"input.background\":\"#2E303E\",\"inputOption.activeBorder\":\"#E9436D80\",\"inputValidation.errorBackground\":\"#F43E5C80\",\"inputValidation.errorBorder\":\"#F43E5C00\",\"list.activeSelectionBackground\":\"#2E303E80\",\"list.activeSelectionForeground\":\"#D5D8DA\",\"list.dropBackground\":\"#6C6F9380\",\"list.errorForeground\":\"#F43E5CE6\",\"list.focusBackground\":\"#2E303E80\",\"list.focusForeground\":\"#D5D8DA\",\"list.highlightForeground\":\"#E95378\",\"list.hoverBackground\":\"#2E303E80\",\"list.hoverForeground\":\"#D5D8DA\",\"list.inactiveFocusBackground\":\"#2E303E80\",\"list.inactiveSelectionBackground\":\"#2E303E4D\",\"list.inactiveSelectionForeground\":\"#D5D8DA\",\"list.warningForeground\":\"#27D797B3\",\"panelTitle.activeBorder\":\"#E95378\",\"peekView.border\":\"#1A1C23\",\"peekViewEditor.background\":\"#232530\",\"peekViewEditor.matchHighlightBackground\":\"#6C6F9380\",\"peekViewResult.background\":\"#232530\",\"peekViewResult.matchHighlightBackground\":\"#6C6F9380\",\"peekViewResult.selectionBackground\":\"#2E303E80\",\"peekViewTitle.background\":\"#232530\",\"pickerGroup.foreground\":\"#E95378E6\",\"progressBar.background\":\"#E95378\",\"scrollbar.shadow\":\"#16161C\",\"scrollbarSlider.activeBackground\":\"#6C6F9380\",\"scrollbarSlider.background\":\"#6C6F931A\",\"scrollbarSlider.hoverBackground\":\"#6C6F934D\",\"selection.background\":\"#6C6F9380\",\"sideBar.background\":\"#1C1E26\",\"sideBar.dropBackground\":\"#6C6F934D\",\"sideBar.foreground\":\"#D5D8DA80\",\"sideBarSectionHeader.background\":\"#1C1E26\",\"sideBarSectionHeader.foreground\":\"#D5D8DAB3\",\"statusBar.background\":\"#1C1E26\",\"statusBar.debuggingBackground\":\"#FAB38E\",\"statusBar.debuggingForeground\":\"#06060C\",\"statusBar.foreground\":\"#D5D8DA80\",\"statusBar.noFolderBackground\":\"#1C1E26\",\"statusBarItem.hoverBackground\":\"#2E303E\",\"statusBarItem.prominentBackground\":\"#2E303E\",\"statusBarItem.prominentHoverBackground\":\"#6C6F93\",\"tab.activeBorder\":\"#E95378\",\"tab.border\":\"#1C1E2600\",\"tab.inactiveBackground\":\"#1C1E26\",\"terminal.ansiBlue\":\"#26BBD9\",\"terminal.ansiBrightBlue\":\"#3FC4DE\",\"terminal.ansiBrightCyan\":\"#6BE4E6\",\"terminal.ansiBrightGreen\":\"#3FDAA4\",\"terminal.ansiBrightMagenta\":\"#F075B5\",\"terminal.ansiBrightRed\":\"#EC6A88\",\"terminal.ansiBrightYellow\":\"#FBC3A7\",\"terminal.ansiCyan\":\"#59E1E3\",\"terminal.ansiGreen\":\"#29D398\",\"terminal.ansiMagenta\":\"#EE64AC\",\"terminal.ansiRed\":\"#E95678\",\"terminal.ansiYellow\":\"#FAB795\",\"terminal.foreground\":\"#D5D8DA\",\"terminal.selectionBackground\":\"#6C6F934D\",\"terminalCursor.background\":\"#D5D8DA\",\"terminalCursor.foreground\":\"#6C6F9380\",\"textLink.activeForeground\":\"#E9436D\",\"textLink.foreground\":\"#E95378\",\"titleBar.activeBackground\":\"#1C1E26\",\"titleBar.inactiveBackground\":\"#1C1E26\",\"walkThrough.embeddedEditorBackground\":\"#232530\",\"widget.shadow\":\"#16161C\"},\"displayName\":\"Horizon\",\"name\":\"horizon\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#BBBBBB4D\"}},{\"scope\":\"constant\",\"settings\":{\"foreground\":\"#F09483E6\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#25B0BCE6\"}},{\"scope\":\"entity.name\",\"settings\":{\"foreground\":\"#FAC29AE6\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#25B0BCE6\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#E95678E6\"}},{\"scope\":[\"entity.name.type\",\"storage.type.cs\"],\"settings\":{\"foreground\":\"#FAC29AE6\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#F09483E6\"}},{\"scope\":\"entity.other.inherited-class\",\"settings\":{\"foreground\":\"#FAB795E6\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#25B0BCE6\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-element\",\"entity.other.attribute-name.pseudo-class\"],\"settings\":{\"foreground\":\"#FAB795E6\"}},{\"scope\":[\"entity.name.variable\",\"variable\"],\"settings\":{\"foreground\":\"#E95678E6\"}},{\"scope\":\"keyword\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#B877DBE6\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#BBBBBB\"}},{\"scope\":[\"keyword.operator.new\",\"keyword.operator.expression\",\"keyword.operator.logical\",\"keyword.operator.delete\"],\"settings\":{\"foreground\":\"#B877DBE6\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#F09483E6\"}},{\"scope\":\"markup.quote\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#FAB795B3\"}},{\"scope\":[\"markup.heading\",\"entity.name.section\"],\"settings\":{\"foreground\":\"#E95678E6\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#B877DBE6\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#25B0BCE6\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#F09483E6\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#FAB795E6\"}},{\"scope\":\"storage\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#B877DBE6\"}},{\"scope\":[\"string.quoted\",\"string.template\"],\"settings\":{\"foreground\":\"#FAB795E6\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#F09483E6\"}},{\"scope\":\"string.other.link\",\"settings\":{\"foreground\":\"#F09483E6\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#FAC29AE6\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#25B0BCE6\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#E95678E6\"}},{\"scope\":[\"support.type.property-name\",\"meta.object-literal.key\"],\"settings\":{\"foreground\":\"#E95678E6\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#BBBBBB\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#FAC29AE6\"}},{\"scope\":\"variable.parameter\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"string.template meta.embedded\",\"settings\":{\"foreground\":\"#BBBBBB\"}},{\"scope\":\"punctuation.definition.tag\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#E95678B3\"}},{\"scope\":\"punctuation.separator\",\"settings\":{\"foreground\":\"#BBBBBB\"}},{\"scope\":[\"punctuation.definition.template-expression\",\"punctuation.quasi.element\"],\"settings\":{\"foreground\":\"#B877DBE6\"}},{\"scope\":\"punctuation.section.embedded\",\"settings\":{\"foreground\":\"#B877DBE6\"}},{\"scope\":\"punctuation.definition.list\",\"settings\":{\"foreground\":\"#F09483E6\"}}],\"type\":\"dark\"}"));
2
+ export { horizon_default as default };
@@ -0,0 +1,2 @@
1
+ var houston_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBackground\":\"#343841\",\"activityBar.background\":\"#17191e\",\"activityBar.border\":\"#343841\",\"activityBar.foreground\":\"#eef0f9\",\"activityBar.inactiveForeground\":\"#858b98\",\"activityBarBadge.background\":\"#4bf3c8\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#bfc1c9\",\"badge.foreground\":\"#17191e\",\"breadcrumb.activeSelectionForeground\":\"#eef0f9\",\"breadcrumb.background\":\"#17191e\",\"breadcrumb.focusForeground\":\"#eef0f9\",\"breadcrumb.foreground\":\"#858b98\",\"button.background\":\"#4bf3c8\",\"button.foreground\":\"#17191e\",\"button.hoverBackground\":\"#31c19c\",\"button.secondaryBackground\":\"#545864\",\"button.secondaryForeground\":\"#eef0f9\",\"button.secondaryHoverBackground\":\"#858b98\",\"checkbox.background\":\"#23262d\",\"checkbox.border\":\"#00000000\",\"checkbox.foreground\":\"#eef0f9\",\"debugExceptionWidget.background\":\"#23262d\",\"debugExceptionWidget.border\":\"#8996d5\",\"debugToolBar.background\":\"#000\",\"debugToolBar.border\":\"#ffffff00\",\"diffEditor.border\":\"#ffffff00\",\"diffEditor.insertedTextBackground\":\"#4bf3c824\",\"diffEditor.removedTextBackground\":\"#dc365724\",\"dropdown.background\":\"#23262d\",\"dropdown.border\":\"#00000000\",\"dropdown.foreground\":\"#eef0f9\",\"editor.background\":\"#17191e\",\"editor.findMatchBackground\":\"#515c6a\",\"editor.findMatchBorder\":\"#74879f\",\"editor.findMatchHighlightBackground\":\"#ea5c0055\",\"editor.findMatchHighlightBorder\":\"#ffffff00\",\"editor.findRangeHighlightBackground\":\"#23262d\",\"editor.findRangeHighlightBorder\":\"#b2434300\",\"editor.foldBackground\":\"#ad5dca26\",\"editor.foreground\":\"#eef0f9\",\"editor.hoverHighlightBackground\":\"#5495d740\",\"editor.inactiveSelectionBackground\":\"#2a2d34\",\"editor.lineHighlightBackground\":\"#23262d\",\"editor.lineHighlightBorder\":\"#ffffff00\",\"editor.rangeHighlightBackground\":\"#ffffff0b\",\"editor.rangeHighlightBorder\":\"#ffffff00\",\"editor.selectionBackground\":\"#ad5dca44\",\"editor.selectionHighlightBackground\":\"#add6ff34\",\"editor.selectionHighlightBorder\":\"#495f77\",\"editor.wordHighlightBackground\":\"#494949b8\",\"editor.wordHighlightStrongBackground\":\"#004972b8\",\"editorBracketMatch.background\":\"#545864\",\"editorBracketMatch.border\":\"#ffffff00\",\"editorCodeLens.foreground\":\"#bfc1c9\",\"editorCursor.background\":\"#000000\",\"editorCursor.foreground\":\"#aeafad\",\"editorError.background\":\"#ffffff00\",\"editorError.border\":\"#ffffff00\",\"editorError.foreground\":\"#f4587e\",\"editorGroup.border\":\"#343841\",\"editorGroup.emptyBackground\":\"#17191e\",\"editorGroupHeader.border\":\"#ffffff00\",\"editorGroupHeader.tabsBackground\":\"#23262d\",\"editorGroupHeader.tabsBorder\":\"#ffffff00\",\"editorGutter.addedBackground\":\"#4bf3c8\",\"editorGutter.background\":\"#17191e\",\"editorGutter.commentRangeForeground\":\"#545864\",\"editorGutter.deletedBackground\":\"#f06788\",\"editorGutter.foldingControlForeground\":\"#545864\",\"editorGutter.modifiedBackground\":\"#54b9ff\",\"editorHoverWidget.background\":\"#252526\",\"editorHoverWidget.border\":\"#454545\",\"editorHoverWidget.foreground\":\"#cccccc\",\"editorIndentGuide.activeBackground\":\"#858b98\",\"editorIndentGuide.background\":\"#343841\",\"editorInfo.background\":\"#4490bf00\",\"editorInfo.border\":\"#4490bf00\",\"editorInfo.foreground\":\"#54b9ff\",\"editorLineNumber.activeForeground\":\"#858b98\",\"editorLineNumber.foreground\":\"#545864\",\"editorLink.activeForeground\":\"#54b9ff\",\"editorMarkerNavigation.background\":\"#23262d\",\"editorMarkerNavigationError.background\":\"#dc3657\",\"editorMarkerNavigationInfo.background\":\"#54b9ff\",\"editorMarkerNavigationWarning.background\":\"#ffd493\",\"editorOverviewRuler.background\":\"#ffffff00\",\"editorOverviewRuler.border\":\"#ffffff00\",\"editorRuler.foreground\":\"#545864\",\"editorSuggestWidget.background\":\"#252526\",\"editorSuggestWidget.border\":\"#454545\",\"editorSuggestWidget.foreground\":\"#d4d4d4\",\"editorSuggestWidget.highlightForeground\":\"#0097fb\",\"editorSuggestWidget.selectedBackground\":\"#062f4a\",\"editorWarning.background\":\"#a9904000\",\"editorWarning.border\":\"#ffffff00\",\"editorWarning.foreground\":\"#fbc23b\",\"editorWhitespace.foreground\":\"#cc75f450\",\"editorWidget.background\":\"#343841\",\"editorWidget.foreground\":\"#ffffff\",\"editorWidget.resizeBorder\":\"#cc75f4\",\"focusBorder\":\"#00daef\",\"foreground\":\"#cccccc\",\"gitDecoration.addedResourceForeground\":\"#4bf3c8\",\"gitDecoration.conflictingResourceForeground\":\"#00daef\",\"gitDecoration.deletedResourceForeground\":\"#f4587e\",\"gitDecoration.ignoredResourceForeground\":\"#858b98\",\"gitDecoration.modifiedResourceForeground\":\"#ffd493\",\"gitDecoration.stageDeletedResourceForeground\":\"#c74e39\",\"gitDecoration.stageModifiedResourceForeground\":\"#ffd493\",\"gitDecoration.submoduleResourceForeground\":\"#54b9ff\",\"gitDecoration.untrackedResourceForeground\":\"#4bf3c8\",\"icon.foreground\":\"#cccccc\",\"input.background\":\"#23262d\",\"input.border\":\"#bfc1c9\",\"input.foreground\":\"#eef0f9\",\"input.placeholderForeground\":\"#858b98\",\"inputOption.activeBackground\":\"#54b9ff\",\"inputOption.activeBorder\":\"#007acc00\",\"inputOption.activeForeground\":\"#17191e\",\"list.activeSelectionBackground\":\"#2d4860\",\"list.activeSelectionForeground\":\"#ffffff\",\"list.dropBackground\":\"#17191e\",\"list.focusBackground\":\"#54b9ff\",\"list.focusForeground\":\"#ffffff\",\"list.highlightForeground\":\"#ffffff\",\"list.hoverBackground\":\"#343841\",\"list.hoverForeground\":\"#eef0f9\",\"list.inactiveSelectionBackground\":\"#17191e\",\"list.inactiveSelectionForeground\":\"#eef0f9\",\"listFilterWidget.background\":\"#2d4860\",\"listFilterWidget.noMatchesOutline\":\"#dc3657\",\"listFilterWidget.outline\":\"#54b9ff\",\"menu.background\":\"#252526\",\"menu.border\":\"#00000085\",\"menu.foreground\":\"#cccccc\",\"menu.selectionBackground\":\"#094771\",\"menu.selectionBorder\":\"#00000000\",\"menu.selectionForeground\":\"#4bf3c8\",\"menu.separatorBackground\":\"#bbbbbb\",\"menubar.selectionBackground\":\"#ffffff1a\",\"menubar.selectionForeground\":\"#cccccc\",\"merge.commonContentBackground\":\"#282828\",\"merge.commonHeaderBackground\":\"#383838\",\"merge.currentContentBackground\":\"#27403b\",\"merge.currentHeaderBackground\":\"#367366\",\"merge.incomingContentBackground\":\"#28384b\",\"merge.incomingHeaderBackground\":\"#395f8f\",\"minimap.background\":\"#17191e\",\"minimap.errorHighlight\":\"#dc3657\",\"minimap.findMatchHighlight\":\"#515c6a\",\"minimap.selectionHighlight\":\"#3757b942\",\"minimap.warningHighlight\":\"#fbc23b\",\"minimapGutter.addedBackground\":\"#4bf3c8\",\"minimapGutter.deletedBackground\":\"#f06788\",\"minimapGutter.modifiedBackground\":\"#54b9ff\",\"notificationCenter.border\":\"#ffffff00\",\"notificationCenterHeader.background\":\"#343841\",\"notificationCenterHeader.foreground\":\"#17191e\",\"notificationToast.border\":\"#ffffff00\",\"notifications.background\":\"#343841\",\"notifications.border\":\"#bfc1c9\",\"notifications.foreground\":\"#ffffff\",\"notificationsErrorIcon.foreground\":\"#f4587e\",\"notificationsInfoIcon.foreground\":\"#54b9ff\",\"notificationsWarningIcon.foreground\":\"#ff8551\",\"panel.background\":\"#23262d\",\"panel.border\":\"#17191e\",\"panelSection.border\":\"#17191e\",\"panelTitle.activeBorder\":\"#e7e7e7\",\"panelTitle.activeForeground\":\"#eef0f9\",\"panelTitle.inactiveForeground\":\"#bfc1c9\",\"peekView.border\":\"#007acc\",\"peekViewEditor.background\":\"#001f33\",\"peekViewEditor.matchHighlightBackground\":\"#ff8f0099\",\"peekViewEditor.matchHighlightBorder\":\"#ee931e\",\"peekViewEditorGutter.background\":\"#001f33\",\"peekViewResult.background\":\"#252526\",\"peekViewResult.fileForeground\":\"#ffffff\",\"peekViewResult.lineForeground\":\"#bbbbbb\",\"peekViewResult.matchHighlightBackground\":\"#f00\",\"peekViewResult.selectionBackground\":\"#3399ff33\",\"peekViewResult.selectionForeground\":\"#ffffff\",\"peekViewTitle.background\":\"#1e1e1e\",\"peekViewTitleDescription.foreground\":\"#ccccccb3\",\"peekViewTitleLabel.foreground\":\"#ffffff\",\"pickerGroup.border\":\"#ffffff00\",\"pickerGroup.foreground\":\"#eef0f9\",\"progressBar.background\":\"#4bf3c8\",\"scrollbar.shadow\":\"#000000\",\"scrollbarSlider.activeBackground\":\"#54b9ff66\",\"scrollbarSlider.background\":\"#54586466\",\"scrollbarSlider.hoverBackground\":\"#545864B3\",\"selection.background\":\"#00daef56\",\"settings.focusedRowBackground\":\"#ffffff07\",\"settings.headerForeground\":\"#cccccc\",\"sideBar.background\":\"#23262d\",\"sideBar.border\":\"#17191e\",\"sideBar.dropBackground\":\"#17191e\",\"sideBar.foreground\":\"#bfc1c9\",\"sideBarSectionHeader.background\":\"#343841\",\"sideBarSectionHeader.border\":\"#17191e\",\"sideBarSectionHeader.foreground\":\"#eef0f9\",\"sideBarTitle.foreground\":\"#eef0f9\",\"statusBar.background\":\"#17548b\",\"statusBar.debuggingBackground\":\"#cc75f4\",\"statusBar.debuggingForeground\":\"#eef0f9\",\"statusBar.foreground\":\"#eef0f9\",\"statusBar.noFolderBackground\":\"#6c3c7d\",\"statusBar.noFolderForeground\":\"#eef0f9\",\"statusBarItem.activeBackground\":\"#ffffff25\",\"statusBarItem.hoverBackground\":\"#ffffff1f\",\"statusBarItem.remoteBackground\":\"#297763\",\"statusBarItem.remoteForeground\":\"#eef0f9\",\"tab.activeBackground\":\"#17191e\",\"tab.activeBorder\":\"#ffffff00\",\"tab.activeBorderTop\":\"#eef0f9\",\"tab.activeForeground\":\"#eef0f9\",\"tab.border\":\"#17191e\",\"tab.hoverBackground\":\"#343841\",\"tab.hoverForeground\":\"#eef0f9\",\"tab.inactiveBackground\":\"#23262d\",\"tab.inactiveForeground\":\"#858b98\",\"terminal.ansiBlack\":\"#17191e\",\"terminal.ansiBlue\":\"#2b7eca\",\"terminal.ansiBrightBlack\":\"#545864\",\"terminal.ansiBrightBlue\":\"#54b9ff\",\"terminal.ansiBrightCyan\":\"#00daef\",\"terminal.ansiBrightGreen\":\"#4bf3c8\",\"terminal.ansiBrightMagenta\":\"#cc75f4\",\"terminal.ansiBrightRed\":\"#f4587e\",\"terminal.ansiBrightWhite\":\"#fafafa\",\"terminal.ansiBrightYellow\":\"#ffd493\",\"terminal.ansiCyan\":\"#24c0cf\",\"terminal.ansiGreen\":\"#23d18b\",\"terminal.ansiMagenta\":\"#ad5dca\",\"terminal.ansiRed\":\"#dc3657\",\"terminal.ansiWhite\":\"#eef0f9\",\"terminal.ansiYellow\":\"#ffc368\",\"terminal.border\":\"#80808059\",\"terminal.foreground\":\"#cccccc\",\"terminal.selectionBackground\":\"#ffffff40\",\"terminalCursor.background\":\"#0087ff\",\"terminalCursor.foreground\":\"#ffffff\",\"textLink.foreground\":\"#54b9ff\",\"titleBar.activeBackground\":\"#17191e\",\"titleBar.activeForeground\":\"#cccccc\",\"titleBar.border\":\"#00000000\",\"titleBar.inactiveBackground\":\"#3c3c3c99\",\"titleBar.inactiveForeground\":\"#cccccc99\",\"tree.indentGuidesStroke\":\"#545864\",\"walkThrough.embeddedEditorBackground\":\"#00000050\",\"widget.shadow\":\"#ffffff00\"},\"displayName\":\"Houston\",\"name\":\"houston\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"enumMember\":{\"foreground\":\"#eef0f9\"},\"variable.constant\":{\"foreground\":\"#ffd493\"},\"variable.defaultLibrary\":{\"foreground\":\"#acafff\"}},\"tokenColors\":[{\"scope\":\"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"variable.other.generic-type.haskell\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"storage.type.haskell\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"support.variable.magic.python\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"variable.parameter.function.language.special.self.python\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"storage.modifier.lifetime.rust\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.function.std.rust\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"entity.name.lifetime.rust\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"variable.language.rust\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"support.constant.edge\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"constant.other.character-class.regexp\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"keyword.operator.quantifier.regexp\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.definition.string.begin,punctuation.definition.string.end\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"comment markup.link\",\"settings\":{\"foreground\":\"#545864\"}},{\"scope\":\"markup.changed.diff\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"markup.inserted.diff\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"markup.deleted.diff\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"meta.function.c,meta.function.cpp\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"punctuation.separator.key-value\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.expression.import\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"support.constant.math\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"support.constant.property.math\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"variable.other.constant\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"storage.type.annotation.java\",\"storage.type.object.array.java\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"source.java\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"meta.method.java\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"storage.modifier.import.java,storage.type.java,storage.type.generic.java\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"keyword.operator.instanceof.java\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"meta.definition.variable.name.java\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.bitwise\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.channel\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.property-value.scss,support.constant.property-value.css\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"keyword.operator.css,keyword.operator.scss,keyword.operator.less\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.separator.list.comma.css\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.color.w3c-standard-color-name.css\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"support.type.vendored.property-name.css\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.module.node,support.type.object.module,support.module.node\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"entity.name.type.module\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"support.constant.json\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"keyword.operator.expression.instanceof\",\"keyword.operator.new\",\"keyword.operator.ternary\",\"keyword.operator.optional\",\"keyword.operator.expression.keyof\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"support.type.object.console\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"support.variable.property.process\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"entity.name.function,support.function.console\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"keyword.operator.misc.rust\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.sigil.rust\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"keyword.operator.delete\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"support.type.object.dom\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.variable.dom,support.variable.property.dom\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"punctuation.separator.delimiter\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"punctuation.separator.c,punctuation.separator.cpp\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"support.type.posix-reserved.c,support.type.posix-reserved.cpp\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"variable.parameter.function.language.python\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"support.type.python\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.logical.python\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"variable.parameter.function.python\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"meta.function-call.generic.python\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"constant.character.format.placeholder.other.python\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.assignment.compound\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"entity.name.namespace\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"variable.c\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"variable.language\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"token.variable.parameter.java\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"import.storage.java\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"token.package.keyword\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"token.package\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"entity.name.function\",\"meta.require\",\"support.function.any-method\",\"variable.function\"],\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"entity.name.type.namespace\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"support.class, entity.name.type.class\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"entity.name.class.identifier.namespace.type\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"entity.name.class\",\"variable.other.class.js\",\"variable.other.class.ts\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"variable.other.class.php\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"entity.name.type\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"control.elements, keyword.operator.less\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"keyword.other.special-method\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"token.storage\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"token.storage.type.java\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.property-value\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.font-name\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"meta.tag\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"entity.other.inherited-class\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"constant.other.symbol\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"constant\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.definition.constant\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"entity.other.attribute-name.html\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"source.astro.meta.attribute.client:idle.html\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffd493\"}},{\"scope\":\"string.quoted.double.html,string.quoted.single.html,string.template.html,punctuation.definition.string.begin.html,punctuation.definition.string.end.html\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#00daef\"}},{\"scope\":\"entity.other.attribute-name.class.css\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#4bf3c8\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"markup.heading punctuation.definition.heading, entity.name.section\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"markup.bold,todo.bold\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.definition.bold\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"markup.italic, punctuation.definition.italic,todo.emphasis\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"emphasis md\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"entity.name.section.markdown\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.definition.heading.markdown\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"markup.heading.setext\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"punctuation.definition.bold.markdown\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"markup.inline.raw.markdown\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"punctuation.definition.list.markdown\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\",\"punctuation.definition.metadata.markdown\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"beginning.punctuation.definition.list.markdown\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.definition.metadata.markdown\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"markup.underline.link.markdown,markup.underline.link.image.markdown\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"string.other.link.title.markdown,string.other.link.description.markdown\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"punctuation.section.embedded, variable.interpolation\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"punctuation.section.embedded.begin,punctuation.section.embedded.end\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.illegal.bad-ampersand.html\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"source.json meta.structure.dictionary.json > string.quoted.json\",\"settings\":{\"foreground\":\"#cc75f4\"}},{\"scope\":\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"support.type.property-name.json punctuation\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"support.other.namespace.use.php,support.other.namespace.use-as.php,support.other.namespace.php,entity.other.alias.php,meta.interface.php\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"keyword.operator.error-control.php\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"keyword.operator.type.php\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"punctuation.section.array.begin.php\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"punctuation.section.array.end.php\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"invalid.illegal.non-null-typehinted.php\",\"settings\":{\"foreground\":\"#f44747\"}},{\"scope\":\"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"support.constant.core.rust\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"entity.name.goto-label.php,support.other.php\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.regexp.php\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"keyword.operator.comparison.php\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"keyword.operator.heredoc.php,keyword.operator.nowdoc.php\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":\"meta.function.decorator.python\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"support.token.decorator.python,meta.function.decorator.identifier.python\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"function.parameter\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"function.brace\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"function.parameter.ruby, function.parameter.cs\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"constant.language.symbol.ruby\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"rgb-value\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"inline-color-decoration rgb-value\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"less rgb-value\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"selector.sass\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"block.scope.end,block.scope.begin\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"storage.type.cs\",\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":\"entity.name.variable.local.cs\",\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":\"token.info-token\",\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":\"token.warn-token\",\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":\"token.error-token\",\"settings\":{\"foreground\":\"#f44747\"}},{\"scope\":\"token.debug-token\",\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"punctuation.definition.template-expression.begin\",\"punctuation.definition.template-expression.end\",\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"meta.template.expression\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"keyword.operator.module\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"support.type.type.flowtype\"],\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":[\"support.type.primitive\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"meta.property.object\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"variable.parameter.function.js\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"keyword.other.template.begin\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"keyword.other.template.end\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"keyword.other.substitution.begin\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"keyword.other.substitution.end\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"keyword.operator.assignment\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"keyword.operator.assignment.go\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"keyword.operator.arithmetic.go\",\"keyword.operator.address.go\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"entity.name.package.go\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"support.type.prelude.elm\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"support.constant.elm\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"punctuation.quasi.element\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"constant.character.entity\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-element\",\"entity.other.attribute-name.pseudo-class\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"entity.global.clojure\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"meta.symbol.clojure\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"constant.keyword.clojure\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"meta.arguments.coffee\",\"variable.parameter.function.coffee\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"source.ini\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"meta.scope.prerequisites.makefile\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"source.makefile\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"storage.modifier.import.groovy\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"meta.method.groovy\"],\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":[\"meta.definition.variable.name.groovy\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"meta.definition.class.inherited.classes.groovy\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"support.variable.semantic.hlsl\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"support.type.texture.hlsl\",\"support.type.sampler.hlsl\",\"support.type.object.hlsl\",\"support.type.object.rw.hlsl\",\"support.type.fx.hlsl\",\"support.type.object.hlsl\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"text.variable\",\"text.bracketed\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"support.type.swift\",\"support.type.vb.asp\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"entity.name.function.xi\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"entity.name.class.xi\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"constant.character.character-class.regexp.xi\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\"constant.regexp.xi\"],\"settings\":{\"foreground\":\"#54b9ff\"}},{\"scope\":[\"keyword.control.xi\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"invalid.xi\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"beginning.punctuation.definition.quote.markdown.xi\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"beginning.punctuation.definition.list.markdown.xi\"],\"settings\":{\"foreground\":\"#eef0f98f\"}},{\"scope\":[\"constant.character.xi\"],\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":[\"accent.xi\"],\"settings\":{\"foreground\":\"#00daef\"}},{\"scope\":[\"wikiword.xi\"],\"settings\":{\"foreground\":\"#ffd493\"}},{\"scope\":[\"constant.other.color.rgb-value.xi\"],\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":[\"punctuation.definition.tag.xi\"],\"settings\":{\"foreground\":\"#545864\"}},{\"scope\":[\"entity.name.label.cs\",\"entity.name.scope-resolution.function.call\",\"entity.name.scope-resolution.function.definition\"],\"settings\":{\"foreground\":\"#acafff\"}},{\"scope\":[\"entity.name.label.cs\",\"markup.heading.setext.1.markdown\",\"markup.heading.setext.2.markdown\"],\"settings\":{\"foreground\":\"#4bf3c8\"}},{\"scope\":[\" meta.brace.square\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"comment, punctuation.definition.comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#eef0f98f\"}},{\"scope\":\"markup.quote.markdown\",\"settings\":{\"foreground\":\"#eef0f98f\"}},{\"scope\":\"punctuation.definition.block.sequence.item.yaml\",\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":[\"constant.language.symbol.elixir\"],\"settings\":{\"foreground\":\"#eef0f9\"}},{\"scope\":\"entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"comment.line.double-slash,comment.block.documentation\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"keyword.control.import.python,keyword.control.flow.python\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.italic.markdown\",\"settings\":{\"fontStyle\":\"italic\"}}],\"type\":\"dark\"}"));
2
+ export { houston_default as default };
@@ -0,0 +1,2 @@
1
+ var kanagawa_dragon_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#282727\",\"activityBar.foreground\":\"#C5C9C5\",\"activityBarBadge.background\":\"#658594\",\"activityBarBadge.foreground\":\"#C5C9C5\",\"badge.background\":\"#282727\",\"button.background\":\"#282727\",\"button.foreground\":\"#C8C093\",\"button.secondaryBackground\":\"#223249\",\"button.secondaryForeground\":\"#C5C9C5\",\"checkbox.border\":\"#223249\",\"debugToolBar.background\":\"#0D0C0C\",\"descriptionForeground\":\"#C5C9C5\",\"diffEditor.insertedTextBackground\":\"#2B332880\",\"dropdown.background\":\"#0D0C0C\",\"dropdown.border\":\"#0D0C0C\",\"editor.background\":\"#181616\",\"editor.findMatchBackground\":\"#2D4F67\",\"editor.findMatchBorder\":\"#FF9E3B\",\"editor.findMatchHighlightBackground\":\"#2D4F6780\",\"editor.foreground\":\"#C5C9C5\",\"editor.lineHighlightBackground\":\"#393836\",\"editor.selectionBackground\":\"#223249\",\"editor.selectionHighlightBackground\":\"#39383680\",\"editor.selectionHighlightBorder\":\"#625E5A\",\"editor.wordHighlightBackground\":\"#3938364D\",\"editor.wordHighlightBorder\":\"#625E5A\",\"editor.wordHighlightStrongBackground\":\"#3938364D\",\"editor.wordHighlightStrongBorder\":\"#625E5A\",\"editorBracketHighlight.foreground1\":\"#8992A7\",\"editorBracketHighlight.foreground2\":\"#B6927B\",\"editorBracketHighlight.foreground3\":\"#8BA4B0\",\"editorBracketHighlight.foreground4\":\"#A292A3\",\"editorBracketHighlight.foreground5\":\"#C4B28A\",\"editorBracketHighlight.foreground6\":\"#8EA4A2\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#C4746E\",\"editorBracketMatch.background\":\"#0D0C0C\",\"editorBracketMatch.border\":\"#625E5A\",\"editorBracketPairGuide.activeBackground1\":\"#8992A7\",\"editorBracketPairGuide.activeBackground2\":\"#B6927B\",\"editorBracketPairGuide.activeBackground3\":\"#8BA4B0\",\"editorBracketPairGuide.activeBackground4\":\"#A292A3\",\"editorBracketPairGuide.activeBackground5\":\"#C4B28A\",\"editorBracketPairGuide.activeBackground6\":\"#8EA4A2\",\"editorCursor.background\":\"#181616\",\"editorCursor.foreground\":\"#C5C9C5\",\"editorError.foreground\":\"#E82424\",\"editorGroup.border\":\"#0D0C0C\",\"editorGroupHeader.tabsBackground\":\"#0D0C0C\",\"editorGutter.addedBackground\":\"#76946A\",\"editorGutter.deletedBackground\":\"#C34043\",\"editorGutter.modifiedBackground\":\"#DCA561\",\"editorHoverWidget.background\":\"#181616\",\"editorHoverWidget.border\":\"#282727\",\"editorHoverWidget.highlightForeground\":\"#658594\",\"editorIndentGuide.activeBackground1\":\"#393836\",\"editorIndentGuide.background1\":\"#282727\",\"editorInlayHint.background\":\"#181616\",\"editorInlayHint.foreground\":\"#737C73\",\"editorLineNumber.activeForeground\":\"#FFA066\",\"editorLineNumber.foreground\":\"#625E5A\",\"editorMarkerNavigation.background\":\"#393836\",\"editorRuler.foreground\":\"#393836\",\"editorSuggestWidget.background\":\"#223249\",\"editorSuggestWidget.border\":\"#223249\",\"editorSuggestWidget.selectedBackground\":\"#2D4F67\",\"editorWarning.foreground\":\"#FF9E3B\",\"editorWhitespace.foreground\":\"#181616\",\"editorWidget.background\":\"#181616\",\"focusBorder\":\"#223249\",\"foreground\":\"#C5C9C5\",\"gitDecoration.ignoredResourceForeground\":\"#737C73\",\"input.background\":\"#0D0C0C\",\"list.activeSelectionBackground\":\"#393836\",\"list.activeSelectionForeground\":\"#C5C9C5\",\"list.focusBackground\":\"#282727\",\"list.focusForeground\":\"#C5C9C5\",\"list.highlightForeground\":\"#8BA4B0\",\"list.hoverBackground\":\"#393836\",\"list.hoverForeground\":\"#C5C9C5\",\"list.inactiveSelectionBackground\":\"#282727\",\"list.inactiveSelectionForeground\":\"#C5C9C5\",\"list.warningForeground\":\"#FF9E3B\",\"menu.background\":\"#393836\",\"menu.border\":\"#0D0C0C\",\"menu.foreground\":\"#C5C9C5\",\"menu.selectionBackground\":\"#0D0C0C\",\"menu.selectionForeground\":\"#C5C9C5\",\"menu.separatorBackground\":\"#625E5A\",\"menubar.selectionBackground\":\"#0D0C0C\",\"menubar.selectionForeground\":\"#C5C9C5\",\"minimapGutter.addedBackground\":\"#76946A\",\"minimapGutter.deletedBackground\":\"#C34043\",\"minimapGutter.modifiedBackground\":\"#DCA561\",\"panel.border\":\"#0D0C0C\",\"panelSectionHeader.background\":\"#181616\",\"peekView.border\":\"#625E5A\",\"peekViewEditor.background\":\"#282727\",\"peekViewEditor.matchHighlightBackground\":\"#2D4F67\",\"peekViewResult.background\":\"#393836\",\"scrollbar.shadow\":\"#393836\",\"scrollbarSlider.activeBackground\":\"#28272780\",\"scrollbarSlider.background\":\"#625E5A66\",\"scrollbarSlider.hoverBackground\":\"#625E5A80\",\"settings.focusedRowBackground\":\"#393836\",\"settings.headerForeground\":\"#C5C9C5\",\"sideBar.background\":\"#181616\",\"sideBar.border\":\"#0D0C0C\",\"sideBar.foreground\":\"#C5C9C5\",\"sideBarSectionHeader.background\":\"#393836\",\"sideBarSectionHeader.foreground\":\"#C5C9C5\",\"statusBar.background\":\"#0D0C0C\",\"statusBar.debuggingBackground\":\"#E82424\",\"statusBar.debuggingBorder\":\"#8992A7\",\"statusBar.debuggingForeground\":\"#C5C9C5\",\"statusBar.foreground\":\"#C8C093\",\"statusBar.noFolderBackground\":\"#181616\",\"statusBarItem.hoverBackground\":\"#393836\",\"statusBarItem.remoteBackground\":\"#2D4F67\",\"statusBarItem.remoteForeground\":\"#C5C9C5\",\"tab.activeBackground\":\"#282727\",\"tab.activeForeground\":\"#8BA4B0\",\"tab.border\":\"#282727\",\"tab.hoverBackground\":\"#393836\",\"tab.inactiveBackground\":\"#1D1C19\",\"tab.unfocusedHoverBackground\":\"#181616\",\"terminal.ansiBlack\":\"#0D0C0C\",\"terminal.ansiBlue\":\"#8BA4B0\",\"terminal.ansiBrightBlack\":\"#A6A69C\",\"terminal.ansiBrightBlue\":\"#7FB4CA\",\"terminal.ansiBrightCyan\":\"#7AA89F\",\"terminal.ansiBrightGreen\":\"#87A987\",\"terminal.ansiBrightMagenta\":\"#938AA9\",\"terminal.ansiBrightRed\":\"#E46876\",\"terminal.ansiBrightWhite\":\"#C5C9C5\",\"terminal.ansiBrightYellow\":\"#E6C384\",\"terminal.ansiCyan\":\"#8EA4A2\",\"terminal.ansiGreen\":\"#8A9A7B\",\"terminal.ansiMagenta\":\"#A292A3\",\"terminal.ansiRed\":\"#C4746E\",\"terminal.ansiWhite\":\"#C8C093\",\"terminal.ansiYellow\":\"#C4B28A\",\"terminal.background\":\"#181616\",\"terminal.border\":\"#0D0C0C\",\"terminal.foreground\":\"#C5C9C5\",\"terminal.selectionBackground\":\"#223249\",\"textBlockQuote.background\":\"#181616\",\"textBlockQuote.border\":\"#0D0C0C\",\"textLink.foreground\":\"#6A9589\",\"textPreformat.foreground\":\"#FF9E3B\",\"titleBar.activeBackground\":\"#393836\",\"titleBar.activeForeground\":\"#C5C9C5\",\"titleBar.inactiveBackground\":\"#181616\",\"titleBar.inactiveForeground\":\"#C5C9C5\",\"walkThrough.embeddedEditorBackground\":\"#181616\"},\"displayName\":\"Kanagawa Dragon\",\"name\":\"kanagawa-dragon\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"arithmetic\":\"#B98D7B\",\"function\":\"#8BA4B0\",\"keyword.controlFlow\":{\"fontStyle\":\"bold\",\"foreground\":\"#8992A7\"},\"macro\":\"#C4746E\",\"method\":\"#949FB5\",\"operator\":\"#B98D7B\",\"parameter\":\"#A6A69C\",\"parameter.declaration\":\"#A6A69C\",\"parameter.definition\":\"#A6A69C\",\"variable\":\"#C5C9C5\",\"variable.readonly\":\"#C5C9C5\",\"variable.readonly.defaultLibrary\":\"#C5C9C5\",\"variable.readonly.local\":\"#C5C9C5\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#737C73\"}},{\"scope\":[\"variable\",\"string constant.other.placeholder\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#E82424\"}},{\"scope\":[\"storage.type\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"storage.modifier\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"keyword.control.flow\",\"keyword.control.conditional\",\"keyword.control.loop\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8992A7\"}},{\"scope\":[\"keyword.control\",\"constant.other.color\",\"meta.tag\",\"keyword.other.template\",\"keyword.other.substitution\",\"keyword.other\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"keyword.other.definition.ini\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"keyword.control.trycatch\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#C4746E\"}},{\"scope\":[\"keyword.other.unit\",\"keyword.operator\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"punctuation\",\"punctuation.definition.tag\",\"punctuation.separator.inheritance.php\",\"punctuation.definition.tag.html\",\"punctuation.definition.tag.begin.html\",\"punctuation.definition.tag.end.html\",\"punctuation.section.embedded\",\"meta.brace\",\"keyword.operator.type.annotation\",\"keyword.operator.namespace\"],\"settings\":{\"foreground\":\"#9E9B93\"}},{\"scope\":[\"entity.name.tag\",\"meta.tag.sgml\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"entity.name.function\",\"meta.function-call\",\"variable.function\",\"support.function\"],\"settings\":{\"foreground\":\"#8BA4B0\"}},{\"scope\":[\"keyword.other.special-method\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"entity.name.function.macro\"],\"settings\":{\"foreground\":\"#C4746E\"}},{\"scope\":[\"meta.block variable.other\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"variable.other.enummember\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"support.other.variable\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"string.other.link\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"constant.numeric\",\"constant.language\",\"support.constant\",\"constant.character\",\"constant.escape\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"constant.numeric\"],\"settings\":{\"foreground\":\"#A292A3\"}},{\"scope\":[\"string\",\"punctuation.definition.string\",\"constant.other.symbol\",\"constant.other.key\",\"entity.other.inherited-class\",\"markup.heading\",\"markup.inserted.git_gutter\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\",\"markup.inline.raw.string\"],\"settings\":{\"foreground\":\"#8A9A7B\"}},{\"scope\":[\"entity.name\",\"support.type\",\"support.class\",\"support.other.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"support.type.sys-types\"],\"settings\":{\"foreground\":\"#8EA4A2\"}},{\"scope\":[\"entity.name.type.module\",\"entity.name.namespace\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"entity.name.import.go\"],\"settings\":{\"foreground\":\"#8A9A7B\"}},{\"scope\":[\"keyword.blade\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"variable.other.property\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"keyword.control.import\",\"keyword.import\",\"meta.import\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"source.css support.type.property-name\",\"source.sass support.type.property-name\",\"source.scss support.type.property-name\",\"source.less support.type.property-name\",\"source.stylus support.type.property-name\",\"source.postcss support.type.property-name\"],\"settings\":{\"foreground\":\"#8EA4A2\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#C4746E\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#C4746E\"}},{\"scope\":[\"entity.name.method.js\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"variable.function.constructor\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"entity.other.attribute-name.class\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"source.sass keyword.control\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#76946A\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#C34043\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#DCA561\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#B98D7B\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#949FB5\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"foreground\":\"#C4746E\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#A292A3\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C4746E\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#8BA4B0\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#A292A3\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#8A9A7B\"}},{\"scope\":[\"meta.tag JSXNested\",\"meta.jsx.children\",\"text.html\",\"text.log\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"text.html.markdown\",\"punctuation.definition.list_item.markdown\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"markdown.heading\",\"entity.name.section.markdown\",\"markup.heading.markdown\"],\"settings\":{\"foreground\":\"#8BA4B0\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#C4746E\"}},{\"scope\":[\"markup.bold\",\"markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":[\"markup.bold markup.italic\",\"markup.italic markup.bold\",\"markup.quote markup.bold\",\"markup.bold markup.italic string\",\"markup.italic markup.bold string\",\"markup.quote markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#C4746E\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#949FB5\"}},{\"scope\":[\"markup.quote punctuation.definition.blockquote.markdown\"],\"settings\":{\"foreground\":\"#737C73\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#B6927B\"}},{\"scope\":[\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"constant.other.reference.link.markdown\"],\"settings\":{\"foreground\":\"#C4B28A\"}},{\"scope\":[\"markup.raw.block\"],\"settings\":{\"foreground\":\"#8992A7\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\"],\"settings\":{\"foreground\":\"#737C73\"}},{\"scope\":[\"punctuation.definition.fenced.markdown\"],\"settings\":{\"foreground\":\"#737C73\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\",\"variable.language.fenced.markdown\",\"punctuation.section.class.end\"],\"settings\":{\"foreground\":\"#C5C9C5\"}},{\"scope\":[\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#737C73\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9E9B93\"}},{\"scope\":[\"markup.table\"],\"settings\":{\"foreground\":\"#C5C9C5\"}}],\"type\":\"dark\"}"));
2
+ export { kanagawa_dragon_default as default };
@@ -0,0 +1,2 @@
1
+ var kanagawa_lotus_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#E7DBA0\",\"activityBar.foreground\":\"#545464\",\"activityBarBadge.background\":\"#5A7785\",\"activityBarBadge.foreground\":\"#545464\",\"badge.background\":\"#E7DBA0\",\"button.background\":\"#E7DBA0\",\"button.foreground\":\"#43436C\",\"button.secondaryBackground\":\"#C7D7E0\",\"button.secondaryForeground\":\"#545464\",\"checkbox.border\":\"#C7D7E0\",\"debugToolBar.background\":\"#D5CEA3\",\"descriptionForeground\":\"#545464\",\"diffEditor.insertedTextBackground\":\"#B7D0AE80\",\"dropdown.background\":\"#D5CEA3\",\"dropdown.border\":\"#D5CEA3\",\"editor.background\":\"#F2ECBC\",\"editor.findMatchBackground\":\"#B5CBD2\",\"editor.findMatchBorder\":\"#E98A00\",\"editor.findMatchHighlightBackground\":\"#B5CBD280\",\"editor.foreground\":\"#545464\",\"editor.lineHighlightBackground\":\"#E4D794\",\"editor.selectionBackground\":\"#C7D7E0\",\"editor.selectionHighlightBackground\":\"#E4D79480\",\"editor.selectionHighlightBorder\":\"#766B90\",\"editor.wordHighlightBackground\":\"#E4D7944D\",\"editor.wordHighlightBorder\":\"#766B90\",\"editor.wordHighlightStrongBackground\":\"#E4D7944D\",\"editor.wordHighlightStrongBorder\":\"#766B90\",\"editorBracketHighlight.foreground1\":\"#624C83\",\"editorBracketHighlight.foreground2\":\"#CC6D00\",\"editorBracketHighlight.foreground3\":\"#4D699B\",\"editorBracketHighlight.foreground4\":\"#B35B79\",\"editorBracketHighlight.foreground5\":\"#77713F\",\"editorBracketHighlight.foreground6\":\"#597B75\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#D9A594\",\"editorBracketMatch.background\":\"#D5CEA3\",\"editorBracketMatch.border\":\"#766B90\",\"editorBracketPairGuide.activeBackground1\":\"#624C83\",\"editorBracketPairGuide.activeBackground2\":\"#CC6D00\",\"editorBracketPairGuide.activeBackground3\":\"#4D699B\",\"editorBracketPairGuide.activeBackground4\":\"#B35B79\",\"editorBracketPairGuide.activeBackground5\":\"#77713F\",\"editorBracketPairGuide.activeBackground6\":\"#597B75\",\"editorCursor.background\":\"#F2ECBC\",\"editorCursor.foreground\":\"#545464\",\"editorError.foreground\":\"#E82424\",\"editorGroup.border\":\"#D5CEA3\",\"editorGroupHeader.tabsBackground\":\"#D5CEA3\",\"editorGutter.addedBackground\":\"#6E915F\",\"editorGutter.deletedBackground\":\"#D7474B\",\"editorGutter.modifiedBackground\":\"#DE9800\",\"editorHoverWidget.background\":\"#F2ECBC\",\"editorHoverWidget.border\":\"#E7DBA0\",\"editorHoverWidget.highlightForeground\":\"#5A7785\",\"editorIndentGuide.activeBackground1\":\"#E4D794\",\"editorIndentGuide.background1\":\"#E7DBA0\",\"editorInlayHint.background\":\"#F2ECBC\",\"editorInlayHint.foreground\":\"#716E61\",\"editorLineNumber.activeForeground\":\"#CC6D00\",\"editorLineNumber.foreground\":\"#766B90\",\"editorMarkerNavigation.background\":\"#E4D794\",\"editorRuler.foreground\":\"#ff0000\",\"editorSuggestWidget.background\":\"#C7D7E0\",\"editorSuggestWidget.border\":\"#C7D7E0\",\"editorSuggestWidget.selectedBackground\":\"#B5CBD2\",\"editorWarning.foreground\":\"#E98A00\",\"editorWhitespace.foreground\":\"#F2ECBC\",\"editorWidget.background\":\"#F2ECBC\",\"focusBorder\":\"#C7D7E0\",\"foreground\":\"#545464\",\"gitDecoration.ignoredResourceForeground\":\"#716E61\",\"input.background\":\"#D5CEA3\",\"list.activeSelectionBackground\":\"#E4D794\",\"list.activeSelectionForeground\":\"#545464\",\"list.focusBackground\":\"#E7DBA0\",\"list.focusForeground\":\"#545464\",\"list.highlightForeground\":\"#4D699B\",\"list.hoverBackground\":\"#E4D794\",\"list.hoverForeground\":\"#545464\",\"list.inactiveSelectionBackground\":\"#E7DBA0\",\"list.inactiveSelectionForeground\":\"#545464\",\"list.warningForeground\":\"#E98A00\",\"menu.background\":\"#E4D794\",\"menu.border\":\"#D5CEA3\",\"menu.foreground\":\"#545464\",\"menu.selectionBackground\":\"#D5CEA3\",\"menu.selectionForeground\":\"#545464\",\"menu.separatorBackground\":\"#766B90\",\"menubar.selectionBackground\":\"#D5CEA3\",\"menubar.selectionForeground\":\"#545464\",\"minimapGutter.addedBackground\":\"#6E915F\",\"minimapGutter.deletedBackground\":\"#D7474B\",\"minimapGutter.modifiedBackground\":\"#DE9800\",\"panel.border\":\"#D5CEA3\",\"panelSectionHeader.background\":\"#F2ECBC\",\"peekView.border\":\"#766B90\",\"peekViewEditor.background\":\"#E7DBA0\",\"peekViewEditor.matchHighlightBackground\":\"#B5CBD2\",\"peekViewResult.background\":\"#E4D794\",\"scrollbar.shadow\":\"#E4D794\",\"scrollbarSlider.activeBackground\":\"#E7DBA080\",\"scrollbarSlider.background\":\"#766B9066\",\"scrollbarSlider.hoverBackground\":\"#766B9080\",\"settings.focusedRowBackground\":\"#E4D794\",\"settings.headerForeground\":\"#545464\",\"sideBar.background\":\"#F2ECBC\",\"sideBar.border\":\"#D5CEA3\",\"sideBar.foreground\":\"#545464\",\"sideBarSectionHeader.background\":\"#E4D794\",\"sideBarSectionHeader.foreground\":\"#545464\",\"statusBar.background\":\"#D5CEA3\",\"statusBar.debuggingBackground\":\"#E82424\",\"statusBar.debuggingBorder\":\"#624C83\",\"statusBar.debuggingForeground\":\"#545464\",\"statusBar.foreground\":\"#43436C\",\"statusBar.noFolderBackground\":\"#F2ECBC\",\"statusBarItem.hoverBackground\":\"#E4D794\",\"statusBarItem.remoteBackground\":\"#B5CBD2\",\"statusBarItem.remoteForeground\":\"#545464\",\"tab.activeBackground\":\"#E7DBA0\",\"tab.activeForeground\":\"#4D699B\",\"tab.border\":\"#E7DBA0\",\"tab.hoverBackground\":\"#E4D794\",\"tab.inactiveBackground\":\"#E5DDB0\",\"tab.unfocusedHoverBackground\":\"#F2ECBC\",\"terminal.ansiBlack\":\"#1F1F28\",\"terminal.ansiBlue\":\"#4D699B\",\"terminal.ansiBrightBlack\":\"#8A8980\",\"terminal.ansiBrightBlue\":\"#6693BF\",\"terminal.ansiBrightCyan\":\"#5E857A\",\"terminal.ansiBrightGreen\":\"#6E915F\",\"terminal.ansiBrightMagenta\":\"#624C83\",\"terminal.ansiBrightRed\":\"#D7474B\",\"terminal.ansiBrightWhite\":\"#43436C\",\"terminal.ansiBrightYellow\":\"#836F4A\",\"terminal.ansiCyan\":\"#597B75\",\"terminal.ansiGreen\":\"#6F894E\",\"terminal.ansiMagenta\":\"#B35B79\",\"terminal.ansiRed\":\"#C84053\",\"terminal.ansiWhite\":\"#545464\",\"terminal.ansiYellow\":\"#77713F\",\"terminal.background\":\"#F2ECBC\",\"terminal.border\":\"#D5CEA3\",\"terminal.foreground\":\"#545464\",\"terminal.selectionBackground\":\"#C7D7E0\",\"textBlockQuote.background\":\"#F2ECBC\",\"textBlockQuote.border\":\"#D5CEA3\",\"textLink.foreground\":\"#5E857A\",\"textPreformat.foreground\":\"#E98A00\",\"titleBar.activeBackground\":\"#E4D794\",\"titleBar.activeForeground\":\"#545464\",\"titleBar.inactiveBackground\":\"#F2ECBC\",\"titleBar.inactiveForeground\":\"#545464\",\"walkThrough.embeddedEditorBackground\":\"#F2ECBC\"},\"displayName\":\"Kanagawa Lotus\",\"name\":\"kanagawa-lotus\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"arithmetic\":\"#836F4A\",\"function\":\"#4D699B\",\"keyword.controlFlow\":{\"fontStyle\":\"bold\",\"foreground\":\"#624C83\"},\"macro\":\"#C84053\",\"method\":\"#6693BF\",\"operator\":\"#836F4A\",\"parameter\":\"#5D57A3\",\"parameter.declaration\":\"#5D57A3\",\"parameter.definition\":\"#5D57A3\",\"variable\":\"#545464\",\"variable.readonly\":\"#545464\",\"variable.readonly.defaultLibrary\":\"#545464\",\"variable.readonly.local\":\"#545464\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#716E61\"}},{\"scope\":[\"variable\",\"string constant.other.placeholder\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#E82424\"}},{\"scope\":[\"storage.type\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"storage.modifier\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"keyword.control.flow\",\"keyword.control.conditional\",\"keyword.control.loop\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#624C83\"}},{\"scope\":[\"keyword.control\",\"constant.other.color\",\"meta.tag\",\"keyword.other.template\",\"keyword.other.substitution\",\"keyword.other\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"keyword.other.definition.ini\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"keyword.control.trycatch\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#D9A594\"}},{\"scope\":[\"keyword.other.unit\",\"keyword.operator\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"punctuation\",\"punctuation.definition.tag\",\"punctuation.separator.inheritance.php\",\"punctuation.definition.tag.html\",\"punctuation.definition.tag.begin.html\",\"punctuation.definition.tag.end.html\",\"punctuation.section.embedded\",\"meta.brace\",\"keyword.operator.type.annotation\",\"keyword.operator.namespace\"],\"settings\":{\"foreground\":\"#4E8CA2\"}},{\"scope\":[\"entity.name.tag\",\"meta.tag.sgml\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"entity.name.function\",\"meta.function-call\",\"variable.function\",\"support.function\"],\"settings\":{\"foreground\":\"#4D699B\"}},{\"scope\":[\"keyword.other.special-method\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"entity.name.function.macro\"],\"settings\":{\"foreground\":\"#C84053\"}},{\"scope\":[\"meta.block variable.other\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"variable.other.enummember\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"support.other.variable\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"string.other.link\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"constant.numeric\",\"constant.language\",\"support.constant\",\"constant.character\",\"constant.escape\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"constant.numeric\"],\"settings\":{\"foreground\":\"#B35B79\"}},{\"scope\":[\"string\",\"punctuation.definition.string\",\"constant.other.symbol\",\"constant.other.key\",\"entity.other.inherited-class\",\"markup.heading\",\"markup.inserted.git_gutter\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\",\"markup.inline.raw.string\"],\"settings\":{\"foreground\":\"#6F894E\"}},{\"scope\":[\"entity.name\",\"support.type\",\"support.class\",\"support.other.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"support.type.sys-types\"],\"settings\":{\"foreground\":\"#597B75\"}},{\"scope\":[\"entity.name.type.module\",\"entity.name.namespace\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"entity.name.import.go\"],\"settings\":{\"foreground\":\"#6F894E\"}},{\"scope\":[\"keyword.blade\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"variable.other.property\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"keyword.control.import\",\"keyword.import\",\"meta.import\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"source.css support.type.property-name\",\"source.sass support.type.property-name\",\"source.scss support.type.property-name\",\"source.less support.type.property-name\",\"source.stylus support.type.property-name\",\"source.postcss support.type.property-name\"],\"settings\":{\"foreground\":\"#597B75\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#D9A594\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#D9A594\"}},{\"scope\":[\"entity.name.method.js\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"variable.function.constructor\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"entity.other.attribute-name.class\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"source.sass keyword.control\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#6E915F\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#D7474B\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#DE9800\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#836F4A\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#6693BF\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"foreground\":\"#D9A594\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#B35B79\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#D9A594\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#4D699B\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#B35B79\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#6F894E\"}},{\"scope\":[\"meta.tag JSXNested\",\"meta.jsx.children\",\"text.html\",\"text.log\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"text.html.markdown\",\"punctuation.definition.list_item.markdown\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"markdown.heading\",\"entity.name.section.markdown\",\"markup.heading.markdown\"],\"settings\":{\"foreground\":\"#4D699B\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#C84053\"}},{\"scope\":[\"markup.bold\",\"markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":[\"markup.bold markup.italic\",\"markup.italic markup.bold\",\"markup.quote markup.bold\",\"markup.bold markup.italic string\",\"markup.italic markup.bold string\",\"markup.quote markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#C84053\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#6693BF\"}},{\"scope\":[\"markup.quote punctuation.definition.blockquote.markdown\"],\"settings\":{\"foreground\":\"#716E61\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#CC6D00\"}},{\"scope\":[\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"constant.other.reference.link.markdown\"],\"settings\":{\"foreground\":\"#77713F\"}},{\"scope\":[\"markup.raw.block\"],\"settings\":{\"foreground\":\"#624C83\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\"],\"settings\":{\"foreground\":\"#716E61\"}},{\"scope\":[\"punctuation.definition.fenced.markdown\"],\"settings\":{\"foreground\":\"#716E61\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\",\"variable.language.fenced.markdown\",\"punctuation.section.class.end\"],\"settings\":{\"foreground\":\"#545464\"}},{\"scope\":[\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#716E61\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#4E8CA2\"}},{\"scope\":[\"markup.table\"],\"settings\":{\"foreground\":\"#545464\"}}],\"type\":\"light\"}"));
2
+ export { kanagawa_lotus_default as default };
@@ -0,0 +1,2 @@
1
+ var kanagawa_wave_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#2A2A37\",\"activityBar.foreground\":\"#DCD7BA\",\"activityBarBadge.background\":\"#658594\",\"activityBarBadge.foreground\":\"#DCD7BA\",\"badge.background\":\"#2A2A37\",\"button.background\":\"#2A2A37\",\"button.foreground\":\"#C8C093\",\"button.secondaryBackground\":\"#223249\",\"button.secondaryForeground\":\"#DCD7BA\",\"checkbox.border\":\"#223249\",\"debugToolBar.background\":\"#16161D\",\"descriptionForeground\":\"#DCD7BA\",\"diffEditor.insertedTextBackground\":\"#2B332880\",\"dropdown.background\":\"#16161D\",\"dropdown.border\":\"#16161D\",\"editor.background\":\"#1F1F28\",\"editor.findMatchBackground\":\"#2D4F67\",\"editor.findMatchBorder\":\"#FF9E3B\",\"editor.findMatchHighlightBackground\":\"#2D4F6780\",\"editor.foreground\":\"#DCD7BA\",\"editor.lineHighlightBackground\":\"#363646\",\"editor.selectionBackground\":\"#223249\",\"editor.selectionHighlightBackground\":\"#36364680\",\"editor.selectionHighlightBorder\":\"#54546D\",\"editor.wordHighlightBackground\":\"#3636464D\",\"editor.wordHighlightBorder\":\"#54546D\",\"editor.wordHighlightStrongBackground\":\"#3636464D\",\"editor.wordHighlightStrongBorder\":\"#54546D\",\"editorBracketHighlight.foreground1\":\"#957FB8\",\"editorBracketHighlight.foreground2\":\"#FFA066\",\"editorBracketHighlight.foreground3\":\"#7E9CD8\",\"editorBracketHighlight.foreground4\":\"#D27E99\",\"editorBracketHighlight.foreground5\":\"#E6C384\",\"editorBracketHighlight.foreground6\":\"#7AA89F\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#FF5D62\",\"editorBracketMatch.background\":\"#16161D\",\"editorBracketMatch.border\":\"#54546D\",\"editorBracketPairGuide.activeBackground1\":\"#957FB8\",\"editorBracketPairGuide.activeBackground2\":\"#FFA066\",\"editorBracketPairGuide.activeBackground3\":\"#7E9CD8\",\"editorBracketPairGuide.activeBackground4\":\"#D27E99\",\"editorBracketPairGuide.activeBackground5\":\"#E6C384\",\"editorBracketPairGuide.activeBackground6\":\"#7AA89F\",\"editorCursor.background\":\"#1F1F28\",\"editorCursor.foreground\":\"#DCD7BA\",\"editorError.foreground\":\"#E82424\",\"editorGroup.border\":\"#16161D\",\"editorGroupHeader.tabsBackground\":\"#16161D\",\"editorGutter.addedBackground\":\"#76946A\",\"editorGutter.deletedBackground\":\"#C34043\",\"editorGutter.modifiedBackground\":\"#DCA561\",\"editorHoverWidget.background\":\"#1F1F28\",\"editorHoverWidget.border\":\"#2A2A37\",\"editorHoverWidget.highlightForeground\":\"#658594\",\"editorIndentGuide.activeBackground1\":\"#363646\",\"editorIndentGuide.background1\":\"#2A2A37\",\"editorInlayHint.background\":\"#1F1F28\",\"editorInlayHint.foreground\":\"#727169\",\"editorLineNumber.activeForeground\":\"#FFA066\",\"editorLineNumber.foreground\":\"#54546D\",\"editorMarkerNavigation.background\":\"#363646\",\"editorRuler.foreground\":\"#363646\",\"editorSuggestWidget.background\":\"#223249\",\"editorSuggestWidget.border\":\"#223249\",\"editorSuggestWidget.selectedBackground\":\"#2D4F67\",\"editorWarning.foreground\":\"#FF9E3B\",\"editorWhitespace.foreground\":\"#1F1F28\",\"editorWidget.background\":\"#1F1F28\",\"focusBorder\":\"#223249\",\"foreground\":\"#DCD7BA\",\"gitDecoration.ignoredResourceForeground\":\"#727169\",\"input.background\":\"#16161D\",\"list.activeSelectionBackground\":\"#363646\",\"list.activeSelectionForeground\":\"#DCD7BA\",\"list.focusBackground\":\"#2A2A37\",\"list.focusForeground\":\"#DCD7BA\",\"list.highlightForeground\":\"#7E9CD8\",\"list.hoverBackground\":\"#363646\",\"list.hoverForeground\":\"#DCD7BA\",\"list.inactiveSelectionBackground\":\"#2A2A37\",\"list.inactiveSelectionForeground\":\"#DCD7BA\",\"list.warningForeground\":\"#FF9E3B\",\"menu.background\":\"#363646\",\"menu.border\":\"#16161D\",\"menu.foreground\":\"#DCD7BA\",\"menu.selectionBackground\":\"#16161D\",\"menu.selectionForeground\":\"#DCD7BA\",\"menu.separatorBackground\":\"#54546D\",\"menubar.selectionBackground\":\"#16161D\",\"menubar.selectionForeground\":\"#DCD7BA\",\"minimapGutter.addedBackground\":\"#76946A\",\"minimapGutter.deletedBackground\":\"#C34043\",\"minimapGutter.modifiedBackground\":\"#DCA561\",\"panel.border\":\"#16161D\",\"panelSectionHeader.background\":\"#1F1F28\",\"peekView.border\":\"#54546D\",\"peekViewEditor.background\":\"#2A2A37\",\"peekViewEditor.matchHighlightBackground\":\"#2D4F67\",\"peekViewResult.background\":\"#363646\",\"scrollbar.shadow\":\"#363646\",\"scrollbarSlider.activeBackground\":\"#2A2A3780\",\"scrollbarSlider.background\":\"#54546D66\",\"scrollbarSlider.hoverBackground\":\"#54546D80\",\"settings.focusedRowBackground\":\"#363646\",\"settings.headerForeground\":\"#DCD7BA\",\"sideBar.background\":\"#1F1F28\",\"sideBar.border\":\"#16161D\",\"sideBar.foreground\":\"#DCD7BA\",\"sideBarSectionHeader.background\":\"#363646\",\"sideBarSectionHeader.foreground\":\"#DCD7BA\",\"statusBar.background\":\"#16161D\",\"statusBar.debuggingBackground\":\"#E82424\",\"statusBar.debuggingBorder\":\"#957FB8\",\"statusBar.debuggingForeground\":\"#DCD7BA\",\"statusBar.foreground\":\"#C8C093\",\"statusBar.noFolderBackground\":\"#1F1F28\",\"statusBarItem.hoverBackground\":\"#363646\",\"statusBarItem.remoteBackground\":\"#2D4F67\",\"statusBarItem.remoteForeground\":\"#DCD7BA\",\"tab.activeBackground\":\"#2A2A37\",\"tab.activeForeground\":\"#7E9CD8\",\"tab.border\":\"#2A2A37\",\"tab.hoverBackground\":\"#363646\",\"tab.inactiveBackground\":\"#1A1A22\",\"tab.unfocusedHoverBackground\":\"#1F1F28\",\"terminal.ansiBlack\":\"#16161D\",\"terminal.ansiBlue\":\"#7E9CD8\",\"terminal.ansiBrightBlack\":\"#727169\",\"terminal.ansiBrightBlue\":\"#7FB4CA\",\"terminal.ansiBrightCyan\":\"#7AA89F\",\"terminal.ansiBrightGreen\":\"#98BB6C\",\"terminal.ansiBrightMagenta\":\"#938AA9\",\"terminal.ansiBrightRed\":\"#E82424\",\"terminal.ansiBrightWhite\":\"#DCD7BA\",\"terminal.ansiBrightYellow\":\"#E6C384\",\"terminal.ansiCyan\":\"#6A9589\",\"terminal.ansiGreen\":\"#76946A\",\"terminal.ansiMagenta\":\"#957FB8\",\"terminal.ansiRed\":\"#C34043\",\"terminal.ansiWhite\":\"#C8C093\",\"terminal.ansiYellow\":\"#C0A36E\",\"terminal.background\":\"#1F1F28\",\"terminal.border\":\"#16161D\",\"terminal.foreground\":\"#DCD7BA\",\"terminal.selectionBackground\":\"#223249\",\"textBlockQuote.background\":\"#1F1F28\",\"textBlockQuote.border\":\"#16161D\",\"textLink.foreground\":\"#6A9589\",\"textPreformat.foreground\":\"#FF9E3B\",\"titleBar.activeBackground\":\"#363646\",\"titleBar.activeForeground\":\"#DCD7BA\",\"titleBar.inactiveBackground\":\"#1F1F28\",\"titleBar.inactiveForeground\":\"#DCD7BA\",\"walkThrough.embeddedEditorBackground\":\"#1F1F28\"},\"displayName\":\"Kanagawa Wave\",\"name\":\"kanagawa-wave\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"arithmetic\":\"#C0A36E\",\"function\":\"#7E9CD8\",\"keyword.controlFlow\":{\"fontStyle\":\"bold\",\"foreground\":\"#957FB8\"},\"macro\":\"#E46876\",\"method\":\"#7FB4CA\",\"operator\":\"#C0A36E\",\"parameter\":\"#B8B4D0\",\"parameter.declaration\":\"#B8B4D0\",\"parameter.definition\":\"#B8B4D0\",\"variable\":\"#DCD7BA\",\"variable.readonly\":\"#DCD7BA\",\"variable.readonly.defaultLibrary\":\"#DCD7BA\",\"variable.readonly.local\":\"#DCD7BA\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#727169\"}},{\"scope\":[\"variable\",\"string constant.other.placeholder\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#E82424\"}},{\"scope\":[\"storage.type\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"storage.modifier\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"keyword.control.flow\",\"keyword.control.conditional\",\"keyword.control.loop\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#957FB8\"}},{\"scope\":[\"keyword.control\",\"constant.other.color\",\"meta.tag\",\"keyword.other.template\",\"keyword.other.substitution\",\"keyword.other\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"keyword.other.definition.ini\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"keyword.control.trycatch\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#FF5D62\"}},{\"scope\":[\"keyword.other.unit\",\"keyword.operator\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"punctuation\",\"punctuation.definition.tag\",\"punctuation.separator.inheritance.php\",\"punctuation.definition.tag.html\",\"punctuation.definition.tag.begin.html\",\"punctuation.definition.tag.end.html\",\"punctuation.section.embedded\",\"meta.brace\",\"keyword.operator.type.annotation\",\"keyword.operator.namespace\"],\"settings\":{\"foreground\":\"#9CABCA\"}},{\"scope\":[\"entity.name.tag\",\"meta.tag.sgml\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"entity.name.function\",\"meta.function-call\",\"variable.function\",\"support.function\"],\"settings\":{\"foreground\":\"#7E9CD8\"}},{\"scope\":[\"keyword.other.special-method\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"entity.name.function.macro\"],\"settings\":{\"foreground\":\"#E46876\"}},{\"scope\":[\"meta.block variable.other\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"variable.other.enummember\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"support.other.variable\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"string.other.link\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"constant.numeric\",\"constant.language\",\"support.constant\",\"constant.character\",\"constant.escape\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"constant.numeric\"],\"settings\":{\"foreground\":\"#D27E99\"}},{\"scope\":[\"string\",\"punctuation.definition.string\",\"constant.other.symbol\",\"constant.other.key\",\"entity.other.inherited-class\",\"markup.heading\",\"markup.inserted.git_gutter\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\",\"markup.inline.raw.string\"],\"settings\":{\"foreground\":\"#98BB6C\"}},{\"scope\":[\"entity.name\",\"support.type\",\"support.class\",\"support.other.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"support.type.sys-types\"],\"settings\":{\"foreground\":\"#7AA89F\"}},{\"scope\":[\"entity.name.type.module\",\"entity.name.namespace\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"entity.name.import.go\"],\"settings\":{\"foreground\":\"#98BB6C\"}},{\"scope\":[\"keyword.blade\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"variable.other.property\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"keyword.control.import\",\"keyword.import\",\"meta.import\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"source.css support.type.property-name\",\"source.sass support.type.property-name\",\"source.scss support.type.property-name\",\"source.less support.type.property-name\",\"source.stylus support.type.property-name\",\"source.postcss support.type.property-name\"],\"settings\":{\"foreground\":\"#7AA89F\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#FF5D62\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#FF5D62\"}},{\"scope\":[\"entity.name.method.js\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"variable.function.constructor\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"entity.other.attribute-name.class\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"source.sass keyword.control\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#76946A\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#C34043\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#DCA561\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#C0A36E\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"foreground\":\"#FF5D62\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#D27E99\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FF5D62\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#7E9CD8\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#D27E99\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#98BB6C\"}},{\"scope\":[\"meta.tag JSXNested\",\"meta.jsx.children\",\"text.html\",\"text.log\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"text.html.markdown\",\"punctuation.definition.list_item.markdown\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"markdown.heading\",\"entity.name.section.markdown\",\"markup.heading.markdown\"],\"settings\":{\"foreground\":\"#7E9CD8\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E46876\"}},{\"scope\":[\"markup.bold\",\"markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":[\"markup.bold markup.italic\",\"markup.italic markup.bold\",\"markup.quote markup.bold\",\"markup.bold markup.italic string\",\"markup.italic markup.bold string\",\"markup.quote markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#E46876\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#7FB4CA\"}},{\"scope\":[\"markup.quote punctuation.definition.blockquote.markdown\"],\"settings\":{\"foreground\":\"#727169\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#FFA066\"}},{\"scope\":[\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"constant.other.reference.link.markdown\"],\"settings\":{\"foreground\":\"#E6C384\"}},{\"scope\":[\"markup.raw.block\"],\"settings\":{\"foreground\":\"#957FB8\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\"],\"settings\":{\"foreground\":\"#727169\"}},{\"scope\":[\"punctuation.definition.fenced.markdown\"],\"settings\":{\"foreground\":\"#727169\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\",\"variable.language.fenced.markdown\",\"punctuation.section.class.end\"],\"settings\":{\"foreground\":\"#DCD7BA\"}},{\"scope\":[\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#727169\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9CABCA\"}},{\"scope\":[\"markup.table\"],\"settings\":{\"foreground\":\"#DCD7BA\"}}],\"type\":\"dark\"}"));
2
+ export { kanagawa_wave_default as default };
@@ -0,0 +1,2 @@
1
+ var laserwave_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#EB64B9\",\"activityBar.background\":\"#27212e\",\"activityBar.foreground\":\"#ddd\",\"activityBarBadge.background\":\"#EB64B9\",\"button.background\":\"#EB64B9\",\"diffEditor.border\":\"#b4dce7\",\"diffEditor.insertedTextBackground\":\"#74dfc423\",\"diffEditor.removedTextBackground\":\"#eb64b940\",\"editor.background\":\"#27212e\",\"editor.findMatchBackground\":\"#40b4c48c\",\"editor.findMatchHighlightBackground\":\"#40b4c460\",\"editor.foreground\":\"#ffffff\",\"editor.selectionBackground\":\"#eb64b927\",\"editor.selectionHighlightBackground\":\"#eb64b927\",\"editor.wordHighlightBackground\":\"#eb64b927\",\"editorError.foreground\":\"#ff3e7b\",\"editorGroupHeader.tabsBackground\":\"#242029\",\"editorGutter.addedBackground\":\"#74dfc4\",\"editorGutter.deletedBackground\":\"#eb64B9\",\"editorGutter.modifiedBackground\":\"#40b4c4\",\"editorSuggestWidget.border\":\"#b4dce7\",\"focusBorder\":\"#EB64B9\",\"gitDecoration.conflictingResourceForeground\":\"#EB64B9\",\"gitDecoration.deletedResourceForeground\":\"#b381c5\",\"gitDecoration.ignoredResourceForeground\":\"#92889d\",\"gitDecoration.modifiedResourceForeground\":\"#74dfc4\",\"gitDecoration.untrackedResourceForeground\":\"#40b4c4\",\"input.background\":\"#3a3242\",\"input.border\":\"#964c7b\",\"inputOption.activeBorder\":\"#EB64B9\",\"list.activeSelectionBackground\":\"#eb64b98f\",\"list.activeSelectionForeground\":\"#eee\",\"list.dropBackground\":\"#74dfc466\",\"list.errorForeground\":\"#ff3e7b\",\"list.focusBackground\":\"#eb64ba60\",\"list.highlightForeground\":\"#eb64b9\",\"list.hoverBackground\":\"#91889b80\",\"list.hoverForeground\":\"#eee\",\"list.inactiveSelectionBackground\":\"#eb64b98f\",\"list.inactiveSelectionForeground\":\"#ddd\",\"list.invalidItemForeground\":\"#fff\",\"menu.background\":\"#27212e\",\"merge.currentContentBackground\":\"#74dfc433\",\"merge.currentHeaderBackground\":\"#74dfc4cc\",\"merge.incomingContentBackground\":\"#40b4c433\",\"merge.incomingHeaderBackground\":\"#40b4c4cc\",\"notifications.background\":\"#3e3549\",\"peekView.border\":\"#40b4c4\",\"peekViewEditor.background\":\"#40b5c449\",\"peekViewEditor.matchHighlightBackground\":\"#40b5c460\",\"peekViewResult.matchHighlightBackground\":\"#27212e\",\"peekViewResult.selectionBackground\":\"#40b4c43f\",\"progressBar.background\":\"#40b4c4\",\"sideBar.background\":\"#27212e\",\"sideBar.foreground\":\"#ddd\",\"sideBarSectionHeader.background\":\"#27212e\",\"sideBarTitle.foreground\":\"#EB64B9\",\"statusBar.background\":\"#EB64B9\",\"statusBar.debuggingBackground\":\"#74dfc4\",\"statusBar.foreground\":\"#27212e\",\"statusBar.noFolderBackground\":\"#EB64B9\",\"tab.activeBorder\":\"#EB64B9\",\"tab.inactiveBackground\":\"#242029\",\"terminal.ansiBlue\":\"#40b4c4\",\"terminal.ansiCyan\":\"#b4dce7\",\"terminal.ansiGreen\":\"#74dfc4\",\"terminal.ansiMagenta\":\"#b381c5\",\"terminal.ansiRed\":\"#EB64B9\",\"terminal.ansiYellow\":\"#ffe261\",\"titleBar.activeBackground\":\"#27212e\",\"titleBar.inactiveBackground\":\"#27212e\",\"tree.indentGuidesStroke\":\"#ffffff33\"},\"displayName\":\"LaserWave\",\"name\":\"laserwave\",\"tokenColors\":[{\"scope\":[\"keyword.other\",\"keyword.control\",\"storage.type.class.js\",\"keyword.control.module.js\",\"storage.type.extends.js\",\"variable.language.this.js\",\"keyword.control.switch.js\",\"keyword.control.loop.js\",\"keyword.control.conditional.js\",\"keyword.control.flow.js\",\"keyword.operator.accessor.js\",\"keyword.other.important.css\",\"keyword.control.at-rule.media.scss\",\"entity.name.tag.reference.scss\",\"meta.class.python\",\"storage.type.function.python\",\"keyword.control.flow.python\",\"storage.type.function.js\",\"keyword.control.export.ts\",\"keyword.control.flow.ts\",\"keyword.control.from.ts\",\"keyword.control.import.ts\",\"storage.type.class.ts\",\"keyword.control.loop.ts\",\"keyword.control.ruby\",\"keyword.control.module.ruby\",\"keyword.control.class.ruby\",\"keyword.other.special-method.ruby\",\"keyword.control.def.ruby\",\"markup.heading\",\"keyword.other.import.java\",\"keyword.other.package.java\",\"storage.modifier.java\",\"storage.modifier.extends.java\",\"storage.modifier.implements.java\",\"storage.modifier.cs\",\"storage.modifier.js\",\"storage.modifier.dart\",\"keyword.declaration.dart\",\"keyword.package.go\",\"keyword.import.go\",\"keyword.fsharp\",\"variable.parameter.function-call.python\"],\"settings\":{\"foreground\":\"#40b4c4\"}},{\"scope\":[\"binding.fsharp\",\"support.function\",\"meta.function-call\",\"entity.name.function\",\"support.function.misc.scss\",\"meta.method.declaration.ts\",\"entity.name.function.method.js\"],\"settings\":{\"foreground\":\"#EB64B9\"}},{\"scope\":[\"string\",\"string.quoted\",\"string.unquoted\",\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#b4dce7\"}},{\"scope\":[\"constant.numeric\"],\"settings\":{\"foreground\":\"#b381c5\"}},{\"scope\":[\"meta.brace\",\"punctuation\",\"punctuation.bracket\",\"punctuation.section\",\"punctuation.separator\",\"punctuation.comma.dart\",\"punctuation.terminator\",\"punctuation.definition\",\"punctuation.parenthesis\",\"meta.delimiter.comma.js\",\"meta.brace.curly.litobj.js\",\"punctuation.definition.tag\",\"puncatuation.other.comma.go\",\"punctuation.section.embedded\",\"punctuation.definition.string\",\"punctuation.definition.tag.jsx\",\"punctuation.definition.tag.end\",\"punctuation.definition.markdown\",\"punctuation.terminator.rule.css\",\"punctuation.definition.block.ts\",\"punctuation.definition.tag.html\",\"punctuation.section.class.end.js\",\"punctuation.definition.tag.begin\",\"punctuation.squarebracket.open.cs\",\"punctuation.separator.dict.python\",\"punctuation.section.function.scss\",\"punctuation.section.class.begin.js\",\"punctuation.section.array.end.ruby\",\"punctuation.separator.key-value.js\",\"meta.method-call.with-arguments.js\",\"punctuation.section.scope.end.ruby\",\"punctuation.squarebracket.close.cs\",\"punctuation.separator.key-value.css\",\"punctuation.definition.constant.css\",\"punctuation.section.array.begin.ruby\",\"punctuation.section.scope.begin.ruby\",\"punctuation.definition.string.end.js\",\"punctuation.definition.parameters.ruby\",\"punctuation.definition.string.begin.js\",\"punctuation.section.class.begin.python\",\"storage.modifier.array.bracket.square.c\",\"punctuation.separator.parameters.python\",\"punctuation.section.group.end.powershell\",\"punctuation.definition.parameters.end.ts\",\"punctuation.section.braces.end.powershell\",\"punctuation.section.function.begin.python\",\"punctuation.definition.parameters.begin.ts\",\"punctuation.section.bracket.end.powershell\",\"punctuation.section.group.begin.powershell\",\"punctuation.section.braces.begin.powershell\",\"punctuation.definition.parameters.end.python\",\"punctuation.definition.typeparameters.end.cs\",\"punctuation.section.bracket.begin.powershell\",\"punctuation.definition.arguments.begin.python\",\"punctuation.definition.parameters.begin.python\",\"punctuation.definition.typeparameters.begin.cs\",\"punctuation.section.block.begin.bracket.curly.c\",\"punctuation.definition.map.begin.bracket.round.scss\",\"punctuation.section.property-list.end.bracket.curly.css\",\"punctuation.definition.parameters.end.bracket.round.java\",\"punctuation.section.property-list.begin.bracket.curly.css\",\"punctuation.definition.parameters.begin.bracket.round.java\"],\"settings\":{\"foreground\":\"#7b6995\"}},{\"scope\":[\"keyword.operator\",\"meta.decorator.ts\",\"entity.name.type.ts\",\"punctuation.dot.dart\",\"keyword.symbol.fsharp\",\"punctuation.accessor.ts\",\"punctuation.accessor.cs\",\"keyword.operator.logical\",\"meta.tag.inline.any.html\",\"punctuation.separator.java\",\"keyword.operator.comparison\",\"keyword.operator.arithmetic\",\"keyword.operator.assignment\",\"keyword.operator.ternary.js\",\"keyword.operator.other.ruby\",\"keyword.operator.logical.js\",\"punctuation.other.period.go\",\"keyword.operator.increment.ts\",\"keyword.operator.increment.js\",\"storage.type.function.arrow.js\",\"storage.type.function.arrow.ts\",\"keyword.operator.relational.js\",\"keyword.operator.relational.ts\",\"keyword.operator.arithmetic.js\",\"keyword.operator.assignment.js\",\"storage.type.function.arrow.tsx\",\"keyword.operator.logical.python\",\"punctuation.separator.period.java\",\"punctuation.separator.method.ruby\",\"keyword.operator.assignment.python\",\"keyword.operator.arithmetic.python\",\"keyword.operator.increment-decrement.java\"],\"settings\":{\"foreground\":\"#74dfc4\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#91889b\"}},{\"scope\":[\"meta.tag.sgml\",\"entity.name.tag\",\"entity.name.tag.open.jsx\",\"entity.name.tag.close.jsx\",\"entity.name.tag.inline.any.html\",\"entity.name.tag.structure.any.html\"],\"settings\":{\"foreground\":\"#74dfc4\"}},{\"scope\":[\"variable.other.enummember\",\"entity.other.attribute-name\",\"entity.other.attribute-name.jsx\",\"entity.other.attribute-name.html\",\"entity.other.attribute-name.id.css\",\"entity.other.attribute-name.id.html\",\"entity.other.attribute-name.class.css\"],\"settings\":{\"foreground\":\"#EB64B9\"}},{\"scope\":[\"variable.other.property\",\"variable.parameter.fsharp\",\"support.variable.property.js\",\"support.type.property-name.css\",\"support.type.property-name.json\",\"support.variable.property.dom.js\"],\"settings\":{\"foreground\":\"#40b4c4\"}},{\"scope\":[\"constant.language\",\"constant.other.elm\",\"constant.language.c\",\"variable.language.dart\",\"variable.language.this\",\"support.class.builtin.js\",\"support.constant.json.ts\",\"support.class.console.ts\",\"support.class.console.js\",\"variable.language.this.js\",\"variable.language.this.ts\",\"entity.name.section.fsharp\",\"support.type.object.dom.js\",\"variable.other.constant.js\",\"variable.language.self.ruby\",\"variable.other.constant.ruby\",\"support.type.object.console.js\",\"constant.language.undefined.js\",\"support.function.builtin.python\",\"constant.language.boolean.true.js\",\"constant.language.boolean.false.js\",\"variable.language.special.self.python\",\"support.constant.automatic.powershell\"],\"settings\":{\"foreground\":\"#ffe261\"}},{\"scope\":[\"variable.other\",\"variable.scss\",\"meta.function-call.c\",\"variable.parameter.ts\",\"variable.parameter.dart\",\"variable.other.class.js\",\"variable.other.object.js\",\"variable.other.object.ts\",\"support.function.json.ts\",\"variable.name.source.dart\",\"variable.other.source.dart\",\"variable.other.readwrite.js\",\"variable.other.readwrite.ts\",\"support.function.console.ts\",\"entity.name.type.instance.js\",\"meta.function-call.arguments\",\"variable.other.property.dom.ts\",\"support.variable.property.dom.ts\",\"variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#fff\"}},{\"scope\":[\"storage.type.annotation\",\"punctuation.definition.annotation\",\"support.function.attribute.fsharp\"],\"settings\":{\"foreground\":\"#74dfc4\"}},{\"scope\":[\"entity.name.type\",\"storage.type\",\"keyword.var.go\",\"keyword.type.go\",\"keyword.type.js\",\"storage.type.js\",\"storage.type.ts\",\"keyword.type.cs\",\"keyword.const.go\",\"keyword.struct.go\",\"support.class.dart\",\"storage.modifier.c\",\"storage.modifier.ts\",\"keyword.function.go\",\"keyword.operator.new.ts\",\"meta.type.annotation.ts\",\"entity.name.type.fsharp\",\"meta.type.annotation.tsx\",\"storage.modifier.async.js\",\"punctuation.definition.variable.ruby\",\"punctuation.definition.constant.ruby\"],\"settings\":{\"foreground\":\"#a96bc0\"}},{\"scope\":[\"markup.bold\",\"markup.italic\"],\"settings\":{\"foreground\":\"#EB64B9\"}},{\"scope\":[\"meta.object-literal.key.js\",\"constant.other.object.key.js\"],\"settings\":{\"foreground\":\"#40b4c4\"}},{\"scope\":[],\"settings\":{\"foreground\":\"#ffb85b\"}},{\"scope\":[\"meta.diff\",\"meta.diff.header\"],\"settings\":{\"foreground\":\"#40b4c4\"}},{\"scope\":[\"meta.diff.range.unified\"],\"settings\":{\"foreground\":\"#b381c5\"}},{\"scope\":[\"markup.deleted\",\"punctuation.definition.deleted.diff\",\"punctuation.definition.from-file.diff\",\"meta.diff.header.from-file\"],\"settings\":{\"foreground\":\"#eb64b9\"}},{\"scope\":[\"markup.inserted\",\"punctuation.definition.inserted.diff\",\"punctuation.definition.to-file.diff\",\"meta.diff.header.to-file\"],\"settings\":{\"foreground\":\"#74dfc4\"}}],\"type\":\"dark\"}"));
2
+ export { laserwave_default as default };
@@ -0,0 +1,2 @@
1
+ var light_plus_default = Object.freeze(JSON.parse("{\"colors\":{\"actionBar.toggledBackground\":\"#dddddd\",\"activityBarBadge.background\":\"#007ACC\",\"checkbox.border\":\"#919191\",\"diffEditor.unchangedRegionBackground\":\"#f8f8f8\",\"editor.background\":\"#FFFFFF\",\"editor.foreground\":\"#000000\",\"editor.inactiveSelectionBackground\":\"#E5EBF1\",\"editor.selectionHighlightBackground\":\"#ADD6FF80\",\"editorIndentGuide.activeBackground1\":\"#939393\",\"editorIndentGuide.background1\":\"#D3D3D3\",\"editorSuggestWidget.background\":\"#F3F3F3\",\"input.placeholderForeground\":\"#767676\",\"list.activeSelectionIconForeground\":\"#FFF\",\"list.focusAndSelectionOutline\":\"#90C2F9\",\"list.hoverBackground\":\"#E8E8E8\",\"menu.border\":\"#D4D4D4\",\"notebook.cellBorderColor\":\"#E8E8E8\",\"notebook.selectedCellBackground\":\"#c8ddf150\",\"ports.iconRunningProcessForeground\":\"#369432\",\"searchEditor.textInputBorder\":\"#CECECE\",\"settings.numberInputBorder\":\"#CECECE\",\"settings.textInputBorder\":\"#CECECE\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.border\":\"#61616130\",\"sideBarTitle.foreground\":\"#6F6F6F\",\"statusBarItem.errorBackground\":\"#c72e0f\",\"statusBarItem.remoteBackground\":\"#16825D\",\"statusBarItem.remoteForeground\":\"#FFF\",\"tab.lastPinnedBorder\":\"#61616130\",\"tab.selectedBackground\":\"#ffffffa5\",\"tab.selectedForeground\":\"#333333b3\",\"terminal.inactiveSelectionBackground\":\"#E5EBF1\",\"widget.border\":\"#d4d4d4\"},\"displayName\":\"Light Plus\",\"name\":\"light-plus\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"customLiteral\":\"#795E26\",\"newOperator\":\"#AF00DB\",\"numberLiteral\":\"#098658\",\"stringLiteral\":\"#a31515\"},\"tokenColors\":[{\"scope\":[\"meta.embedded\",\"source.groovy.embedded\",\"string meta.image.inline.markdown\",\"variable.legacy.builtin.python\"],\"settings\":{\"foreground\":\"#000000ff\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#000080\"}},{\"scope\":\"comment\",\"settings\":{\"foreground\":\"#008000\"}},{\"scope\":\"constant.language\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":[\"constant.numeric\",\"variable.other.enummember\",\"keyword.operator.plus.exponent\",\"keyword.operator.minus.exponent\"],\"settings\":{\"foreground\":\"#098658\"}},{\"scope\":\"constant.regexp\",\"settings\":{\"foreground\":\"#811f3f\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#e50000\"}},{\"scope\":[\"entity.other.attribute-name.class.css\",\"source.css entity.other.attribute-name.class\",\"entity.other.attribute-name.id.css\",\"entity.other.attribute-name.parent-selector.css\",\"entity.other.attribute-name.parent.less\",\"source.css entity.other.attribute-name.pseudo-class\",\"entity.other.attribute-name.pseudo-element.css\",\"source.css.less entity.other.attribute-name.id\",\"entity.other.attribute-name.scss\"],\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":\"invalid\",\"settings\":{\"foreground\":\"#cd3131\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#000080\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#800000\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.strikethrough\",\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#098658\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#a31515\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":[\"punctuation.definition.quote.begin.markdown\",\"punctuation.definition.list.begin.markdown\"],\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":\"punctuation.definition.tag\",\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":[\"meta.preprocessor\",\"entity.name.function.preprocessor\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#a31515\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#098658\"}},{\"scope\":\"meta.structure.dictionary.key.python\",\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"storage.type\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":[\"storage.modifier\",\"keyword.operator.noexcept\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":[\"string\",\"meta.embedded.assembly\"],\"settings\":{\"foreground\":\"#a31515\"}},{\"scope\":[\"string.comment.buffered.block.pug\",\"string.quoted.pug\",\"string.interpolated.pug\",\"string.unquoted.plain.in.yaml\",\"string.unquoted.plain.out.yaml\",\"string.unquoted.block.yaml\",\"string.quoted.single.yaml\",\"string.quoted.double.xml\",\"string.quoted.single.xml\",\"string.unquoted.cdata.xml\",\"string.quoted.double.html\",\"string.quoted.single.html\",\"string.unquoted.html\",\"string.quoted.single.handlebars\",\"string.quoted.double.handlebars\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#811f3f\"}},{\"scope\":[\"punctuation.definition.template-expression.begin\",\"punctuation.definition.template-expression.end\",\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":[\"meta.template.expression\"],\"settings\":{\"foreground\":\"#000000\"}},{\"scope\":[\"support.constant.property-value\",\"support.constant.font-name\",\"support.constant.media-type\",\"support.constant.media\",\"constant.other.color.rgb-value\",\"constant.other.rgb-value\",\"support.constant.color\"],\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":[\"support.type.vendored.property-name\",\"support.type.property-name\",\"source.css variable\",\"source.coffee.embedded\"],\"settings\":{\"foreground\":\"#e50000\"}},{\"scope\":[\"support.type.property-name.json\"],\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#000000\"}},{\"scope\":[\"keyword.operator.new\",\"keyword.operator.expression\",\"keyword.operator.cast\",\"keyword.operator.sizeof\",\"keyword.operator.alignof\",\"keyword.operator.typeid\",\"keyword.operator.alignas\",\"keyword.operator.instanceof\",\"keyword.operator.logical.python\",\"keyword.operator.wordlike\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#098658\"}},{\"scope\":[\"punctuation.section.embedded.begin.php\",\"punctuation.section.embedded.end.php\"],\"settings\":{\"foreground\":\"#800000\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#098658\"}},{\"scope\":[\"storage.modifier.import.java\",\"variable.language.wildcard.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#000000\"}},{\"scope\":\"variable.language\",\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":[\"entity.name.function\",\"support.function\",\"support.constant.handlebars\",\"source.powershell variable.other.member\",\"entity.name.operator.custom-literal\"],\"settings\":{\"foreground\":\"#795E26\"}},{\"scope\":[\"support.class\",\"support.type\",\"entity.name.type\",\"entity.name.namespace\",\"entity.other.attribute\",\"entity.name.scope-resolution\",\"entity.name.class\",\"storage.type.numeric.go\",\"storage.type.byte.go\",\"storage.type.boolean.go\",\"storage.type.string.go\",\"storage.type.uintptr.go\",\"storage.type.error.go\",\"storage.type.rune.go\",\"storage.type.cs\",\"storage.type.generic.cs\",\"storage.type.modifier.cs\",\"storage.type.variable.cs\",\"storage.type.annotation.java\",\"storage.type.generic.java\",\"storage.type.java\",\"storage.type.object.array.java\",\"storage.type.primitive.array.java\",\"storage.type.primitive.java\",\"storage.type.token.java\",\"storage.type.groovy\",\"storage.type.annotation.groovy\",\"storage.type.parameters.groovy\",\"storage.type.generic.groovy\",\"storage.type.object.array.groovy\",\"storage.type.primitive.array.groovy\",\"storage.type.primitive.groovy\"],\"settings\":{\"foreground\":\"#267f99\"}},{\"scope\":[\"meta.type.cast.expr\",\"meta.type.new.expr\",\"support.constant.math\",\"support.constant.dom\",\"support.constant.json\",\"entity.other.inherited-class\",\"punctuation.separator.namespace.ruby\"],\"settings\":{\"foreground\":\"#267f99\"}},{\"scope\":[\"keyword.control\",\"source.cpp keyword.operator.new\",\"source.cpp keyword.operator.delete\",\"keyword.other.using\",\"keyword.other.directive.using\",\"keyword.other.operator\",\"entity.name.operator\"],\"settings\":{\"foreground\":\"#AF00DB\"}},{\"scope\":[\"variable\",\"meta.definition.variable.name\",\"support.variable\",\"entity.name.variable\",\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#001080\"}},{\"scope\":[\"variable.other.constant\",\"variable.other.enummember\"],\"settings\":{\"foreground\":\"#0070C1\"}},{\"scope\":[\"meta.object-literal.key\"],\"settings\":{\"foreground\":\"#001080\"}},{\"scope\":[\"support.constant.property-value\",\"support.constant.font-name\",\"support.constant.media-type\",\"support.constant.media\",\"constant.other.color.rgb-value\",\"constant.other.rgb-value\",\"support.constant.color\"],\"settings\":{\"foreground\":\"#0451a5\"}},{\"scope\":[\"punctuation.definition.group.regexp\",\"punctuation.definition.group.assertion.regexp\",\"punctuation.definition.character-class.regexp\",\"punctuation.character.set.begin.regexp\",\"punctuation.character.set.end.regexp\",\"keyword.operator.negation.regexp\",\"support.other.parenthesis.regexp\"],\"settings\":{\"foreground\":\"#d16969\"}},{\"scope\":[\"constant.character.character-class.regexp\",\"constant.other.character-class.set.regexp\",\"constant.other.character-class.regexp\",\"constant.character.set.regexp\"],\"settings\":{\"foreground\":\"#811f3f\"}},{\"scope\":\"keyword.operator.quantifier.regexp\",\"settings\":{\"foreground\":\"#000000\"}},{\"scope\":[\"keyword.operator.or.regexp\",\"keyword.control.anchor.regexp\"],\"settings\":{\"foreground\":\"#EE0000\"}},{\"scope\":[\"constant.character\",\"constant.other.option\"],\"settings\":{\"foreground\":\"#0000ff\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#EE0000\"}},{\"scope\":\"entity.name.label\",\"settings\":{\"foreground\":\"#000000\"}}],\"type\":\"light\"}"));
2
+ export { light_plus_default as default };
@@ -0,0 +1,2 @@
1
+ var material_theme_darker_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#80CBC4\",\"activityBar.background\":\"#212121\",\"activityBar.border\":\"#21212160\",\"activityBar.dropBackground\":\"#f0717880\",\"activityBar.foreground\":\"#EEFFFF\",\"activityBarBadge.background\":\"#80CBC4\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#00000030\",\"badge.foreground\":\"#545454\",\"breadcrumb.activeSelectionForeground\":\"#80CBC4\",\"breadcrumb.background\":\"#212121\",\"breadcrumb.focusForeground\":\"#EEFFFF\",\"breadcrumb.foreground\":\"#676767\",\"breadcrumbPicker.background\":\"#212121\",\"button.background\":\"#61616150\",\"button.foreground\":\"#ffffff\",\"debugConsole.errorForeground\":\"#f07178\",\"debugConsole.infoForeground\":\"#89DDFF\",\"debugConsole.warningForeground\":\"#FFCB6B\",\"debugToolBar.background\":\"#212121\",\"diffEditor.insertedTextBackground\":\"#89DDFF20\",\"diffEditor.removedTextBackground\":\"#ff9cac20\",\"dropdown.background\":\"#212121\",\"dropdown.border\":\"#FFFFFF10\",\"editor.background\":\"#212121\",\"editor.findMatchBackground\":\"#000000\",\"editor.findMatchBorder\":\"#80CBC4\",\"editor.findMatchHighlight\":\"#EEFFFF\",\"editor.findMatchHighlightBackground\":\"#00000050\",\"editor.findMatchHighlightBorder\":\"#ffffff30\",\"editor.findRangeHighlightBackground\":\"#FFCB6B30\",\"editor.foreground\":\"#EEFFFF\",\"editor.lineHighlightBackground\":\"#00000050\",\"editor.lineHighlightBorder\":\"#00000000\",\"editor.rangeHighlightBackground\":\"#FFFFFF0d\",\"editor.selectionBackground\":\"#61616150\",\"editor.selectionHighlightBackground\":\"#FFCC0020\",\"editor.wordHighlightBackground\":\"#ff9cac30\",\"editor.wordHighlightStrongBackground\":\"#C3E88D30\",\"editorBracketMatch.background\":\"#212121\",\"editorBracketMatch.border\":\"#FFCC0050\",\"editorCursor.foreground\":\"#FFCC00\",\"editorError.foreground\":\"#f0717870\",\"editorGroup.border\":\"#00000030\",\"editorGroup.dropBackground\":\"#f0717880\",\"editorGroup.focusedEmptyBorder\":\"#f07178\",\"editorGroupHeader.tabsBackground\":\"#212121\",\"editorGutter.addedBackground\":\"#C3E88D60\",\"editorGutter.deletedBackground\":\"#f0717860\",\"editorGutter.modifiedBackground\":\"#82AAFF60\",\"editorHoverWidget.background\":\"#212121\",\"editorHoverWidget.border\":\"#FFFFFF10\",\"editorIndentGuide.activeBackground\":\"#424242\",\"editorIndentGuide.background\":\"#42424270\",\"editorInfo.foreground\":\"#82AAFF70\",\"editorLineNumber.activeForeground\":\"#676767\",\"editorLineNumber.foreground\":\"#424242\",\"editorLink.activeForeground\":\"#EEFFFF\",\"editorMarkerNavigation.background\":\"#EEFFFF05\",\"editorOverviewRuler.border\":\"#212121\",\"editorOverviewRuler.errorForeground\":\"#f0717840\",\"editorOverviewRuler.findMatchForeground\":\"#80CBC4\",\"editorOverviewRuler.infoForeground\":\"#82AAFF40\",\"editorOverviewRuler.warningForeground\":\"#FFCB6B40\",\"editorRuler.foreground\":\"#424242\",\"editorSuggestWidget.background\":\"#212121\",\"editorSuggestWidget.border\":\"#FFFFFF10\",\"editorSuggestWidget.foreground\":\"#EEFFFF\",\"editorSuggestWidget.highlightForeground\":\"#80CBC4\",\"editorSuggestWidget.selectedBackground\":\"#00000050\",\"editorWarning.foreground\":\"#FFCB6B70\",\"editorWhitespace.foreground\":\"#EEFFFF40\",\"editorWidget.background\":\"#212121\",\"editorWidget.border\":\"#80CBC4\",\"editorWidget.resizeBorder\":\"#80CBC4\",\"extensionBadge.remoteForeground\":\"#EEFFFF\",\"extensionButton.prominentBackground\":\"#C3E88D90\",\"extensionButton.prominentForeground\":\"#EEFFFF\",\"extensionButton.prominentHoverBackground\":\"#C3E88D\",\"focusBorder\":\"#FFFFFF00\",\"foreground\":\"#EEFFFF\",\"gitDecoration.conflictingResourceForeground\":\"#FFCB6B90\",\"gitDecoration.deletedResourceForeground\":\"#f0717890\",\"gitDecoration.ignoredResourceForeground\":\"#67676790\",\"gitDecoration.modifiedResourceForeground\":\"#82AAFF90\",\"gitDecoration.untrackedResourceForeground\":\"#C3E88D90\",\"input.background\":\"#2B2B2B\",\"input.border\":\"#FFFFFF10\",\"input.foreground\":\"#EEFFFF\",\"input.placeholderForeground\":\"#EEFFFF60\",\"inputOption.activeBackground\":\"#EEFFFF30\",\"inputOption.activeBorder\":\"#EEFFFF30\",\"inputValidation.errorBorder\":\"#f07178\",\"inputValidation.infoBorder\":\"#82AAFF\",\"inputValidation.warningBorder\":\"#FFCB6B\",\"list.activeSelectionBackground\":\"#212121\",\"list.activeSelectionForeground\":\"#80CBC4\",\"list.dropBackground\":\"#f0717880\",\"list.focusBackground\":\"#EEFFFF20\",\"list.focusForeground\":\"#EEFFFF\",\"list.highlightForeground\":\"#80CBC4\",\"list.hoverBackground\":\"#212121\",\"list.hoverForeground\":\"#FFFFFF\",\"list.inactiveSelectionBackground\":\"#00000030\",\"list.inactiveSelectionForeground\":\"#80CBC4\",\"listFilterWidget.background\":\"#00000030\",\"listFilterWidget.noMatchesOutline\":\"#00000030\",\"listFilterWidget.outline\":\"#00000030\",\"menu.background\":\"#212121\",\"menu.foreground\":\"#EEFFFF\",\"menu.selectionBackground\":\"#00000050\",\"menu.selectionBorder\":\"#00000030\",\"menu.selectionForeground\":\"#80CBC4\",\"menu.separatorBackground\":\"#EEFFFF\",\"menubar.selectionBackground\":\"#00000030\",\"menubar.selectionBorder\":\"#00000030\",\"menubar.selectionForeground\":\"#80CBC4\",\"notebook.focusedCellBorder\":\"#80CBC4\",\"notebook.inactiveFocusedCellBorder\":\"#80CBC450\",\"notificationLink.foreground\":\"#80CBC4\",\"notifications.background\":\"#212121\",\"notifications.foreground\":\"#EEFFFF\",\"panel.background\":\"#212121\",\"panel.border\":\"#21212160\",\"panel.dropBackground\":\"#EEFFFF\",\"panelTitle.activeBorder\":\"#80CBC4\",\"panelTitle.activeForeground\":\"#FFFFFF\",\"panelTitle.inactiveForeground\":\"#EEFFFF\",\"peekView.border\":\"#00000030\",\"peekViewEditor.background\":\"#2B2B2B\",\"peekViewEditor.matchHighlightBackground\":\"#61616150\",\"peekViewEditorGutter.background\":\"#2B2B2B\",\"peekViewResult.background\":\"#2B2B2B\",\"peekViewResult.matchHighlightBackground\":\"#61616150\",\"peekViewResult.selectionBackground\":\"#67676770\",\"peekViewTitle.background\":\"#2B2B2B\",\"peekViewTitleDescription.foreground\":\"#EEFFFF60\",\"pickerGroup.border\":\"#FFFFFF1a\",\"pickerGroup.foreground\":\"#80CBC4\",\"progressBar.background\":\"#80CBC4\",\"quickInput.background\":\"#212121\",\"quickInput.foreground\":\"#676767\",\"quickInput.list.focusBackground\":\"#EEFFFF20\",\"sash.hoverBorder\":\"#80CBC450\",\"scrollbar.shadow\":\"#00000030\",\"scrollbarSlider.activeBackground\":\"#80CBC4\",\"scrollbarSlider.background\":\"#EEFFFF20\",\"scrollbarSlider.hoverBackground\":\"#EEFFFF10\",\"selection.background\":\"#00000080\",\"settings.checkboxBackground\":\"#212121\",\"settings.checkboxForeground\":\"#EEFFFF\",\"settings.dropdownBackground\":\"#212121\",\"settings.dropdownForeground\":\"#EEFFFF\",\"settings.headerForeground\":\"#80CBC4\",\"settings.modifiedItemIndicator\":\"#80CBC4\",\"settings.numberInputBackground\":\"#212121\",\"settings.numberInputForeground\":\"#EEFFFF\",\"settings.textInputBackground\":\"#212121\",\"settings.textInputForeground\":\"#EEFFFF\",\"sideBar.background\":\"#212121\",\"sideBar.border\":\"#21212160\",\"sideBar.foreground\":\"#676767\",\"sideBarSectionHeader.background\":\"#212121\",\"sideBarSectionHeader.border\":\"#21212160\",\"sideBarTitle.foreground\":\"#EEFFFF\",\"statusBar.background\":\"#212121\",\"statusBar.border\":\"#21212160\",\"statusBar.debuggingBackground\":\"#C792EA\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.foreground\":\"#616161\",\"statusBar.noFolderBackground\":\"#212121\",\"statusBarItem.activeBackground\":\"#f0717880\",\"statusBarItem.hoverBackground\":\"#54545420\",\"statusBarItem.remoteBackground\":\"#80CBC4\",\"statusBarItem.remoteForeground\":\"#000000\",\"tab.activeBackground\":\"#212121\",\"tab.activeBorder\":\"#80CBC4\",\"tab.activeForeground\":\"#FFFFFF\",\"tab.activeModifiedBorder\":\"#676767\",\"tab.border\":\"#212121\",\"tab.inactiveBackground\":\"#212121\",\"tab.inactiveForeground\":\"#676767\",\"tab.inactiveModifiedBorder\":\"#904348\",\"tab.unfocusedActiveBorder\":\"#545454\",\"tab.unfocusedActiveForeground\":\"#EEFFFF\",\"tab.unfocusedActiveModifiedBorder\":\"#c05a60\",\"tab.unfocusedInactiveModifiedBorder\":\"#904348\",\"terminal.ansiBlack\":\"#000000\",\"terminal.ansiBlue\":\"#82AAFF\",\"terminal.ansiBrightBlack\":\"#545454\",\"terminal.ansiBrightBlue\":\"#82AAFF\",\"terminal.ansiBrightCyan\":\"#89DDFF\",\"terminal.ansiBrightGreen\":\"#C3E88D\",\"terminal.ansiBrightMagenta\":\"#C792EA\",\"terminal.ansiBrightRed\":\"#f07178\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#FFCB6B\",\"terminal.ansiCyan\":\"#89DDFF\",\"terminal.ansiGreen\":\"#C3E88D\",\"terminal.ansiMagenta\":\"#C792EA\",\"terminal.ansiRed\":\"#f07178\",\"terminal.ansiWhite\":\"#ffffff\",\"terminal.ansiYellow\":\"#FFCB6B\",\"terminalCursor.background\":\"#000000\",\"terminalCursor.foreground\":\"#FFCB6B\",\"textLink.activeForeground\":\"#EEFFFF\",\"textLink.foreground\":\"#80CBC4\",\"titleBar.activeBackground\":\"#212121\",\"titleBar.activeForeground\":\"#EEFFFF\",\"titleBar.border\":\"#21212160\",\"titleBar.inactiveBackground\":\"#212121\",\"titleBar.inactiveForeground\":\"#676767\",\"tree.indentGuidesStroke\":\"#424242\",\"widget.shadow\":\"#00000030\"},\"displayName\":\"Material Theme Darker\",\"name\":\"material-theme-darker\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#212121\",\"foreground\":\"#EEFFFF\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"punctuation, constant.other.symbol\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"constant.character.escape, text.html constant.character.entity.named\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"keyword.other\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"keyword, modifier, variable.language.this, support.type.object, constant.language\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function, support.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"storage.type, storage.modifier, storage.control\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"support.module, support.node\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"support.type, constant.other.key\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.name.type, entity.other.inherited-class, entity.other\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#545454\"}},{\"scope\":\"comment punctuation.definition.comment, string.quoted.docstring\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#545454\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name, entity.name.type.class, support.type, support.class, meta.use\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"variable.object.property, meta.field.declaration entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.definition.method entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.function entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"meta.embedded, source.groovy.embedded, meta.template.expression\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"entity.name.tag.yaml\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"constant.language.json\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":\"source.css entity.name.tag\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#B2CCD6\"}},{\"scope\":\"meta.tag, punctuation.definition.tag\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":\"punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"text.html.markdown meta.link.inline, meta.link.reference\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\",\"foreground\":\"#f07178\"}},{\"scope\":\"markup.fenced_code.block.markdown punctuation.definition.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#89DDFF\"}},{\"scope\":\"source.cs meta.class.identifier storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.identifier entity.name.function\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.cs meta.method-call meta.method, source.cs entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.cs storage.type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.method.return-type\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cs meta.preprocessor\",\"settings\":{\"foreground\":\"#545454\"}},{\"scope\":\"source.cs entity.name.type.namespace\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"meta.jsx.children, SXNested\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"support.class.component\",\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"source.python meta.member.access.python\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"source.python meta.function-call.python, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"meta.block\",\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":\"entity.name.function.call\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":\"source.php support.other.namespace, source.php meta.use support.class\",\"settings\":{\"foreground\":\"#EEFFFF\"}},{\"scope\":\"constant.keyword\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#82AAFF\"}},{\"settings\":{\"background\":\"#212121\",\"foreground\":\"#EEFFFF\"}},{\"scope\":[\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#C3E88D\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"variable.parameter.function.language.special.self.python\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f07178\"}},{\"scope\":[\"constant.character.format.placeholder.other.python\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#89DDFF\"}},{\"scope\":[\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#EEFFFF90\"}},{\"scope\":[\"punctuation.definition.quote\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFCB6B\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#F78C6C\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#f07178\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#916b53\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#82AAFF\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#ff9cac\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C792EA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#C3E88D\"}}],\"type\":\"dark\"}"));
2
+ export { material_theme_darker_default as default };
@@ -0,0 +1,2 @@
1
+ var material_theme_lighter_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#80CBC4\",\"activityBar.background\":\"#FAFAFA\",\"activityBar.border\":\"#FAFAFA60\",\"activityBar.dropBackground\":\"#E5393580\",\"activityBar.foreground\":\"#90A4AE\",\"activityBarBadge.background\":\"#80CBC4\",\"activityBarBadge.foreground\":\"#000000\",\"badge.background\":\"#CCD7DA30\",\"badge.foreground\":\"#90A4AE\",\"breadcrumb.activeSelectionForeground\":\"#80CBC4\",\"breadcrumb.background\":\"#FAFAFA\",\"breadcrumb.focusForeground\":\"#90A4AE\",\"breadcrumb.foreground\":\"#758a95\",\"breadcrumbPicker.background\":\"#FAFAFA\",\"button.background\":\"#80CBC440\",\"button.foreground\":\"#ffffff\",\"debugConsole.errorForeground\":\"#E53935\",\"debugConsole.infoForeground\":\"#39ADB5\",\"debugConsole.warningForeground\":\"#E2931D\",\"debugToolBar.background\":\"#FAFAFA\",\"diffEditor.insertedTextBackground\":\"#39ADB520\",\"diffEditor.removedTextBackground\":\"#FF537020\",\"dropdown.background\":\"#FAFAFA\",\"dropdown.border\":\"#00000010\",\"editor.background\":\"#FAFAFA\",\"editor.findMatchBackground\":\"#00000020\",\"editor.findMatchBorder\":\"#80CBC4\",\"editor.findMatchHighlight\":\"#90A4AE\",\"editor.findMatchHighlightBackground\":\"#00000010\",\"editor.findMatchHighlightBorder\":\"#00000030\",\"editor.findRangeHighlightBackground\":\"#E2931D30\",\"editor.foreground\":\"#90A4AE\",\"editor.lineHighlightBackground\":\"#CCD7DA50\",\"editor.lineHighlightBorder\":\"#CCD7DA00\",\"editor.rangeHighlightBackground\":\"#FFFFFF0d\",\"editor.selectionBackground\":\"#80CBC440\",\"editor.selectionHighlightBackground\":\"#27272720\",\"editor.wordHighlightBackground\":\"#FF537030\",\"editor.wordHighlightStrongBackground\":\"#91B85930\",\"editorBracketMatch.background\":\"#FAFAFA\",\"editorBracketMatch.border\":\"#27272750\",\"editorCursor.foreground\":\"#272727\",\"editorError.foreground\":\"#E5393570\",\"editorGroup.border\":\"#00000020\",\"editorGroup.dropBackground\":\"#E5393580\",\"editorGroup.focusedEmptyBorder\":\"#E53935\",\"editorGroupHeader.tabsBackground\":\"#FAFAFA\",\"editorGutter.addedBackground\":\"#91B85960\",\"editorGutter.deletedBackground\":\"#E5393560\",\"editorGutter.modifiedBackground\":\"#6182B860\",\"editorHoverWidget.background\":\"#FAFAFA\",\"editorHoverWidget.border\":\"#00000010\",\"editorIndentGuide.activeBackground\":\"#B0BEC5\",\"editorIndentGuide.background\":\"#B0BEC570\",\"editorInfo.foreground\":\"#6182B870\",\"editorLineNumber.activeForeground\":\"#758a95\",\"editorLineNumber.foreground\":\"#CFD8DC\",\"editorLink.activeForeground\":\"#90A4AE\",\"editorMarkerNavigation.background\":\"#90A4AE05\",\"editorOverviewRuler.border\":\"#FAFAFA\",\"editorOverviewRuler.errorForeground\":\"#E5393540\",\"editorOverviewRuler.findMatchForeground\":\"#80CBC4\",\"editorOverviewRuler.infoForeground\":\"#6182B840\",\"editorOverviewRuler.warningForeground\":\"#E2931D40\",\"editorRuler.foreground\":\"#B0BEC5\",\"editorSuggestWidget.background\":\"#FAFAFA\",\"editorSuggestWidget.border\":\"#00000010\",\"editorSuggestWidget.foreground\":\"#90A4AE\",\"editorSuggestWidget.highlightForeground\":\"#80CBC4\",\"editorSuggestWidget.selectedBackground\":\"#CCD7DA50\",\"editorWarning.foreground\":\"#E2931D70\",\"editorWhitespace.foreground\":\"#90A4AE40\",\"editorWidget.background\":\"#FAFAFA\",\"editorWidget.border\":\"#80CBC4\",\"editorWidget.resizeBorder\":\"#80CBC4\",\"extensionBadge.remoteForeground\":\"#90A4AE\",\"extensionButton.prominentBackground\":\"#91B85990\",\"extensionButton.prominentForeground\":\"#90A4AE\",\"extensionButton.prominentHoverBackground\":\"#91B859\",\"focusBorder\":\"#FFFFFF00\",\"foreground\":\"#90A4AE\",\"gitDecoration.conflictingResourceForeground\":\"#E2931D90\",\"gitDecoration.deletedResourceForeground\":\"#E5393590\",\"gitDecoration.ignoredResourceForeground\":\"#758a9590\",\"gitDecoration.modifiedResourceForeground\":\"#6182B890\",\"gitDecoration.untrackedResourceForeground\":\"#91B85990\",\"input.background\":\"#EEEEEE\",\"input.border\":\"#00000010\",\"input.foreground\":\"#90A4AE\",\"input.placeholderForeground\":\"#90A4AE60\",\"inputOption.activeBackground\":\"#90A4AE30\",\"inputOption.activeBorder\":\"#90A4AE30\",\"inputValidation.errorBorder\":\"#E53935\",\"inputValidation.infoBorder\":\"#6182B8\",\"inputValidation.warningBorder\":\"#E2931D\",\"list.activeSelectionBackground\":\"#FAFAFA\",\"list.activeSelectionForeground\":\"#80CBC4\",\"list.dropBackground\":\"#E5393580\",\"list.focusBackground\":\"#90A4AE20\",\"list.focusForeground\":\"#90A4AE\",\"list.highlightForeground\":\"#80CBC4\",\"list.hoverBackground\":\"#FAFAFA\",\"list.hoverForeground\":\"#B1C7D3\",\"list.inactiveSelectionBackground\":\"#CCD7DA50\",\"list.inactiveSelectionForeground\":\"#80CBC4\",\"listFilterWidget.background\":\"#CCD7DA50\",\"listFilterWidget.noMatchesOutline\":\"#CCD7DA50\",\"listFilterWidget.outline\":\"#CCD7DA50\",\"menu.background\":\"#FAFAFA\",\"menu.foreground\":\"#90A4AE\",\"menu.selectionBackground\":\"#CCD7DA50\",\"menu.selectionBorder\":\"#CCD7DA50\",\"menu.selectionForeground\":\"#80CBC4\",\"menu.separatorBackground\":\"#90A4AE\",\"menubar.selectionBackground\":\"#CCD7DA50\",\"menubar.selectionBorder\":\"#CCD7DA50\",\"menubar.selectionForeground\":\"#80CBC4\",\"notebook.focusedCellBorder\":\"#80CBC4\",\"notebook.inactiveFocusedCellBorder\":\"#80CBC450\",\"notificationLink.foreground\":\"#80CBC4\",\"notifications.background\":\"#FAFAFA\",\"notifications.foreground\":\"#90A4AE\",\"panel.background\":\"#FAFAFA\",\"panel.border\":\"#FAFAFA60\",\"panel.dropBackground\":\"#90A4AE\",\"panelTitle.activeBorder\":\"#80CBC4\",\"panelTitle.activeForeground\":\"#000000\",\"panelTitle.inactiveForeground\":\"#90A4AE\",\"peekView.border\":\"#00000020\",\"peekViewEditor.background\":\"#EEEEEE\",\"peekViewEditor.matchHighlightBackground\":\"#80CBC440\",\"peekViewEditorGutter.background\":\"#EEEEEE\",\"peekViewResult.background\":\"#EEEEEE\",\"peekViewResult.matchHighlightBackground\":\"#80CBC440\",\"peekViewResult.selectionBackground\":\"#758a9570\",\"peekViewTitle.background\":\"#EEEEEE\",\"peekViewTitleDescription.foreground\":\"#90A4AE60\",\"pickerGroup.border\":\"#FFFFFF1a\",\"pickerGroup.foreground\":\"#80CBC4\",\"progressBar.background\":\"#80CBC4\",\"quickInput.background\":\"#FAFAFA\",\"quickInput.foreground\":\"#758a95\",\"quickInput.list.focusBackground\":\"#90A4AE20\",\"sash.hoverBorder\":\"#80CBC450\",\"scrollbar.shadow\":\"#00000020\",\"scrollbarSlider.activeBackground\":\"#80CBC4\",\"scrollbarSlider.background\":\"#90A4AE20\",\"scrollbarSlider.hoverBackground\":\"#90A4AE10\",\"selection.background\":\"#CCD7DA80\",\"settings.checkboxBackground\":\"#FAFAFA\",\"settings.checkboxForeground\":\"#90A4AE\",\"settings.dropdownBackground\":\"#FAFAFA\",\"settings.dropdownForeground\":\"#90A4AE\",\"settings.headerForeground\":\"#80CBC4\",\"settings.modifiedItemIndicator\":\"#80CBC4\",\"settings.numberInputBackground\":\"#FAFAFA\",\"settings.numberInputForeground\":\"#90A4AE\",\"settings.textInputBackground\":\"#FAFAFA\",\"settings.textInputForeground\":\"#90A4AE\",\"sideBar.background\":\"#FAFAFA\",\"sideBar.border\":\"#FAFAFA60\",\"sideBar.foreground\":\"#758a95\",\"sideBarSectionHeader.background\":\"#FAFAFA\",\"sideBarSectionHeader.border\":\"#FAFAFA60\",\"sideBarTitle.foreground\":\"#90A4AE\",\"statusBar.background\":\"#FAFAFA\",\"statusBar.border\":\"#FAFAFA60\",\"statusBar.debuggingBackground\":\"#9C3EDA\",\"statusBar.debuggingForeground\":\"#FFFFFF\",\"statusBar.foreground\":\"#7E939E\",\"statusBar.noFolderBackground\":\"#FAFAFA\",\"statusBarItem.activeBackground\":\"#E5393580\",\"statusBarItem.hoverBackground\":\"#90A4AE20\",\"statusBarItem.remoteBackground\":\"#80CBC4\",\"statusBarItem.remoteForeground\":\"#000000\",\"tab.activeBackground\":\"#FAFAFA\",\"tab.activeBorder\":\"#80CBC4\",\"tab.activeForeground\":\"#000000\",\"tab.activeModifiedBorder\":\"#758a95\",\"tab.border\":\"#FAFAFA\",\"tab.inactiveBackground\":\"#FAFAFA\",\"tab.inactiveForeground\":\"#758a95\",\"tab.inactiveModifiedBorder\":\"#89221f\",\"tab.unfocusedActiveBorder\":\"#90A4AE\",\"tab.unfocusedActiveForeground\":\"#90A4AE\",\"tab.unfocusedActiveModifiedBorder\":\"#b72d2a\",\"tab.unfocusedInactiveModifiedBorder\":\"#89221f\",\"terminal.ansiBlack\":\"#000000\",\"terminal.ansiBlue\":\"#6182B8\",\"terminal.ansiBrightBlack\":\"#90A4AE\",\"terminal.ansiBrightBlue\":\"#6182B8\",\"terminal.ansiBrightCyan\":\"#39ADB5\",\"terminal.ansiBrightGreen\":\"#91B859\",\"terminal.ansiBrightMagenta\":\"#9C3EDA\",\"terminal.ansiBrightRed\":\"#E53935\",\"terminal.ansiBrightWhite\":\"#FFFFFF\",\"terminal.ansiBrightYellow\":\"#E2931D\",\"terminal.ansiCyan\":\"#39ADB5\",\"terminal.ansiGreen\":\"#91B859\",\"terminal.ansiMagenta\":\"#9C3EDA\",\"terminal.ansiRed\":\"#E53935\",\"terminal.ansiWhite\":\"#FFFFFF\",\"terminal.ansiYellow\":\"#E2931D\",\"terminalCursor.background\":\"#000000\",\"terminalCursor.foreground\":\"#E2931D\",\"textLink.activeForeground\":\"#90A4AE\",\"textLink.foreground\":\"#80CBC4\",\"titleBar.activeBackground\":\"#FAFAFA\",\"titleBar.activeForeground\":\"#90A4AE\",\"titleBar.border\":\"#FAFAFA60\",\"titleBar.inactiveBackground\":\"#FAFAFA\",\"titleBar.inactiveForeground\":\"#758a95\",\"tree.indentGuidesStroke\":\"#B0BEC5\",\"widget.shadow\":\"#00000020\"},\"displayName\":\"Material Theme Lighter\",\"name\":\"material-theme-lighter\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#FAFAFA\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"punctuation, constant.other.symbol\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"constant.character.escape, text.html constant.character.entity.named\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"constant.language.boolean\",\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"keyword.other\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"keyword, modifier, variable.language.this, support.type.object, constant.language\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.function, support.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"storage.type, storage.modifier, storage.control\",\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":\"support.module, support.node\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":\"support.type, constant.other.key\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"entity.name.type, entity.other.inherited-class, entity.other\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"comment punctuation.definition.comment, string.quoted.docstring\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#90A4AE\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name, entity.name.type.class, support.type, support.class, meta.use\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"variable.object.property, meta.field.declaration entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.definition.method entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.function entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"meta.embedded, source.groovy.embedded, meta.template.expression\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"entity.name.tag.yaml\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"constant.language.json\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":\"source.css entity.name.tag\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#8796B0\"}},{\"scope\":\"meta.tag, punctuation.definition.tag\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":\"punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"text.html.markdown meta.link.inline, meta.link.reference\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.bold markup.italic, markup.italic markup.bold\",\"settings\":{\"fontStyle\":\"italic bold\",\"foreground\":\"#E53935\"}},{\"scope\":\"markup.fenced_code.block.markdown punctuation.definition.markdown\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":\"keyword.other.definition.ini\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#39ADB5\"}},{\"scope\":\"source.cs meta.class.identifier storage.type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.method.identifier entity.name.function\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"source.cs meta.method-call meta.method, source.cs entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"source.cs storage.type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.method.return-type\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cs meta.preprocessor\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"source.cs entity.name.type.namespace\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"meta.jsx.children, SXNested\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"support.class.component\",\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"source.python meta.member.access.python\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"source.python meta.function-call.python, meta.function-call.arguments\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"meta.block\",\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":\"entity.name.function.call\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":\"source.php support.other.namespace, source.php meta.use support.class\",\"settings\":{\"foreground\":\"#90A4AE\"}},{\"scope\":\"constant.keyword\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#6182B8\"}},{\"settings\":{\"background\":\"#FAFAFA\",\"foreground\":\"#90A4AE\"}},{\"scope\":[\"constant.other.placeholder\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#91B859\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"variable.parameter.function.language.special.self.python\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#E53935\"}},{\"scope\":[\"constant.character.format.placeholder.other.python\"],\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#39ADB5\"}},{\"scope\":[\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#90A4AE90\"}},{\"scope\":[\"punctuation.definition.quote\"],\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":[\"meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#E2931D\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#F76D47\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#E53935\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#916b53\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#6182B8\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FF5370\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#9C3EDA\"}},{\"scope\":[\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#91B859\"}}],\"type\":\"light\"}"));
2
+ export { material_theme_lighter_default as default };