@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 tokyo_night_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#16161e\",\"activityBar.border\":\"#16161e\",\"activityBar.foreground\":\"#787c99\",\"activityBar.inactiveForeground\":\"#3b3e52\",\"activityBarBadge.background\":\"#3d59a1\",\"activityBarBadge.foreground\":\"#fff\",\"activityBarTop.foreground\":\"#787c99\",\"activityBarTop.inactiveForeground\":\"#3b3e52\",\"badge.background\":\"#7e83b230\",\"badge.foreground\":\"#acb0d0\",\"breadcrumb.activeSelectionForeground\":\"#a9b1d6\",\"breadcrumb.background\":\"#16161e\",\"breadcrumb.focusForeground\":\"#a9b1d6\",\"breadcrumb.foreground\":\"#515670\",\"breadcrumbPicker.background\":\"#16161e\",\"button.background\":\"#3d59a1dd\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#3d59a1AA\",\"button.secondaryBackground\":\"#3b3e52\",\"charts.blue\":\"#7aa2f7\",\"charts.foreground\":\"#9AA5CE\",\"charts.green\":\"#41a6b5\",\"charts.lines\":\"#16161e\",\"charts.orange\":\"#ff9e64\",\"charts.purple\":\"#9d7cd8\",\"charts.red\":\"#f7768e\",\"charts.yellow\":\"#e0af68\",\"chat.avatarBackground\":\"#3d59a1\",\"chat.avatarForeground\":\"#a9b1d6\",\"chat.requestBorder\":\"#0f0f14\",\"chat.slashCommandBackground\":\"#14141b\",\"chat.slashCommandForeground\":\"#7aa2f7\",\"debugConsole.errorForeground\":\"#bb616b\",\"debugConsole.infoForeground\":\"#787c99\",\"debugConsole.sourceForeground\":\"#787c99\",\"debugConsole.warningForeground\":\"#c49a5a\",\"debugConsoleInputIcon.foreground\":\"#73daca\",\"debugExceptionWidget.background\":\"#101014\",\"debugExceptionWidget.border\":\"#963c47\",\"debugIcon.breakpointDisabledForeground\":\"#414761\",\"debugIcon.breakpointForeground\":\"#db4b4b\",\"debugIcon.breakpointUnverifiedForeground\":\"#c24242\",\"debugTokenExpression.boolean\":\"#ff9e64\",\"debugTokenExpression.error\":\"#bb616b\",\"debugTokenExpression.name\":\"#7dcfff\",\"debugTokenExpression.number\":\"#ff9e64\",\"debugTokenExpression.string\":\"#9ece6a\",\"debugTokenExpression.value\":\"#9aa5ce\",\"debugToolBar.background\":\"#101014\",\"debugView.stateLabelBackground\":\"#14141b\",\"debugView.stateLabelForeground\":\"#787c99\",\"debugView.valueChangedHighlight\":\"#3d59a1aa\",\"descriptionForeground\":\"#515670\",\"diffEditor.diagonalFill\":\"#292e42\",\"diffEditor.insertedLineBackground\":\"#41a6b520\",\"diffEditor.insertedTextBackground\":\"#41a6b520\",\"diffEditor.removedLineBackground\":\"#db4b4b22\",\"diffEditor.removedTextBackground\":\"#db4b4b22\",\"diffEditor.unchangedCodeBackground\":\"#282a3b66\",\"diffEditorGutter.insertedLineBackground\":\"#41a6b525\",\"diffEditorGutter.removedLineBackground\":\"#db4b4b22\",\"diffEditorOverview.insertedForeground\":\"#41a6b525\",\"diffEditorOverview.removedForeground\":\"#db4b4b22\",\"disabledForeground\":\"#545c7e\",\"dropdown.background\":\"#14141b\",\"dropdown.foreground\":\"#787c99\",\"dropdown.listBackground\":\"#14141b\",\"editor.background\":\"#1a1b26\",\"editor.findMatchBackground\":\"#3d59a166\",\"editor.findMatchBorder\":\"#e0af68\",\"editor.findMatchHighlightBackground\":\"#3d59a166\",\"editor.findRangeHighlightBackground\":\"#515c7e33\",\"editor.focusedStackFrameHighlightBackground\":\"#73daca20\",\"editor.foldBackground\":\"#1111174a\",\"editor.foreground\":\"#a9b1d6\",\"editor.inactiveSelectionBackground\":\"#515c7e25\",\"editor.lineHighlightBackground\":\"#1e202e\",\"editor.rangeHighlightBackground\":\"#515c7e20\",\"editor.selectionBackground\":\"#515c7e4d\",\"editor.selectionHighlightBackground\":\"#515c7e44\",\"editor.stackFrameHighlightBackground\":\"#E2BD3A20\",\"editor.wordHighlightBackground\":\"#515c7e44\",\"editor.wordHighlightStrongBackground\":\"#515c7e55\",\"editorBracketHighlight.foreground1\":\"#698cd6\",\"editorBracketHighlight.foreground2\":\"#68b3de\",\"editorBracketHighlight.foreground3\":\"#9a7ecc\",\"editorBracketHighlight.foreground4\":\"#25aac2\",\"editorBracketHighlight.foreground5\":\"#80a856\",\"editorBracketHighlight.foreground6\":\"#c49a5a\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#db4b4b\",\"editorBracketMatch.background\":\"#16161e\",\"editorBracketMatch.border\":\"#42465d\",\"editorBracketPairGuide.activeBackground1\":\"#698cd6\",\"editorBracketPairGuide.activeBackground2\":\"#68b3de\",\"editorBracketPairGuide.activeBackground3\":\"#9a7ecc\",\"editorBracketPairGuide.activeBackground4\":\"#25aac2\",\"editorBracketPairGuide.activeBackground5\":\"#80a856\",\"editorBracketPairGuide.activeBackground6\":\"#c49a5a\",\"editorCodeLens.foreground\":\"#51597d\",\"editorCursor.foreground\":\"#c0caf5\",\"editorError.foreground\":\"#db4b4b\",\"editorGhostText.foreground\":\"#646e9c\",\"editorGroup.border\":\"#101014\",\"editorGroup.dropBackground\":\"#1e202e\",\"editorGroupHeader.border\":\"#101014\",\"editorGroupHeader.noTabsBackground\":\"#16161e\",\"editorGroupHeader.tabsBackground\":\"#16161e\",\"editorGroupHeader.tabsBorder\":\"#101014\",\"editorGutter.addedBackground\":\"#164846\",\"editorGutter.deletedBackground\":\"#823c41\",\"editorGutter.modifiedBackground\":\"#394b70\",\"editorHint.foreground\":\"#0da0ba\",\"editorHoverWidget.background\":\"#16161e\",\"editorHoverWidget.border\":\"#101014\",\"editorIndentGuide.activeBackground1\":\"#363b54\",\"editorIndentGuide.background1\":\"#232433\",\"editorInfo.foreground\":\"#0da0ba\",\"editorInlayHint.foreground\":\"#646e9c\",\"editorLightBulb.foreground\":\"#e0af68\",\"editorLightBulbAutoFix.foreground\":\"#e0af68\",\"editorLineNumber.activeForeground\":\"#787c99\",\"editorLineNumber.foreground\":\"#363b54\",\"editorLink.activeForeground\":\"#acb0d0\",\"editorMarkerNavigation.background\":\"#16161e\",\"editorOverviewRuler.addedForeground\":\"#164846\",\"editorOverviewRuler.border\":\"#101014\",\"editorOverviewRuler.bracketMatchForeground\":\"#101014\",\"editorOverviewRuler.deletedForeground\":\"#703438\",\"editorOverviewRuler.errorForeground\":\"#db4b4b\",\"editorOverviewRuler.findMatchForeground\":\"#a9b1d644\",\"editorOverviewRuler.infoForeground\":\"#1abc9c\",\"editorOverviewRuler.modifiedForeground\":\"#394b70\",\"editorOverviewRuler.rangeHighlightForeground\":\"#a9b1d644\",\"editorOverviewRuler.selectionHighlightForeground\":\"#a9b1d622\",\"editorOverviewRuler.warningForeground\":\"#e0af68\",\"editorOverviewRuler.wordHighlightForeground\":\"#bb9af755\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#bb9af766\",\"editorPane.background\":\"#1a1b26\",\"editorRuler.foreground\":\"#101014\",\"editorSuggestWidget.background\":\"#16161e\",\"editorSuggestWidget.border\":\"#101014\",\"editorSuggestWidget.highlightForeground\":\"#6183bb\",\"editorSuggestWidget.selectedBackground\":\"#20222c\",\"editorWarning.foreground\":\"#e0af68\",\"editorWhitespace.foreground\":\"#363b54\",\"editorWidget.background\":\"#16161e\",\"editorWidget.border\":\"#101014\",\"editorWidget.foreground\":\"#787c99\",\"editorWidget.resizeBorder\":\"#545c7e33\",\"errorForeground\":\"#515670\",\"extensionBadge.remoteBackground\":\"#3d59a1\",\"extensionBadge.remoteForeground\":\"#ffffff\",\"extensionButton.prominentBackground\":\"#3d59a1DD\",\"extensionButton.prominentForeground\":\"#ffffff\",\"extensionButton.prominentHoverBackground\":\"#3d59a1AA\",\"focusBorder\":\"#545c7e33\",\"foreground\":\"#787c99\",\"gitDecoration.addedResourceForeground\":\"#449dab\",\"gitDecoration.conflictingResourceForeground\":\"#e0af68cc\",\"gitDecoration.deletedResourceForeground\":\"#914c54\",\"gitDecoration.ignoredResourceForeground\":\"#515670\",\"gitDecoration.modifiedResourceForeground\":\"#6183bb\",\"gitDecoration.renamedResourceForeground\":\"#449dab\",\"gitDecoration.stageDeletedResourceForeground\":\"#914c54\",\"gitDecoration.stageModifiedResourceForeground\":\"#6183bb\",\"gitDecoration.untrackedResourceForeground\":\"#449dab\",\"gitlens.gutterBackgroundColor\":\"#16161e\",\"gitlens.gutterForegroundColor\":\"#787c99\",\"gitlens.gutterUncommittedForegroundColor\":\"#7aa2f7\",\"gitlens.trailingLineForegroundColor\":\"#646e9c\",\"icon.foreground\":\"#787c99\",\"inlineChat.foreground\":\"#a9b1d6\",\"inlineChatDiff.inserted\":\"#41a6b540\",\"inlineChatDiff.removed\":\"#db4b4b42\",\"inlineChatInput.background\":\"#14141b\",\"input.background\":\"#14141b\",\"input.border\":\"#0f0f14\",\"input.foreground\":\"#a9b1d6\",\"input.placeholderForeground\":\"#787c998A\",\"inputOption.activeBackground\":\"#3d59a144\",\"inputOption.activeForeground\":\"#c0caf5\",\"inputValidation.errorBackground\":\"#85353e\",\"inputValidation.errorBorder\":\"#963c47\",\"inputValidation.errorForeground\":\"#bbc2e0\",\"inputValidation.infoBackground\":\"#3d59a15c\",\"inputValidation.infoBorder\":\"#3d59a1\",\"inputValidation.infoForeground\":\"#bbc2e0\",\"inputValidation.warningBackground\":\"#c2985b\",\"inputValidation.warningBorder\":\"#e0af68\",\"inputValidation.warningForeground\":\"#000000\",\"list.activeSelectionBackground\":\"#202330\",\"list.activeSelectionForeground\":\"#a9b1d6\",\"list.deemphasizedForeground\":\"#787c99\",\"list.dropBackground\":\"#1e202e\",\"list.errorForeground\":\"#bb616b\",\"list.focusBackground\":\"#1c1d29\",\"list.focusForeground\":\"#a9b1d6\",\"list.highlightForeground\":\"#668ac4\",\"list.hoverBackground\":\"#13131a\",\"list.hoverForeground\":\"#a9b1d6\",\"list.inactiveSelectionBackground\":\"#1c1d29\",\"list.inactiveSelectionForeground\":\"#a9b1d6\",\"list.invalidItemForeground\":\"#c97018\",\"list.warningForeground\":\"#c49a5a\",\"listFilterWidget.background\":\"#101014\",\"listFilterWidget.noMatchesOutline\":\"#a6333f\",\"listFilterWidget.outline\":\"#3d59a1\",\"menu.background\":\"#16161e\",\"menu.border\":\"#101014\",\"menu.foreground\":\"#787c99\",\"menu.selectionBackground\":\"#1e202e\",\"menu.selectionForeground\":\"#a9b1d6\",\"menu.separatorBackground\":\"#101014\",\"menubar.selectionBackground\":\"#1e202e\",\"menubar.selectionBorder\":\"#1b1e2e\",\"menubar.selectionForeground\":\"#a9b1d6\",\"merge.currentContentBackground\":\"#007a7544\",\"merge.currentHeaderBackground\":\"#41a6b525\",\"merge.incomingContentBackground\":\"#3d59a144\",\"merge.incomingHeaderBackground\":\"#3d59a1aa\",\"mergeEditor.change.background\":\"#41a6b525\",\"mergeEditor.change.word.background\":\"#41a6b540\",\"mergeEditor.conflict.handled.minimapOverViewRuler\":\"#449dab\",\"mergeEditor.conflict.handledFocused.border\":\"#41a6b565\",\"mergeEditor.conflict.handledUnfocused.border\":\"#41a6b525\",\"mergeEditor.conflict.unhandled.minimapOverViewRuler\":\"#e0af68\",\"mergeEditor.conflict.unhandledFocused.border\":\"#e0af68b0\",\"mergeEditor.conflict.unhandledUnfocused.border\":\"#e0af6888\",\"minimapGutter.addedBackground\":\"#1C5957\",\"minimapGutter.deletedBackground\":\"#944449\",\"minimapGutter.modifiedBackground\":\"#425882\",\"multiDiffEditor.border\":\"#1a1b26\",\"multiDiffEditor.headerBackground\":\"#1a1b26\",\"notebook.cellBorderColor\":\"#101014\",\"notebook.cellEditorBackground\":\"#16161e\",\"notebook.cellStatusBarItemHoverBackground\":\"#1c1d29\",\"notebook.editorBackground\":\"#1a1b26\",\"notebook.focusedCellBorder\":\"#29355a\",\"notificationCenterHeader.background\":\"#101014\",\"notificationLink.foreground\":\"#6183bb\",\"notifications.background\":\"#101014\",\"notificationsErrorIcon.foreground\":\"#bb616b\",\"notificationsInfoIcon.foreground\":\"#0da0ba\",\"notificationsWarningIcon.foreground\":\"#bba461\",\"panel.background\":\"#16161e\",\"panel.border\":\"#101014\",\"panelInput.border\":\"#16161e\",\"panelTitle.activeBorder\":\"#16161e\",\"panelTitle.activeForeground\":\"#787c99\",\"panelTitle.inactiveForeground\":\"#42465d\",\"peekView.border\":\"#101014\",\"peekViewEditor.background\":\"#16161e\",\"peekViewEditor.matchHighlightBackground\":\"#3d59a166\",\"peekViewResult.background\":\"#101014\",\"peekViewResult.fileForeground\":\"#787c99\",\"peekViewResult.lineForeground\":\"#a9b1d6\",\"peekViewResult.matchHighlightBackground\":\"#3d59a166\",\"peekViewResult.selectionBackground\":\"#3d59a133\",\"peekViewResult.selectionForeground\":\"#a9b1d6\",\"peekViewTitle.background\":\"#101014\",\"peekViewTitleDescription.foreground\":\"#787c99\",\"peekViewTitleLabel.foreground\":\"#a9b1d6\",\"pickerGroup.border\":\"#101014\",\"pickerGroup.foreground\":\"#a9b1d6\",\"progressBar.background\":\"#3d59a1\",\"sash.hoverBorder\":\"#29355a\",\"scmGraph.foreground1\":\"#ff9e64\",\"scmGraph.foreground2\":\"#e0af68\",\"scmGraph.foreground3\":\"#41a6b5\",\"scmGraph.foreground4\":\"#7aa2f7\",\"scmGraph.foreground5\":\"#bb9af7\",\"scmGraph.historyItemBaseRefColor\":\"#9d7cd8\",\"scmGraph.historyItemHoverAdditionsForeground\":\"#41a6b5\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#a9b1d6\",\"scmGraph.historyItemHoverDeletionsForeground\":\"#f7768e\",\"scmGraph.historyItemHoverLabelForeground\":\"#1b1e2e\",\"scmGraph.historyItemRefColor\":\"#506FCA\",\"scmGraph.historyItemRemoteRefColor\":\"#41a6b5\",\"scrollbar.shadow\":\"#00000033\",\"scrollbarSlider.activeBackground\":\"#868bc422\",\"scrollbarSlider.background\":\"#868bc415\",\"scrollbarSlider.hoverBackground\":\"#868bc410\",\"selection.background\":\"#515c7e40\",\"settings.headerForeground\":\"#6183bb\",\"sideBar.background\":\"#16161e\",\"sideBar.border\":\"#101014\",\"sideBar.dropBackground\":\"#1e202e\",\"sideBar.foreground\":\"#787c99\",\"sideBarSectionHeader.background\":\"#16161e\",\"sideBarSectionHeader.border\":\"#101014\",\"sideBarSectionHeader.foreground\":\"#a9b1d6\",\"sideBarTitle.foreground\":\"#787c99\",\"statusBar.background\":\"#16161e\",\"statusBar.border\":\"#101014\",\"statusBar.debuggingBackground\":\"#16161e\",\"statusBar.debuggingForeground\":\"#787c99\",\"statusBar.foreground\":\"#787c99\",\"statusBar.noFolderBackground\":\"#16161e\",\"statusBarItem.activeBackground\":\"#101014\",\"statusBarItem.hoverBackground\":\"#20222c\",\"statusBarItem.prominentBackground\":\"#101014\",\"statusBarItem.prominentHoverBackground\":\"#20222c\",\"tab.activeBackground\":\"#16161e\",\"tab.activeBorder\":\"#3d59a1\",\"tab.activeForeground\":\"#a9b1d6\",\"tab.activeModifiedBorder\":\"#1a1b26\",\"tab.border\":\"#101014\",\"tab.hoverForeground\":\"#a9b1d6\",\"tab.inactiveBackground\":\"#16161e\",\"tab.inactiveForeground\":\"#787c99\",\"tab.inactiveModifiedBorder\":\"#1f202e\",\"tab.lastPinnedBorder\":\"#222333\",\"tab.unfocusedActiveBorder\":\"#1f202e\",\"tab.unfocusedActiveForeground\":\"#a9b1d6\",\"tab.unfocusedHoverForeground\":\"#a9b1d6\",\"tab.unfocusedInactiveForeground\":\"#787c99\",\"terminal.ansiBlack\":\"#363b54\",\"terminal.ansiBlue\":\"#7aa2f7\",\"terminal.ansiBrightBlack\":\"#363b54\",\"terminal.ansiBrightBlue\":\"#7aa2f7\",\"terminal.ansiBrightCyan\":\"#7dcfff\",\"terminal.ansiBrightGreen\":\"#73daca\",\"terminal.ansiBrightMagenta\":\"#bb9af7\",\"terminal.ansiBrightRed\":\"#f7768e\",\"terminal.ansiBrightWhite\":\"#acb0d0\",\"terminal.ansiBrightYellow\":\"#e0af68\",\"terminal.ansiCyan\":\"#7dcfff\",\"terminal.ansiGreen\":\"#73daca\",\"terminal.ansiMagenta\":\"#bb9af7\",\"terminal.ansiRed\":\"#f7768e\",\"terminal.ansiWhite\":\"#787c99\",\"terminal.ansiYellow\":\"#e0af68\",\"terminal.background\":\"#16161e\",\"terminal.foreground\":\"#787c99\",\"terminal.selectionBackground\":\"#515c7e4d\",\"textBlockQuote.background\":\"#16161e\",\"textCodeBlock.background\":\"#16161e\",\"textLink.activeForeground\":\"#7dcfff\",\"textLink.foreground\":\"#6183bb\",\"textPreformat.foreground\":\"#9699a8\",\"textSeparator.foreground\":\"#363b54\",\"titleBar.activeBackground\":\"#16161e\",\"titleBar.activeForeground\":\"#787c99\",\"titleBar.border\":\"#101014\",\"titleBar.inactiveBackground\":\"#16161e\",\"titleBar.inactiveForeground\":\"#787c99\",\"toolbar.activeBackground\":\"#202330\",\"toolbar.hoverBackground\":\"#202330\",\"tree.indentGuidesStroke\":\"#2b2b3b\",\"walkThrough.embeddedEditorBackground\":\"#16161e\",\"widget.shadow\":\"#ffffff00\",\"window.activeBorder\":\"#0d0f17\",\"window.inactiveBorder\":\"#0d0f17\"},\"displayName\":\"Tokyo Night\",\"name\":\"tokyo-night\",\"semanticTokenColors\":{\"*.defaultLibrary\":{\"foreground\":\"#2ac3de\"},\"parameter\":{\"foreground\":\"#d9d4cd\"},\"parameter.declaration\":{\"foreground\":\"#e0af68\"},\"property.declaration\":{\"foreground\":\"#73daca\"},\"property.defaultLibrary\":{\"foreground\":\"#2ac3de\"},\"variable\":{\"foreground\":\"#c0caf5\"},\"variable.declaration\":{\"foreground\":\"#bb9af7\"},\"variable.defaultLibrary\":{\"foreground\":\"#2ac3de\"}},\"tokenColors\":[{\"scope\":[\"comment\",\"meta.var.expr storage.type\",\"keyword.control.flow\",\"keyword.control.return\",\"meta.directive.vue punctuation.separator.key-value.html\",\"meta.directive.vue entity.other.attribute-name.html\",\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\",\"storage.modifier\",\"string.quoted.docstring.multi\",\"string.quoted.docstring.multi.python punctuation.definition.string.begin\",\"string.quoted.docstring.multi.python punctuation.definition.string.end\",\"string.quoted.docstring.multi.python constant.character.escape\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"keyword.control.flow.block-scalar.literal\",\"keyword.control.flow.python\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"comment\",\"comment.block.documentation\",\"punctuation.definition.comment\",\"comment.block.documentation punctuation\",\"string.quoted.docstring.multi\",\"string.quoted.docstring.multi.python punctuation.definition.string.begin\",\"string.quoted.docstring.multi.python punctuation.definition.string.end\",\"string.quoted.docstring.multi.python constant.character.escape\"],\"settings\":{\"foreground\":\"#51597d\"}},{\"scope\":[\"keyword.operator.assignment.jsdoc\",\"comment.block.documentation variable\",\"comment.block.documentation storage\",\"comment.block.documentation keyword\",\"comment.block.documentation support\",\"comment.block.documentation markup\",\"comment.block.documentation markup.inline.raw.string.markdown\",\"meta.other.type.phpdoc.php keyword.other.type.php\",\"meta.other.type.phpdoc.php support.other.namespace.php\",\"meta.other.type.phpdoc.php punctuation.separator.inheritance.php\",\"meta.other.type.phpdoc.php support.class\",\"keyword.other.phpdoc.php\",\"log.date\"],\"settings\":{\"foreground\":\"#5a638c\"}},{\"scope\":[\"meta.other.type.phpdoc.php support.class\",\"comment.block.documentation storage.type\",\"comment.block.documentation punctuation.definition.block.tag\",\"comment.block.documentation entity.name.type.instance\"],\"settings\":{\"foreground\":\"#646e9c\"}},{\"scope\":[\"variable.other.constant\",\"punctuation.definition.constant\",\"constant.language\",\"constant.numeric\",\"support.constant\",\"constant.other.caps\"],\"settings\":{\"foreground\":\"#ff9e64\"}},{\"scope\":[\"string\",\"constant.other.symbol\",\"constant.other.key\",\"meta.attribute-selector\",\"string constant.character\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#9ece6a\"}},{\"scope\":[\"constant.other.color\",\"constant.other.color.rgb-value.hex punctuation.definition.constant\"],\"settings\":{\"foreground\":\"#9aa5ce\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#ff5370\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"storage.type\",\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":[\"meta.var.expr storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#9d7cd8\"}},{\"scope\":[\"punctuation.definition.template-expression\",\"punctuation.section.embedded\",\"meta.embedded.line.tag.smarty\",\"support.constant.handlebars\",\"punctuation.section.tag.twig\"],\"settings\":{\"foreground\":\"#7dcfff\"}},{\"scope\":[\"keyword.control.smarty\",\"keyword.control.twig\",\"support.constant.handlebars keyword.control\",\"keyword.operator.comparison.twig\",\"keyword.blade\",\"entity.name.function.blade\",\"meta.tag.blade keyword.other.type.php\"],\"settings\":{\"foreground\":\"#0db9d7\"}},{\"scope\":[\"keyword.operator.spread\",\"keyword.operator.rest\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#f7768e\"}},{\"scope\":[\"keyword.operator\",\"keyword.control.as\",\"keyword.other\",\"keyword.operator.bitwise.shift\",\"punctuation\",\"expression.embbeded.vue punctuation.definition.tag\",\"text.html.twig meta.tag.inline.any.html\",\"meta.tag.template.value.twig meta.function.arguments.twig\",\"meta.directive.vue punctuation.separator.key-value.html\",\"punctuation.definition.constant.markdown\",\"punctuation.definition.string\",\"punctuation.support.type.property-name\",\"text.html.vue-html meta.tag\",\"meta.attribute.directive\",\"punctuation.definition.keyword\",\"punctuation.terminator.rule\",\"punctuation.definition.entity\",\"punctuation.separator.inheritance.php\",\"keyword.other.template\",\"keyword.other.substitution\",\"entity.name.operator\",\"meta.property-list punctuation.separator.key-value\",\"meta.at-rule.mixin punctuation.separator.key-value\",\"meta.at-rule.function variable.parameter.url\",\"meta.embedded.inline.phpx punctuation.definition.tag.begin.html\",\"meta.embedded.inline.phpx punctuation.definition.tag.end.html\"],\"settings\":{\"foreground\":\"#89ddff\"}},{\"scope\":[\"keyword.control.module.js\",\"keyword.control.import\",\"keyword.control.export\",\"keyword.control.from\",\"keyword.control.default\",\"meta.import keyword.other\"],\"settings\":{\"foreground\":\"#7dcfff\"}},{\"scope\":[\"keyword\",\"keyword.control\",\"keyword.other.important\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"keyword.other.DML\",\"settings\":{\"foreground\":\"#7dcfff\"}},{\"scope\":[\"keyword.operator.logical\",\"storage.type.function\",\"keyword.operator.bitwise\",\"keyword.operator.ternary\",\"keyword.operator.comparison\",\"keyword.operator.relational\",\"keyword.operator.or.regexp\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"entity.name.tag support.class.component\",\"meta.tag.custom entity.name.tag\",\"meta.tag.other.unrecognized.html.derivative entity.name.tag\",\"meta.tag\"],\"settings\":{\"foreground\":\"#de5971\"}},{\"scope\":[\"punctuation.definition.tag\",\"text.html.php meta.embedded.block.html meta.tag.metadata.script.end.html punctuation.definition.tag.begin.html text.html.basic\"],\"settings\":{\"foreground\":\"#ba3c97\"}},{\"scope\":[\"constant.other.php\",\"variable.other.global.safer\",\"variable.other.global.safer punctuation.definition.variable\",\"variable.other.global\",\"variable.other.global punctuation.definition.variable\",\"constant.other\"],\"settings\":{\"foreground\":\"#e0af68\"}},{\"scope\":[\"variable\",\"support.variable\",\"string constant.other.placeholder\",\"variable.parameter.handlebars\",\"variable.other.object\",\"meta.fstring\",\"meta.function-call meta.function-call.arguments\",\"meta.embedded.inline.phpx constant.other.php\"],\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"meta.array.literal variable\",\"settings\":{\"foreground\":\"#7dcfff\"}},{\"scope\":[\"meta.object-literal.key\",\"entity.name.type.hcl\",\"string.alias.graphql\",\"string.unquoted.graphql\",\"string.unquoted.alias.graphql\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\",\"meta.field.declaration.ts variable.object.property\",\"meta.block entity.name.label\"],\"settings\":{\"foreground\":\"#73daca\"}},{\"scope\":[\"variable.other.property\",\"support.variable.property\",\"support.variable.property.dom\",\"meta.function-call variable.other.object.property\"],\"settings\":{\"foreground\":\"#7dcfff\"}},{\"scope\":\"variable.other.object.property\",\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.objectliteral meta.object.member meta.object-literal.key\",\"settings\":{\"foreground\":\"#41a6b5\"}},{\"scope\":\"source.cpp meta.block variable.other\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":\"support.other.variable\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"entity.name.method.js\",\"variable.function.constructor\",\"keyword.other.special-method\",\"storage.type.cs\"],\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"entity.name.function\",\"variable.other.enummember\",\"meta.function-call\",\"meta.function-call entity.name.function\",\"variable.function\",\"meta.definition.method entity.name.function\",\"meta.object-literal entity.name.function\"],\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"variable.parameter.function.language.special\",\"variable.parameter\",\"meta.function.parameters punctuation.definition.variable\",\"meta.function.parameter variable\"],\"settings\":{\"foreground\":\"#e0af68\"}},{\"scope\":[\"keyword.other.type.php\",\"storage.type.php\",\"constant.character\",\"constant.escape\",\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":[\"meta.definition.variable variable.other.constant\",\"meta.definition.variable variable.other.readwrite\",\"variable.declaration.hcl variable.other.readwrite.hcl\",\"meta.mapping.key.hcl variable.other.readwrite.hcl\",\"variable.other.declaration\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"entity.other.inherited-class\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#bb9af7\"}},{\"scope\":[\"support.class\",\"support.type\",\"variable.other.readwrite.alias\",\"support.orther.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"support.type.sys-types\",\"support.variable.dom\",\"support.constant.math\",\"support.type.object.module\",\"support.constant.json\",\"entity.name.namespace\",\"meta.import.qualifier\",\"variable.other.constant.object\"],\"settings\":{\"foreground\":\"#0db9d7\"}},{\"scope\":\"entity.name\",\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#0db9d7\"}},{\"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\",\"support.type.property-name.css\",\"support.type.vendored.property-name\",\"support.type.map.key\"],\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"support.constant.font-name\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#9ece6a\"}},{\"scope\":[\"entity.other.attribute-name.class\",\"meta.at-rule.mixin.scss entity.name.function.scss\"],\"settings\":{\"foreground\":\"#9ece6a\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#fc7b7b\"}},{\"scope\":\"entity.name.tag.css\",\"settings\":{\"foreground\":\"#0db9d7\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-class punctuation.definition.entity\",\"entity.other.attribute-name.pseudo-element punctuation.definition.entity\",\"entity.other.attribute-name.class punctuation.definition.entity\",\"entity.name.tag.reference\"],\"settings\":{\"foreground\":\"#e0af68\"}},{\"scope\":\"meta.property-list\",\"settings\":{\"foreground\":\"#9abdf5\"}},{\"scope\":[\"meta.property-list meta.at-rule.if\",\"meta.at-rule.return variable.parameter.url\",\"meta.property-list meta.at-rule.else\"],\"settings\":{\"foreground\":\"#ff9e64\"}},{\"scope\":[\"entity.other.attribute-name.parent-selector-suffix punctuation.definition.entity.css\"],\"settings\":{\"foreground\":\"#73daca\"}},{\"scope\":\"meta.property-list meta.property-list\",\"settings\":{\"foreground\":\"#9abdf5\"}},{\"scope\":[\"meta.at-rule.mixin keyword.control.at-rule.mixin\",\"meta.at-rule.include entity.name.function.scss\",\"meta.at-rule.include keyword.control.at-rule.include\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":[\"keyword.control.at-rule.include punctuation.definition.keyword\",\"keyword.control.at-rule.mixin punctuation.definition.keyword\",\"meta.at-rule.include keyword.control.at-rule.include\",\"keyword.control.at-rule.extend punctuation.definition.keyword\",\"meta.at-rule.extend keyword.control.at-rule.extend\",\"entity.other.attribute-name.placeholder.css punctuation.definition.entity.css\",\"meta.at-rule.media keyword.control.at-rule.media\",\"meta.at-rule.mixin keyword.control.at-rule.mixin\",\"meta.at-rule.function keyword.control.at-rule.function\",\"keyword.control punctuation.definition.keyword\"],\"settings\":{\"foreground\":\"#9d7cd8\"}},{\"scope\":\"meta.property-list meta.at-rule.include\",\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"support.constant.property-value\",\"settings\":{\"foreground\":\"#ff9e64\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"variable.language\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":\"variable.other punctuation.definition.variable\",\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\",\"variable.language.this punctuation.definition.variable\",\"keyword.other.this\"],\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"entity.other.attribute-name\",\"text.html.basic entity.other.attribute-name.html\",\"text.html.basic entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"text.html constant.character.entity\",\"settings\":{\"foreground\":\"#0DB9D7\"}},{\"scope\":[\"entity.other.attribute-name.id.html\",\"meta.directive.vue entity.other.attribute-name.html\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"source.sass keyword.control\",\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-class\",\"entity.other.attribute-name.pseudo-element\",\"entity.other.attribute-name.placeholder\",\"meta.property-list meta.property-value\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#449dab\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#914c54\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#6183bb\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#b4f9f8\"}},{\"scope\":\"punctuation.definition.group\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"constant.other.character-class.regexp\"],\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":[\"constant.other.character-class.set.regexp\",\"punctuation.definition.character-class.regexp\"],\"settings\":{\"foreground\":\"#e0af68\"}},{\"scope\":\"keyword.operator.quantifier.regexp\",\"settings\":{\"foreground\":\"#89ddff\"}},{\"scope\":\"constant.character.escape.backslash\",\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#89ddff\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#0db9d7\"}},{\"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\":\"#7dcfff\"}},{\"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\":\"#bb9af7\"}},{\"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\":\"#e0af68\"}},{\"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\":\"#0db9d7\"}},{\"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\":\"#73daca\"}},{\"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\":\"#f7768e\"}},{\"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\":\"#9ece6a\"}},{\"scope\":\"punctuation.definition.list_item.markdown\",\"settings\":{\"foreground\":\"#9abdf5\"}},{\"scope\":[\"meta.block\",\"meta.brace\",\"punctuation.definition.block\",\"punctuation.definition.use\",\"punctuation.definition.class\",\"punctuation.definition.begin.bracket\",\"punctuation.definition.end.bracket\",\"punctuation.definition.switch-expression.begin.bracket\",\"punctuation.definition.switch-expression.end.bracket\",\"punctuation.definition.section.switch-block.begin.bracket\",\"punctuation.definition.section.switch-block.end.bracket\",\"punctuation.definition.group.shell\",\"punctuation.definition.parameters\",\"punctuation.definition.arguments\",\"punctuation.definition.dictionary\",\"punctuation.definition.array\",\"punctuation.section\"],\"settings\":{\"foreground\":\"#9abdf5\"}},{\"scope\":[\"meta.embedded.block\"],\"settings\":{\"foreground\":\"#c0caf5\"}},{\"scope\":[\"meta.tag JSXNested\",\"meta.jsx.children\",\"text.html\",\"text.log\"],\"settings\":{\"foreground\":\"#9aa5ce\"}},{\"scope\":\"text.html.markdown markup.inline.raw.markdown\",\"settings\":{\"foreground\":\"#bb9af7\"}},{\"scope\":\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\",\"settings\":{\"foreground\":\"#4E5579\"}},{\"scope\":[\"heading.1.markdown entity.name\",\"heading.1.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#89ddff\"}},{\"scope\":[\"heading.2.markdown entity.name\",\"heading.2.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#61bdf2\"}},{\"scope\":[\"heading.3.markdown entity.name\",\"heading.3.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7aa2f7\"}},{\"scope\":[\"heading.4.markdown entity.name\",\"heading.4.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6d91de\"}},{\"scope\":[\"heading.5.markdown entity.name\",\"heading.5.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9aa5ce\"}},{\"scope\":[\"heading.6.markdown entity.name\",\"heading.6.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#747ca1\"}},{\"scope\":[\"markup.italic\",\"markup.italic punctuation\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#c0caf5\"}},{\"scope\":[\"markup.bold\",\"markup.bold punctuation\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#c0caf5\"}},{\"scope\":[\"markup.bold markup.italic\",\"markup.bold markup.italic punctuation\"],\"settings\":{\"fontStyle\":\"bold italic\",\"foreground\":\"#c0caf5\"}},{\"scope\":[\"markup.underline\",\"markup.underline punctuation\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"markup.quote punctuation.definition.blockquote.markdown\",\"settings\":{\"foreground\":\"#4e5579\"}},{\"scope\":\"markup.quote\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"string.other.link\",\"markup.underline.link\",\"constant.other.reference.link.markdown\",\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#73daca\"}},{\"scope\":[\"markup.fenced_code.block.markdown\",\"markup.inline.raw.string.markdown\",\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#89ddff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#51597d\"}},{\"scope\":\"markup.table\",\"settings\":{\"foreground\":\"#c0cefc\"}},{\"scope\":\"token.info-token\",\"settings\":{\"foreground\":\"#0db9d7\"}},{\"scope\":\"token.warn-token\",\"settings\":{\"foreground\":\"#ffdb69\"}},{\"scope\":\"token.error-token\",\"settings\":{\"foreground\":\"#db4b4b\"}},{\"scope\":\"token.debug-token\",\"settings\":{\"foreground\":\"#b267e6\"}},{\"scope\":\"entity.tag.apacheconf\",\"settings\":{\"foreground\":\"#f7768e\"}},{\"scope\":[\"meta.preprocessor\"],\"settings\":{\"foreground\":\"#73daca\"}},{\"scope\":\"source.env\",\"settings\":{\"foreground\":\"#7aa2f7\"}}],\"type\":\"dark\"}"));
2
+ export { tokyo_night_default as default };
@@ -0,0 +1,2 @@
1
+ var vesper_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#101010\",\"activityBar.foreground\":\"#A0A0A0\",\"activityBarBadge.background\":\"#FFC799\",\"activityBarBadge.foreground\":\"#000\",\"badge.background\":\"#FFC799\",\"badge.foreground\":\"#000\",\"button.background\":\"#FFC799\",\"button.foreground\":\"#000\",\"button.hoverBackground\":\"#FFCFA8\",\"diffEditor.insertedLineBackground\":\"#99FFE415\",\"diffEditor.insertedTextBackground\":\"#99FFE415\",\"diffEditor.removedLineBackground\":\"#FF808015\",\"diffEditor.removedTextBackground\":\"#FF808015\",\"editor.background\":\"#101010\",\"editor.foreground\":\"#FFF\",\"editor.selectionBackground\":\"#FFFFFF25\",\"editor.selectionHighlightBackground\":\"#FFFFFF25\",\"editorBracketHighlight.foreground1\":\"#A0A0A0\",\"editorBracketHighlight.foreground2\":\"#A0A0A0\",\"editorBracketHighlight.foreground3\":\"#A0A0A0\",\"editorBracketHighlight.foreground4\":\"#A0A0A0\",\"editorBracketHighlight.foreground5\":\"#A0A0A0\",\"editorBracketHighlight.foreground6\":\"#A0A0A0\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#FF8080\",\"editorError.foreground\":\"#FF8080\",\"editorGroupHeader.tabsBackground\":\"#101010\",\"editorGutter.addedBackground\":\"#99FFE4\",\"editorGutter.deletedBackground\":\"#FF8080\",\"editorGutter.modifiedBackground\":\"#FFC799\",\"editorHoverWidget.background\":\"#161616\",\"editorHoverWidget.border\":\"#282828\",\"editorInlayHint.background\":\"#1C1C1C\",\"editorInlayHint.foreground\":\"#A0A0A0\",\"editorLineNumber.foreground\":\"#505050\",\"editorOverviewRuler.border\":\"#101010\",\"editorWarning.foreground\":\"#FFC799\",\"editorWidget.background\":\"#101010\",\"focusBorder\":\"#FFC799\",\"icon.foreground\":\"#A0A0A0\",\"input.background\":\"#1C1C1C\",\"list.activeSelectionBackground\":\"#232323\",\"list.activeSelectionForeground\":\"#FFC799\",\"list.errorForeground\":\"#FF8080\",\"list.highlightForeground\":\"#FFC799\",\"list.hoverBackground\":\"#282828\",\"list.inactiveSelectionBackground\":\"#232323\",\"scrollbarSlider.background\":\"#34343480\",\"scrollbarSlider.hoverBackground\":\"#343434\",\"selection.background\":\"#666\",\"settings.modifiedItemIndicator\":\"#FFC799\",\"sideBar.background\":\"#101010\",\"sideBarSectionHeader.background\":\"#101010\",\"sideBarSectionHeader.foreground\":\"#A0A0A0\",\"sideBarTitle.foreground\":\"#A0A0A0\",\"statusBar.background\":\"#101010\",\"statusBar.debuggingBackground\":\"#FF7300\",\"statusBar.debuggingForeground\":\"#FFF\",\"statusBar.foreground\":\"#A0A0A0\",\"statusBarItem.remoteBackground\":\"#FFC799\",\"statusBarItem.remoteForeground\":\"#000\",\"tab.activeBackground\":\"#161616\",\"tab.activeBorder\":\"#FFC799\",\"tab.border\":\"#101010\",\"tab.inactiveBackground\":\"#101010\",\"textLink.activeForeground\":\"#FFCFA8\",\"textLink.foreground\":\"#FFC799\",\"titleBar.activeBackground\":\"#101010\",\"titleBar.activeForeground\":\"#7E7E7E\",\"titleBar.inactiveBackground\":\"#101010\",\"titleBar.inactiveForeground\":\"#707070\"},\"displayName\":\"Vesper\",\"name\":\"vesper\",\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#8b8b8b94\"}},{\"scope\":[\"variable\",\"string constant.other.placeholder\",\"entity.name.tag\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#FF8080\"}},{\"scope\":[\"keyword\",\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"keyword.control\",\"constant.other.color\",\"punctuation.definition.tag\",\"punctuation.separator.inheritance.php\",\"punctuation.definition.tag.html\",\"punctuation.definition.tag.begin.html\",\"punctuation.definition.tag.end.html\",\"punctuation.section.embedded\",\"keyword.other.template\",\"keyword.other.substitution\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"entity.name.tag\",\"meta.tag.sgml\",\"markup.deleted.git_gutter\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"entity.name.function\",\"variable.function\",\"support.function\",\"keyword.other.special-method\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"meta.block variable.other\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"support.other.variable\",\"string.other.link\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"constant.numeric\",\"support.constant\",\"constant.character\",\"constant.escape\",\"keyword.other.unit\",\"keyword.other\",\"constant.language.boolean\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"string\",\"constant.other.symbol\",\"constant.other.key\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"foreground\":\"#99FFE4\"}},{\"scope\":[\"entity.name\",\"support.type\",\"support.class\",\"support.other.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"markup.changed.git_gutter\",\"support.type.sys-types\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"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\",\"source.postcss support.type.property-name\",\"support.type.vendored.property-name.css\",\"source.css.scss entity.name.tag\",\"variable.parameter.keyframe-list.css\",\"meta.property-name.css\",\"variable.parameter.url.scss\",\"meta.property-value.scss\",\"meta.property-value.css\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#FF8080\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"entity.name.method.js\"],\"settings\":{\"foreground\":\"#FFFF\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"variable.function.constructor\"],\"settings\":{\"foreground\":\"#FFFF\"}},{\"scope\":[\"entity.other.attribute-name\",\"meta.property-list.scss\",\"meta.attribute-selector.scss\",\"meta.property-value.css\",\"entity.other.keyframe-offset.css\",\"meta.selector.css\",\"entity.name.tag.reference.scss\",\"entity.name.tag.nesting.css\",\"punctuation.separator.key-value.css\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"text.html.basic entity.other.attribute-name.html\",\"text.html.basic entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"entity.other.attribute-name.class\",\"entity.other.attribute-name.id\",\"meta.attribute-selector.scss\",\"variable.parameter.misc.css\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"source.sass keyword.control\",\"meta.attribute-selector.scss\"],\"settings\":{\"foreground\":\"#99FFE4\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#99FFE4\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#FF8080\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"foreground\":\"#FFFF\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#FF8080\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"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\":\"#FFC799\"}},{\"scope\":[\"text.html.markdown\",\"punctuation.definition.list_item.markdown\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"markdown.heading\",\"markup.heading | markup.heading entity.name\",\"markup.heading.markdown punctuation.definition.heading.markdown\",\"markup.heading\",\"markup.inserted.git_gutter\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#FFF\"}},{\"scope\":[\"markup.bold\",\"markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#FFF\"}},{\"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\":\"#FFF\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#FFC799\"}},{\"scope\":[\"markup.quote punctuation.definition.blockquote.markdown\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"markup.quote\"]},{\"scope\":[\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#FFFF\"}},{\"scope\":[\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"constant.other.reference.link.markdown\"],\"settings\":{\"foreground\":\"#FFC799\"}},{\"scope\":[\"markup.raw.block\"],\"settings\":{\"foreground\":\"#A0A0A0\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\"],\"settings\":{\"foreground\":\"#00000050\"}},{\"scope\":[\"punctuation.definition.fenced.markdown\"],\"settings\":{\"foreground\":\"#00000050\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\",\"variable.language.fenced.markdown\",\"punctuation.section.class.end\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#FFF\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#65737E\"}},{\"scope\":[\"markup.table\"],\"settings\":{\"foreground\":\"#FFF\"}}],\"type\":\"dark\"}"));
2
+ export { vesper_default as default };
@@ -0,0 +1,2 @@
1
+ var vitesse_black_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#4d9375\",\"activityBar.background\":\"#000\",\"activityBar.border\":\"#191919\",\"activityBar.foreground\":\"#dbd7cacc\",\"activityBar.inactiveForeground\":\"#dedcd550\",\"activityBarBadge.background\":\"#bfbaaa\",\"activityBarBadge.foreground\":\"#000\",\"badge.background\":\"#dedcd590\",\"badge.foreground\":\"#000\",\"breadcrumb.activeSelectionForeground\":\"#eeeeee18\",\"breadcrumb.background\":\"#121212\",\"breadcrumb.focusForeground\":\"#dbd7cacc\",\"breadcrumb.foreground\":\"#959da5\",\"breadcrumbPicker.background\":\"#000\",\"button.background\":\"#4d9375\",\"button.foreground\":\"#000\",\"button.hoverBackground\":\"#4d9375\",\"checkbox.background\":\"#121212\",\"checkbox.border\":\"#2f363d\",\"debugToolBar.background\":\"#000\",\"descriptionForeground\":\"#dedcd590\",\"diffEditor.insertedTextBackground\":\"#4d937550\",\"diffEditor.removedTextBackground\":\"#ab595950\",\"dropdown.background\":\"#000\",\"dropdown.border\":\"#191919\",\"dropdown.foreground\":\"#dbd7cacc\",\"dropdown.listBackground\":\"#121212\",\"editor.background\":\"#000\",\"editor.findMatchBackground\":\"#e6cc7722\",\"editor.findMatchHighlightBackground\":\"#e6cc7744\",\"editor.focusedStackFrameHighlightBackground\":\"#b808\",\"editor.foldBackground\":\"#eeeeee10\",\"editor.foreground\":\"#dbd7cacc\",\"editor.inactiveSelectionBackground\":\"#eeeeee10\",\"editor.lineHighlightBackground\":\"#121212\",\"editor.selectionBackground\":\"#eeeeee18\",\"editor.selectionHighlightBackground\":\"#eeeeee10\",\"editor.stackFrameHighlightBackground\":\"#a707\",\"editor.wordHighlightBackground\":\"#1c6b4805\",\"editor.wordHighlightStrongBackground\":\"#1c6b4810\",\"editorBracketHighlight.foreground1\":\"#5eaab5\",\"editorBracketHighlight.foreground2\":\"#4d9375\",\"editorBracketHighlight.foreground3\":\"#d4976c\",\"editorBracketHighlight.foreground4\":\"#d9739f\",\"editorBracketHighlight.foreground5\":\"#e6cc77\",\"editorBracketHighlight.foreground6\":\"#6394bf\",\"editorBracketMatch.background\":\"#4d937520\",\"editorError.foreground\":\"#cb7676\",\"editorGroup.border\":\"#191919\",\"editorGroupHeader.tabsBackground\":\"#000\",\"editorGroupHeader.tabsBorder\":\"#191919\",\"editorGutter.addedBackground\":\"#4d9375\",\"editorGutter.commentRangeForeground\":\"#dedcd550\",\"editorGutter.deletedBackground\":\"#cb7676\",\"editorGutter.foldingControlForeground\":\"#dedcd590\",\"editorGutter.modifiedBackground\":\"#6394bf\",\"editorHint.foreground\":\"#4d9375\",\"editorIndentGuide.activeBackground\":\"#ffffff30\",\"editorIndentGuide.background\":\"#ffffff15\",\"editorInfo.foreground\":\"#6394bf\",\"editorInlayHint.background\":\"#121212\",\"editorInlayHint.foreground\":\"#444444\",\"editorLineNumber.activeForeground\":\"#bfbaaa\",\"editorLineNumber.foreground\":\"#dedcd550\",\"editorOverviewRuler.border\":\"#111\",\"editorStickyScroll.background\":\"#121212\",\"editorStickyScrollHover.background\":\"#121212\",\"editorWarning.foreground\":\"#d4976c\",\"editorWhitespace.foreground\":\"#ffffff15\",\"editorWidget.background\":\"#000\",\"errorForeground\":\"#cb7676\",\"focusBorder\":\"#00000000\",\"foreground\":\"#dbd7cacc\",\"gitDecoration.addedResourceForeground\":\"#4d9375\",\"gitDecoration.conflictingResourceForeground\":\"#d4976c\",\"gitDecoration.deletedResourceForeground\":\"#cb7676\",\"gitDecoration.ignoredResourceForeground\":\"#dedcd550\",\"gitDecoration.modifiedResourceForeground\":\"#6394bf\",\"gitDecoration.submoduleResourceForeground\":\"#dedcd590\",\"gitDecoration.untrackedResourceForeground\":\"#5eaab5\",\"input.background\":\"#121212\",\"input.border\":\"#191919\",\"input.foreground\":\"#dbd7cacc\",\"input.placeholderForeground\":\"#dedcd590\",\"inputOption.activeBackground\":\"#dedcd550\",\"list.activeSelectionBackground\":\"#121212\",\"list.activeSelectionForeground\":\"#dbd7cacc\",\"list.focusBackground\":\"#121212\",\"list.highlightForeground\":\"#4d9375\",\"list.hoverBackground\":\"#121212\",\"list.hoverForeground\":\"#dbd7cacc\",\"list.inactiveFocusBackground\":\"#000\",\"list.inactiveSelectionBackground\":\"#121212\",\"list.inactiveSelectionForeground\":\"#dbd7cacc\",\"menu.separatorBackground\":\"#191919\",\"notificationCenterHeader.background\":\"#000\",\"notificationCenterHeader.foreground\":\"#959da5\",\"notifications.background\":\"#000\",\"notifications.border\":\"#191919\",\"notifications.foreground\":\"#dbd7cacc\",\"notificationsErrorIcon.foreground\":\"#cb7676\",\"notificationsInfoIcon.foreground\":\"#6394bf\",\"notificationsWarningIcon.foreground\":\"#d4976c\",\"panel.background\":\"#000\",\"panel.border\":\"#191919\",\"panelInput.border\":\"#2f363d\",\"panelTitle.activeBorder\":\"#4d9375\",\"panelTitle.activeForeground\":\"#dbd7cacc\",\"panelTitle.inactiveForeground\":\"#959da5\",\"peekViewEditor.background\":\"#000\",\"peekViewEditor.matchHighlightBackground\":\"#ffd33d33\",\"peekViewResult.background\":\"#000\",\"peekViewResult.matchHighlightBackground\":\"#ffd33d33\",\"pickerGroup.border\":\"#191919\",\"pickerGroup.foreground\":\"#dbd7cacc\",\"problemsErrorIcon.foreground\":\"#cb7676\",\"problemsInfoIcon.foreground\":\"#6394bf\",\"problemsWarningIcon.foreground\":\"#d4976c\",\"progressBar.background\":\"#4d9375\",\"quickInput.background\":\"#000\",\"quickInput.foreground\":\"#dbd7cacc\",\"quickInputList.focusBackground\":\"#121212\",\"scrollbar.shadow\":\"#0000\",\"scrollbarSlider.activeBackground\":\"#dedcd550\",\"scrollbarSlider.background\":\"#dedcd510\",\"scrollbarSlider.hoverBackground\":\"#dedcd550\",\"settings.headerForeground\":\"#dbd7cacc\",\"settings.modifiedItemIndicator\":\"#4d9375\",\"sideBar.background\":\"#000\",\"sideBar.border\":\"#191919\",\"sideBar.foreground\":\"#bfbaaa\",\"sideBarSectionHeader.background\":\"#000\",\"sideBarSectionHeader.border\":\"#191919\",\"sideBarSectionHeader.foreground\":\"#dbd7cacc\",\"sideBarTitle.foreground\":\"#dbd7cacc\",\"statusBar.background\":\"#000\",\"statusBar.border\":\"#191919\",\"statusBar.debuggingBackground\":\"#121212\",\"statusBar.debuggingForeground\":\"#bfbaaa\",\"statusBar.foreground\":\"#bfbaaa\",\"statusBar.noFolderBackground\":\"#000\",\"statusBarItem.prominentBackground\":\"#121212\",\"tab.activeBackground\":\"#000\",\"tab.activeBorder\":\"#191919\",\"tab.activeBorderTop\":\"#dedcd590\",\"tab.activeForeground\":\"#dbd7cacc\",\"tab.border\":\"#191919\",\"tab.hoverBackground\":\"#121212\",\"tab.inactiveBackground\":\"#000\",\"tab.inactiveForeground\":\"#959da5\",\"tab.unfocusedActiveBorder\":\"#191919\",\"tab.unfocusedActiveBorderTop\":\"#191919\",\"tab.unfocusedHoverBackground\":\"#000\",\"terminal.ansiBlack\":\"#393a34\",\"terminal.ansiBlue\":\"#6394bf\",\"terminal.ansiBrightBlack\":\"#777777\",\"terminal.ansiBrightBlue\":\"#6394bf\",\"terminal.ansiBrightCyan\":\"#5eaab5\",\"terminal.ansiBrightGreen\":\"#4d9375\",\"terminal.ansiBrightMagenta\":\"#d9739f\",\"terminal.ansiBrightRed\":\"#cb7676\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#e6cc77\",\"terminal.ansiCyan\":\"#5eaab5\",\"terminal.ansiGreen\":\"#4d9375\",\"terminal.ansiMagenta\":\"#d9739f\",\"terminal.ansiRed\":\"#cb7676\",\"terminal.ansiWhite\":\"#dbd7ca\",\"terminal.ansiYellow\":\"#e6cc77\",\"terminal.foreground\":\"#dbd7cacc\",\"terminal.selectionBackground\":\"#eeeeee18\",\"textBlockQuote.background\":\"#000\",\"textBlockQuote.border\":\"#191919\",\"textCodeBlock.background\":\"#000\",\"textLink.activeForeground\":\"#4d9375\",\"textLink.foreground\":\"#4d9375\",\"textPreformat.foreground\":\"#d1d5da\",\"textSeparator.foreground\":\"#586069\",\"titleBar.activeBackground\":\"#000\",\"titleBar.activeForeground\":\"#bfbaaa\",\"titleBar.border\":\"#121212\",\"titleBar.inactiveBackground\":\"#000\",\"titleBar.inactiveForeground\":\"#959da5\",\"tree.indentGuidesStroke\":\"#2f363d\",\"welcomePage.buttonBackground\":\"#2f363d\",\"welcomePage.buttonHoverBackground\":\"#444d56\"},\"displayName\":\"Vitesse Black\",\"name\":\"vitesse-black\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"class\":\"#6872ab\",\"interface\":\"#5d99a9\",\"namespace\":\"#db889a\",\"property\":\"#b8a965\",\"type\":\"#5d99a9\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#758575dd\"}},{\"scope\":[\"delimiter.bracket\",\"delimiter\",\"invalid.illegal.character-not-allowed-here.html\",\"keyword.operator.rest\",\"keyword.operator.spread\",\"keyword.operator.type.annotation\",\"keyword.operator.relational\",\"keyword.operator.assignment\",\"keyword.operator.type\",\"meta.brace\",\"meta.tag.block.any.html\",\"meta.tag.inline.any.html\",\"meta.tag.structure.input.void.html\",\"meta.type.annotation\",\"meta.embedded.block.github-actions-expression\",\"storage.type.function.arrow\",\"meta.objectliteral.ts\",\"punctuation\",\"punctuation.definition.string.begin.html.vue\",\"punctuation.definition.string.end.html.vue\"],\"settings\":{\"foreground\":\"#444444\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.language\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#c99076\"}},{\"scope\":[\"entity\",\"entity.name\"],\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#dbd7cacc\"}},{\"scope\":[\"entity.name.tag\",\"tag.html\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":[\"keyword\",\"storage.type.class.jsdoc\",\"punctuation.definition.template-expression\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":[\"storage\",\"storage.type\",\"support.type.builtin\",\"constant.language.undefined\",\"constant.language.null\",\"constant.language.import-export-all.ts\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":[\"text.html.derivative\",\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#dbd7cacc\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\",\"attribute.value\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"punctuation.definition.string\"],\"settings\":{\"foreground\":\"#c98a7d77\"}},{\"scope\":[\"punctuation.support.type.property-name\"],\"settings\":{\"foreground\":\"#b8a96577\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#b8a965\"}},{\"scope\":[\"property\",\"meta.property-name\",\"meta.object-literal.key\",\"entity.name.tag.yaml\",\"attribute.name\"],\"settings\":{\"foreground\":\"#b8a965\"}},{\"scope\":[\"entity.other.attribute-name\",\"invalid.deprecated.entity.other.attribute-name.html\"],\"settings\":{\"foreground\":\"#bd976a\"}},{\"scope\":[\"variable\",\"identifier\"],\"settings\":{\"foreground\":\"#bd976a\"}},{\"scope\":[\"support.type.primitive\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#5DA994\"}},{\"scope\":\"namespace\",\"settings\":{\"foreground\":\"#db889a\"}},{\"scope\":[\"keyword.operator\",\"keyword.operator.assignment.compound\",\"meta.var.expr.ts\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f97583\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#24292e\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#c4704f\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"foreground\":\"#e6cc77\"}},{\"scope\":[\"support.constant\"],\"settings\":{\"foreground\":\"#c99076\"}},{\"scope\":[\"keyword.operator.quantifier.regexp\",\"constant.numeric\",\"number\"],\"settings\":{\"foreground\":\"#4C9A91\"}},{\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":[\"constant.language.boolean\",\"constant.language\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#d4976c\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#4d9375\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#5d99a9\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#dbd7cacc\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dbd7cacc\"}},{\"scope\":\"markup.raw\",\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#86181d\",\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#144620\",\"foreground\":\"#85e89d\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#c24e00\",\"foreground\":\"#ffab70\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79b8ff\",\"foreground\":\"#2f363d\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b392f0\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#d1d5da\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\",\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#dedcd590\"}},{\"scope\":[\"type.identifier\",\"constant.other.character-class.regexp\"],\"settings\":{\"foreground\":\"#6872ab\"}},{\"scope\":[\"entity.other.attribute-name.html.vue\"],\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":[\"invalid.illegal.unrecognized-tag.html\"],\"settings\":{\"fontStyle\":\"normal\"}}],\"type\":\"dark\"}"));
2
+ export { vitesse_black_default as default };
@@ -0,0 +1,2 @@
1
+ var vitesse_dark_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#4d9375\",\"activityBar.background\":\"#121212\",\"activityBar.border\":\"#191919\",\"activityBar.foreground\":\"#dbd7caee\",\"activityBar.inactiveForeground\":\"#dedcd550\",\"activityBarBadge.background\":\"#bfbaaa\",\"activityBarBadge.foreground\":\"#121212\",\"badge.background\":\"#dedcd590\",\"badge.foreground\":\"#121212\",\"breadcrumb.activeSelectionForeground\":\"#eeeeee18\",\"breadcrumb.background\":\"#181818\",\"breadcrumb.focusForeground\":\"#dbd7caee\",\"breadcrumb.foreground\":\"#959da5\",\"breadcrumbPicker.background\":\"#121212\",\"button.background\":\"#4d9375\",\"button.foreground\":\"#121212\",\"button.hoverBackground\":\"#4d9375\",\"checkbox.background\":\"#181818\",\"checkbox.border\":\"#2f363d\",\"debugToolBar.background\":\"#121212\",\"descriptionForeground\":\"#dedcd590\",\"diffEditor.insertedTextBackground\":\"#4d937550\",\"diffEditor.removedTextBackground\":\"#ab595950\",\"dropdown.background\":\"#121212\",\"dropdown.border\":\"#191919\",\"dropdown.foreground\":\"#dbd7caee\",\"dropdown.listBackground\":\"#181818\",\"editor.background\":\"#121212\",\"editor.findMatchBackground\":\"#e6cc7722\",\"editor.findMatchHighlightBackground\":\"#e6cc7744\",\"editor.focusedStackFrameHighlightBackground\":\"#b808\",\"editor.foldBackground\":\"#eeeeee10\",\"editor.foreground\":\"#dbd7caee\",\"editor.inactiveSelectionBackground\":\"#eeeeee10\",\"editor.lineHighlightBackground\":\"#181818\",\"editor.selectionBackground\":\"#eeeeee18\",\"editor.selectionHighlightBackground\":\"#eeeeee10\",\"editor.stackFrameHighlightBackground\":\"#a707\",\"editor.wordHighlightBackground\":\"#1c6b4805\",\"editor.wordHighlightStrongBackground\":\"#1c6b4810\",\"editorBracketHighlight.foreground1\":\"#5eaab5\",\"editorBracketHighlight.foreground2\":\"#4d9375\",\"editorBracketHighlight.foreground3\":\"#d4976c\",\"editorBracketHighlight.foreground4\":\"#d9739f\",\"editorBracketHighlight.foreground5\":\"#e6cc77\",\"editorBracketHighlight.foreground6\":\"#6394bf\",\"editorBracketMatch.background\":\"#4d937520\",\"editorError.foreground\":\"#cb7676\",\"editorGroup.border\":\"#191919\",\"editorGroupHeader.tabsBackground\":\"#121212\",\"editorGroupHeader.tabsBorder\":\"#191919\",\"editorGutter.addedBackground\":\"#4d9375\",\"editorGutter.commentRangeForeground\":\"#dedcd550\",\"editorGutter.deletedBackground\":\"#cb7676\",\"editorGutter.foldingControlForeground\":\"#dedcd590\",\"editorGutter.modifiedBackground\":\"#6394bf\",\"editorHint.foreground\":\"#4d9375\",\"editorIndentGuide.activeBackground\":\"#ffffff30\",\"editorIndentGuide.background\":\"#ffffff15\",\"editorInfo.foreground\":\"#6394bf\",\"editorInlayHint.background\":\"#181818\",\"editorInlayHint.foreground\":\"#666666\",\"editorLineNumber.activeForeground\":\"#bfbaaa\",\"editorLineNumber.foreground\":\"#dedcd550\",\"editorOverviewRuler.border\":\"#111\",\"editorStickyScroll.background\":\"#181818\",\"editorStickyScrollHover.background\":\"#181818\",\"editorWarning.foreground\":\"#d4976c\",\"editorWhitespace.foreground\":\"#ffffff15\",\"editorWidget.background\":\"#121212\",\"errorForeground\":\"#cb7676\",\"focusBorder\":\"#00000000\",\"foreground\":\"#dbd7caee\",\"gitDecoration.addedResourceForeground\":\"#4d9375\",\"gitDecoration.conflictingResourceForeground\":\"#d4976c\",\"gitDecoration.deletedResourceForeground\":\"#cb7676\",\"gitDecoration.ignoredResourceForeground\":\"#dedcd550\",\"gitDecoration.modifiedResourceForeground\":\"#6394bf\",\"gitDecoration.submoduleResourceForeground\":\"#dedcd590\",\"gitDecoration.untrackedResourceForeground\":\"#5eaab5\",\"input.background\":\"#181818\",\"input.border\":\"#191919\",\"input.foreground\":\"#dbd7caee\",\"input.placeholderForeground\":\"#dedcd590\",\"inputOption.activeBackground\":\"#dedcd550\",\"list.activeSelectionBackground\":\"#181818\",\"list.activeSelectionForeground\":\"#dbd7caee\",\"list.focusBackground\":\"#181818\",\"list.highlightForeground\":\"#4d9375\",\"list.hoverBackground\":\"#181818\",\"list.hoverForeground\":\"#dbd7caee\",\"list.inactiveFocusBackground\":\"#121212\",\"list.inactiveSelectionBackground\":\"#181818\",\"list.inactiveSelectionForeground\":\"#dbd7caee\",\"menu.separatorBackground\":\"#191919\",\"notificationCenterHeader.background\":\"#121212\",\"notificationCenterHeader.foreground\":\"#959da5\",\"notifications.background\":\"#121212\",\"notifications.border\":\"#191919\",\"notifications.foreground\":\"#dbd7caee\",\"notificationsErrorIcon.foreground\":\"#cb7676\",\"notificationsInfoIcon.foreground\":\"#6394bf\",\"notificationsWarningIcon.foreground\":\"#d4976c\",\"panel.background\":\"#121212\",\"panel.border\":\"#191919\",\"panelInput.border\":\"#2f363d\",\"panelTitle.activeBorder\":\"#4d9375\",\"panelTitle.activeForeground\":\"#dbd7caee\",\"panelTitle.inactiveForeground\":\"#959da5\",\"peekViewEditor.background\":\"#121212\",\"peekViewEditor.matchHighlightBackground\":\"#ffd33d33\",\"peekViewResult.background\":\"#121212\",\"peekViewResult.matchHighlightBackground\":\"#ffd33d33\",\"pickerGroup.border\":\"#191919\",\"pickerGroup.foreground\":\"#dbd7caee\",\"problemsErrorIcon.foreground\":\"#cb7676\",\"problemsInfoIcon.foreground\":\"#6394bf\",\"problemsWarningIcon.foreground\":\"#d4976c\",\"progressBar.background\":\"#4d9375\",\"quickInput.background\":\"#121212\",\"quickInput.foreground\":\"#dbd7caee\",\"quickInputList.focusBackground\":\"#181818\",\"scrollbar.shadow\":\"#0000\",\"scrollbarSlider.activeBackground\":\"#dedcd550\",\"scrollbarSlider.background\":\"#dedcd510\",\"scrollbarSlider.hoverBackground\":\"#dedcd550\",\"settings.headerForeground\":\"#dbd7caee\",\"settings.modifiedItemIndicator\":\"#4d9375\",\"sideBar.background\":\"#121212\",\"sideBar.border\":\"#191919\",\"sideBar.foreground\":\"#bfbaaa\",\"sideBarSectionHeader.background\":\"#121212\",\"sideBarSectionHeader.border\":\"#191919\",\"sideBarSectionHeader.foreground\":\"#dbd7caee\",\"sideBarTitle.foreground\":\"#dbd7caee\",\"statusBar.background\":\"#121212\",\"statusBar.border\":\"#191919\",\"statusBar.debuggingBackground\":\"#181818\",\"statusBar.debuggingForeground\":\"#bfbaaa\",\"statusBar.foreground\":\"#bfbaaa\",\"statusBar.noFolderBackground\":\"#121212\",\"statusBarItem.prominentBackground\":\"#181818\",\"tab.activeBackground\":\"#121212\",\"tab.activeBorder\":\"#191919\",\"tab.activeBorderTop\":\"#dedcd590\",\"tab.activeForeground\":\"#dbd7caee\",\"tab.border\":\"#191919\",\"tab.hoverBackground\":\"#181818\",\"tab.inactiveBackground\":\"#121212\",\"tab.inactiveForeground\":\"#959da5\",\"tab.unfocusedActiveBorder\":\"#191919\",\"tab.unfocusedActiveBorderTop\":\"#191919\",\"tab.unfocusedHoverBackground\":\"#121212\",\"terminal.ansiBlack\":\"#393a34\",\"terminal.ansiBlue\":\"#6394bf\",\"terminal.ansiBrightBlack\":\"#777777\",\"terminal.ansiBrightBlue\":\"#6394bf\",\"terminal.ansiBrightCyan\":\"#5eaab5\",\"terminal.ansiBrightGreen\":\"#4d9375\",\"terminal.ansiBrightMagenta\":\"#d9739f\",\"terminal.ansiBrightRed\":\"#cb7676\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#e6cc77\",\"terminal.ansiCyan\":\"#5eaab5\",\"terminal.ansiGreen\":\"#4d9375\",\"terminal.ansiMagenta\":\"#d9739f\",\"terminal.ansiRed\":\"#cb7676\",\"terminal.ansiWhite\":\"#dbd7ca\",\"terminal.ansiYellow\":\"#e6cc77\",\"terminal.foreground\":\"#dbd7caee\",\"terminal.selectionBackground\":\"#eeeeee18\",\"textBlockQuote.background\":\"#121212\",\"textBlockQuote.border\":\"#191919\",\"textCodeBlock.background\":\"#121212\",\"textLink.activeForeground\":\"#4d9375\",\"textLink.foreground\":\"#4d9375\",\"textPreformat.foreground\":\"#d1d5da\",\"textSeparator.foreground\":\"#586069\",\"titleBar.activeBackground\":\"#121212\",\"titleBar.activeForeground\":\"#bfbaaa\",\"titleBar.border\":\"#181818\",\"titleBar.inactiveBackground\":\"#121212\",\"titleBar.inactiveForeground\":\"#959da5\",\"tree.indentGuidesStroke\":\"#2f363d\",\"welcomePage.buttonBackground\":\"#2f363d\",\"welcomePage.buttonHoverBackground\":\"#444d56\"},\"displayName\":\"Vitesse Dark\",\"name\":\"vitesse-dark\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"class\":\"#6872ab\",\"interface\":\"#5d99a9\",\"namespace\":\"#db889a\",\"property\":\"#b8a965\",\"type\":\"#5d99a9\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#758575dd\"}},{\"scope\":[\"delimiter.bracket\",\"delimiter\",\"invalid.illegal.character-not-allowed-here.html\",\"keyword.operator.rest\",\"keyword.operator.spread\",\"keyword.operator.type.annotation\",\"keyword.operator.relational\",\"keyword.operator.assignment\",\"keyword.operator.type\",\"meta.brace\",\"meta.tag.block.any.html\",\"meta.tag.inline.any.html\",\"meta.tag.structure.input.void.html\",\"meta.type.annotation\",\"meta.embedded.block.github-actions-expression\",\"storage.type.function.arrow\",\"meta.objectliteral.ts\",\"punctuation\",\"punctuation.definition.string.begin.html.vue\",\"punctuation.definition.string.end.html.vue\"],\"settings\":{\"foreground\":\"#666666\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.language\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#c99076\"}},{\"scope\":[\"entity\",\"entity.name\"],\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#dbd7caee\"}},{\"scope\":[\"entity.name.tag\",\"tag.html\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":[\"keyword\",\"storage.type.class.jsdoc\",\"punctuation.definition.template-expression\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":[\"storage\",\"storage.type\",\"support.type.builtin\",\"constant.language.undefined\",\"constant.language.null\",\"constant.language.import-export-all.ts\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":[\"text.html.derivative\",\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#dbd7caee\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\",\"attribute.value\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"punctuation.definition.string\"],\"settings\":{\"foreground\":\"#c98a7d77\"}},{\"scope\":[\"punctuation.support.type.property-name\"],\"settings\":{\"foreground\":\"#b8a96577\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#b8a965\"}},{\"scope\":[\"property\",\"meta.property-name\",\"meta.object-literal.key\",\"entity.name.tag.yaml\",\"attribute.name\"],\"settings\":{\"foreground\":\"#b8a965\"}},{\"scope\":[\"entity.other.attribute-name\",\"invalid.deprecated.entity.other.attribute-name.html\"],\"settings\":{\"foreground\":\"#bd976a\"}},{\"scope\":[\"variable\",\"identifier\"],\"settings\":{\"foreground\":\"#bd976a\"}},{\"scope\":[\"support.type.primitive\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#5DA994\"}},{\"scope\":\"namespace\",\"settings\":{\"foreground\":\"#db889a\"}},{\"scope\":[\"keyword.operator\",\"keyword.operator.assignment.compound\",\"meta.var.expr.ts\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fdaeb7\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#f97583\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#24292e\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#c4704f\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"foreground\":\"#e6cc77\"}},{\"scope\":[\"support.constant\"],\"settings\":{\"foreground\":\"#c99076\"}},{\"scope\":[\"keyword.operator.quantifier.regexp\",\"constant.numeric\",\"number\"],\"settings\":{\"foreground\":\"#4C9A91\"}},{\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#cb7676\"}},{\"scope\":[\"constant.language.boolean\",\"constant.language\"],\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#d4976c\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#4d9375\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#5d99a9\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#dbd7caee\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#dbd7caee\"}},{\"scope\":\"markup.raw\",\"settings\":{\"foreground\":\"#4d9375\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#86181d\",\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#144620\",\"foreground\":\"#85e89d\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#c24e00\",\"foreground\":\"#ffab70\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#79b8ff\",\"foreground\":\"#2f363d\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b392f0\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79b8ff\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#79b8ff\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#d1d5da\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#fdaeb7\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\",\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\"],\"settings\":{\"foreground\":\"#c98a7d\"}},{\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#dedcd590\"}},{\"scope\":[\"type.identifier\",\"constant.other.character-class.regexp\"],\"settings\":{\"foreground\":\"#6872ab\"}},{\"scope\":[\"entity.other.attribute-name.html.vue\"],\"settings\":{\"foreground\":\"#80a665\"}},{\"scope\":[\"invalid.illegal.unrecognized-tag.html\"],\"settings\":{\"fontStyle\":\"normal\"}}],\"type\":\"dark\"}"));
2
+ export { vitesse_dark_default as default };
@@ -0,0 +1,2 @@
1
+ var vitesse_light_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#1c6b48\",\"activityBar.background\":\"#ffffff\",\"activityBar.border\":\"#f0f0f0\",\"activityBar.foreground\":\"#393a34\",\"activityBar.inactiveForeground\":\"#393a3450\",\"activityBarBadge.background\":\"#4e4f47\",\"activityBarBadge.foreground\":\"#ffffff\",\"badge.background\":\"#393a3490\",\"badge.foreground\":\"#ffffff\",\"breadcrumb.activeSelectionForeground\":\"#22222218\",\"breadcrumb.background\":\"#f7f7f7\",\"breadcrumb.focusForeground\":\"#393a34\",\"breadcrumb.foreground\":\"#6a737d\",\"breadcrumbPicker.background\":\"#ffffff\",\"button.background\":\"#1c6b48\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#1c6b48\",\"checkbox.background\":\"#f7f7f7\",\"checkbox.border\":\"#d1d5da\",\"debugToolBar.background\":\"#ffffff\",\"descriptionForeground\":\"#393a3490\",\"diffEditor.insertedTextBackground\":\"#1c6b4830\",\"diffEditor.removedTextBackground\":\"#ab595940\",\"dropdown.background\":\"#ffffff\",\"dropdown.border\":\"#f0f0f0\",\"dropdown.foreground\":\"#393a34\",\"dropdown.listBackground\":\"#f7f7f7\",\"editor.background\":\"#ffffff\",\"editor.findMatchBackground\":\"#e6cc7744\",\"editor.findMatchHighlightBackground\":\"#e6cc7766\",\"editor.focusedStackFrameHighlightBackground\":\"#fff5b1\",\"editor.foldBackground\":\"#22222210\",\"editor.foreground\":\"#393a34\",\"editor.inactiveSelectionBackground\":\"#22222210\",\"editor.lineHighlightBackground\":\"#f7f7f7\",\"editor.selectionBackground\":\"#22222218\",\"editor.selectionHighlightBackground\":\"#22222210\",\"editor.stackFrameHighlightBackground\":\"#fffbdd\",\"editor.wordHighlightBackground\":\"#1c6b4805\",\"editor.wordHighlightStrongBackground\":\"#1c6b4810\",\"editorBracketHighlight.foreground1\":\"#2993a3\",\"editorBracketHighlight.foreground2\":\"#1e754f\",\"editorBracketHighlight.foreground3\":\"#a65e2b\",\"editorBracketHighlight.foreground4\":\"#a13865\",\"editorBracketHighlight.foreground5\":\"#bda437\",\"editorBracketHighlight.foreground6\":\"#296aa3\",\"editorBracketMatch.background\":\"#1c6b4820\",\"editorError.foreground\":\"#ab5959\",\"editorGroup.border\":\"#f0f0f0\",\"editorGroupHeader.tabsBackground\":\"#ffffff\",\"editorGroupHeader.tabsBorder\":\"#f0f0f0\",\"editorGutter.addedBackground\":\"#1e754f\",\"editorGutter.commentRangeForeground\":\"#393a3450\",\"editorGutter.deletedBackground\":\"#ab5959\",\"editorGutter.foldingControlForeground\":\"#393a3490\",\"editorGutter.modifiedBackground\":\"#296aa3\",\"editorHint.foreground\":\"#1e754f\",\"editorIndentGuide.activeBackground\":\"#00000030\",\"editorIndentGuide.background\":\"#00000015\",\"editorInfo.foreground\":\"#296aa3\",\"editorInlayHint.background\":\"#f7f7f7\",\"editorInlayHint.foreground\":\"#999999\",\"editorLineNumber.activeForeground\":\"#4e4f47\",\"editorLineNumber.foreground\":\"#393a3450\",\"editorOverviewRuler.border\":\"#fff\",\"editorStickyScroll.background\":\"#f7f7f7\",\"editorStickyScrollHover.background\":\"#f7f7f7\",\"editorWarning.foreground\":\"#a65e2b\",\"editorWhitespace.foreground\":\"#00000015\",\"editorWidget.background\":\"#ffffff\",\"errorForeground\":\"#ab5959\",\"focusBorder\":\"#00000000\",\"foreground\":\"#393a34\",\"gitDecoration.addedResourceForeground\":\"#1e754f\",\"gitDecoration.conflictingResourceForeground\":\"#a65e2b\",\"gitDecoration.deletedResourceForeground\":\"#ab5959\",\"gitDecoration.ignoredResourceForeground\":\"#393a3450\",\"gitDecoration.modifiedResourceForeground\":\"#296aa3\",\"gitDecoration.submoduleResourceForeground\":\"#393a3490\",\"gitDecoration.untrackedResourceForeground\":\"#2993a3\",\"input.background\":\"#f7f7f7\",\"input.border\":\"#f0f0f0\",\"input.foreground\":\"#393a34\",\"input.placeholderForeground\":\"#393a3490\",\"inputOption.activeBackground\":\"#393a3450\",\"list.activeSelectionBackground\":\"#f7f7f7\",\"list.activeSelectionForeground\":\"#393a34\",\"list.focusBackground\":\"#f7f7f7\",\"list.highlightForeground\":\"#1c6b48\",\"list.hoverBackground\":\"#f7f7f7\",\"list.hoverForeground\":\"#393a34\",\"list.inactiveFocusBackground\":\"#ffffff\",\"list.inactiveSelectionBackground\":\"#f7f7f7\",\"list.inactiveSelectionForeground\":\"#393a34\",\"menu.separatorBackground\":\"#f0f0f0\",\"notificationCenterHeader.background\":\"#ffffff\",\"notificationCenterHeader.foreground\":\"#6a737d\",\"notifications.background\":\"#ffffff\",\"notifications.border\":\"#f0f0f0\",\"notifications.foreground\":\"#393a34\",\"notificationsErrorIcon.foreground\":\"#ab5959\",\"notificationsInfoIcon.foreground\":\"#296aa3\",\"notificationsWarningIcon.foreground\":\"#a65e2b\",\"panel.background\":\"#ffffff\",\"panel.border\":\"#f0f0f0\",\"panelInput.border\":\"#e1e4e8\",\"panelTitle.activeBorder\":\"#1c6b48\",\"panelTitle.activeForeground\":\"#393a34\",\"panelTitle.inactiveForeground\":\"#6a737d\",\"peekViewEditor.background\":\"#ffffff\",\"peekViewResult.background\":\"#ffffff\",\"pickerGroup.border\":\"#f0f0f0\",\"pickerGroup.foreground\":\"#393a34\",\"problemsErrorIcon.foreground\":\"#ab5959\",\"problemsInfoIcon.foreground\":\"#296aa3\",\"problemsWarningIcon.foreground\":\"#a65e2b\",\"progressBar.background\":\"#1c6b48\",\"quickInput.background\":\"#ffffff\",\"quickInput.foreground\":\"#393a34\",\"quickInputList.focusBackground\":\"#f7f7f7\",\"scrollbar.shadow\":\"#6a737d33\",\"scrollbarSlider.activeBackground\":\"#393a3450\",\"scrollbarSlider.background\":\"#393a3410\",\"scrollbarSlider.hoverBackground\":\"#393a3450\",\"settings.headerForeground\":\"#393a34\",\"settings.modifiedItemIndicator\":\"#1c6b48\",\"sideBar.background\":\"#ffffff\",\"sideBar.border\":\"#f0f0f0\",\"sideBar.foreground\":\"#4e4f47\",\"sideBarSectionHeader.background\":\"#ffffff\",\"sideBarSectionHeader.border\":\"#f0f0f0\",\"sideBarSectionHeader.foreground\":\"#393a34\",\"sideBarTitle.foreground\":\"#393a34\",\"statusBar.background\":\"#ffffff\",\"statusBar.border\":\"#f0f0f0\",\"statusBar.debuggingBackground\":\"#f7f7f7\",\"statusBar.debuggingForeground\":\"#4e4f47\",\"statusBar.foreground\":\"#4e4f47\",\"statusBar.noFolderBackground\":\"#ffffff\",\"statusBarItem.prominentBackground\":\"#f7f7f7\",\"tab.activeBackground\":\"#ffffff\",\"tab.activeBorder\":\"#f0f0f0\",\"tab.activeBorderTop\":\"#393a3490\",\"tab.activeForeground\":\"#393a34\",\"tab.border\":\"#f0f0f0\",\"tab.hoverBackground\":\"#f7f7f7\",\"tab.inactiveBackground\":\"#ffffff\",\"tab.inactiveForeground\":\"#6a737d\",\"tab.unfocusedActiveBorder\":\"#f0f0f0\",\"tab.unfocusedActiveBorderTop\":\"#f0f0f0\",\"tab.unfocusedHoverBackground\":\"#ffffff\",\"terminal.ansiBlack\":\"#121212\",\"terminal.ansiBlue\":\"#296aa3\",\"terminal.ansiBrightBlack\":\"#aaaaaa\",\"terminal.ansiBrightBlue\":\"#296aa3\",\"terminal.ansiBrightCyan\":\"#2993a3\",\"terminal.ansiBrightGreen\":\"#1e754f\",\"terminal.ansiBrightMagenta\":\"#a13865\",\"terminal.ansiBrightRed\":\"#ab5959\",\"terminal.ansiBrightWhite\":\"#dddddd\",\"terminal.ansiBrightYellow\":\"#bda437\",\"terminal.ansiCyan\":\"#2993a3\",\"terminal.ansiGreen\":\"#1e754f\",\"terminal.ansiMagenta\":\"#a13865\",\"terminal.ansiRed\":\"#ab5959\",\"terminal.ansiWhite\":\"#dbd7ca\",\"terminal.ansiYellow\":\"#bda437\",\"terminal.foreground\":\"#393a34\",\"terminal.selectionBackground\":\"#22222218\",\"textBlockQuote.background\":\"#ffffff\",\"textBlockQuote.border\":\"#f0f0f0\",\"textCodeBlock.background\":\"#ffffff\",\"textLink.activeForeground\":\"#1c6b48\",\"textLink.foreground\":\"#1c6b48\",\"textPreformat.foreground\":\"#586069\",\"textSeparator.foreground\":\"#d1d5da\",\"titleBar.activeBackground\":\"#ffffff\",\"titleBar.activeForeground\":\"#4e4f47\",\"titleBar.border\":\"#f7f7f7\",\"titleBar.inactiveBackground\":\"#ffffff\",\"titleBar.inactiveForeground\":\"#6a737d\",\"tree.indentGuidesStroke\":\"#e1e4e8\",\"welcomePage.buttonBackground\":\"#f6f8fa\",\"welcomePage.buttonHoverBackground\":\"#e1e4e8\"},\"displayName\":\"Vitesse Light\",\"name\":\"vitesse-light\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"class\":\"#5a6aa6\",\"interface\":\"#2e808f\",\"namespace\":\"#b05a78\",\"property\":\"#998418\",\"type\":\"#2e808f\"},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"string.comment\"],\"settings\":{\"foreground\":\"#a0ada0\"}},{\"scope\":[\"delimiter.bracket\",\"delimiter\",\"invalid.illegal.character-not-allowed-here.html\",\"keyword.operator.rest\",\"keyword.operator.spread\",\"keyword.operator.type.annotation\",\"keyword.operator.relational\",\"keyword.operator.assignment\",\"keyword.operator.type\",\"meta.brace\",\"meta.tag.block.any.html\",\"meta.tag.inline.any.html\",\"meta.tag.structure.input.void.html\",\"meta.type.annotation\",\"meta.embedded.block.github-actions-expression\",\"storage.type.function.arrow\",\"meta.objectliteral.ts\",\"punctuation\",\"punctuation.definition.string.begin.html.vue\",\"punctuation.definition.string.end.html.vue\"],\"settings\":{\"foreground\":\"#999999\"}},{\"scope\":[\"constant\",\"entity.name.constant\",\"variable.language\",\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#a65e2b\"}},{\"scope\":[\"entity\",\"entity.name\"],\"settings\":{\"foreground\":\"#59873a\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#393a34\"}},{\"scope\":[\"entity.name.tag\",\"tag.html\"],\"settings\":{\"foreground\":\"#1e754f\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#59873a\"}},{\"scope\":[\"keyword\",\"storage.type.class.jsdoc\",\"punctuation.definition.template-expression\"],\"settings\":{\"foreground\":\"#1e754f\"}},{\"scope\":[\"storage\",\"storage.type\",\"support.type.builtin\",\"constant.language.undefined\",\"constant.language.null\",\"constant.language.import-export-all.ts\"],\"settings\":{\"foreground\":\"#ab5959\"}},{\"scope\":[\"text.html.derivative\",\"storage.modifier.package\",\"storage.modifier.import\",\"storage.type.java\"],\"settings\":{\"foreground\":\"#393a34\"}},{\"scope\":[\"string\",\"string punctuation.section.embedded source\",\"attribute.value\"],\"settings\":{\"foreground\":\"#b56959\"}},{\"scope\":[\"punctuation.definition.string\"],\"settings\":{\"foreground\":\"#b5695977\"}},{\"scope\":[\"punctuation.support.type.property-name\"],\"settings\":{\"foreground\":\"#99841877\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#998418\"}},{\"scope\":[\"property\",\"meta.property-name\",\"meta.object-literal.key\",\"entity.name.tag.yaml\",\"attribute.name\"],\"settings\":{\"foreground\":\"#998418\"}},{\"scope\":[\"entity.other.attribute-name\",\"invalid.deprecated.entity.other.attribute-name.html\"],\"settings\":{\"foreground\":\"#b07d48\"}},{\"scope\":[\"variable\",\"identifier\"],\"settings\":{\"foreground\":\"#b07d48\"}},{\"scope\":[\"support.type.primitive\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#2e8f82\"}},{\"scope\":\"namespace\",\"settings\":{\"foreground\":\"#b05a78\"}},{\"scope\":[\"keyword.operator\",\"keyword.operator.assignment.compound\",\"meta.var.expr.ts\"],\"settings\":{\"foreground\":\"#ab5959\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#b31d28\"}},{\"scope\":\"carriage-return\",\"settings\":{\"background\":\"#d73a49\",\"content\":\"^M\",\"fontStyle\":\"italic underline\",\"foreground\":\"#fafbfc\"}},{\"scope\":\"message.error\",\"settings\":{\"foreground\":\"#b31d28\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#b56959\"}},{\"scope\":[\"source.regexp\",\"string.regexp\"],\"settings\":{\"foreground\":\"#ab5e3f\"}},{\"scope\":[\"string.regexp.character-class\",\"string.regexp constant.character.escape\",\"string.regexp source.ruby.embedded\",\"string.regexp string.regexp.arbitrary-repitition\"],\"settings\":{\"foreground\":\"#b56959\"}},{\"scope\":\"string.regexp constant.character.escape\",\"settings\":{\"foreground\":\"#bda437\"}},{\"scope\":[\"support.constant\"],\"settings\":{\"foreground\":\"#a65e2b\"}},{\"scope\":[\"keyword.operator.quantifier.regexp\",\"constant.numeric\",\"number\"],\"settings\":{\"foreground\":\"#2f798a\"}},{\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#ab5959\"}},{\"scope\":[\"constant.language.boolean\",\"constant.language\"],\"settings\":{\"foreground\":\"#1e754f\"}},{\"scope\":\"meta.module-reference\",\"settings\":{\"foreground\":\"#1c6b48\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#a65e2b\"}},{\"scope\":[\"markup.heading\",\"markup.heading entity.name\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#1c6b48\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#2e808f\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#393a34\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#393a34\"}},{\"scope\":\"markup.raw\",\"settings\":{\"foreground\":\"#1c6b48\"}},{\"scope\":[\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\"],\"settings\":{\"background\":\"#ffeef0\",\"foreground\":\"#b31d28\"}},{\"scope\":[\"markup.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.inserted\"],\"settings\":{\"background\":\"#f0fff4\",\"foreground\":\"#22863a\"}},{\"scope\":[\"markup.changed\",\"punctuation.definition.changed\"],\"settings\":{\"background\":\"#ffebda\",\"foreground\":\"#e36209\"}},{\"scope\":[\"markup.ignored\",\"markup.untracked\"],\"settings\":{\"background\":\"#005cc5\",\"foreground\":\"#f6f8fa\"}},{\"scope\":\"meta.diff.range\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#6f42c1\"}},{\"scope\":\"meta.diff.header\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.separator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#005cc5\"}},{\"scope\":\"meta.output\",\"settings\":{\"foreground\":\"#005cc5\"}},{\"scope\":[\"brackethighlighter.tag\",\"brackethighlighter.curly\",\"brackethighlighter.round\",\"brackethighlighter.square\",\"brackethighlighter.angle\",\"brackethighlighter.quote\"],\"settings\":{\"foreground\":\"#586069\"}},{\"scope\":\"brackethighlighter.unmatched\",\"settings\":{\"foreground\":\"#b31d28\"}},{\"scope\":[\"constant.other.reference.link\",\"string.other.link\",\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\"],\"settings\":{\"foreground\":\"#b56959\"}},{\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#393a3490\"}},{\"scope\":[\"type.identifier\",\"constant.other.character-class.regexp\"],\"settings\":{\"foreground\":\"#5a6aa6\"}},{\"scope\":[\"entity.other.attribute-name.html.vue\"],\"settings\":{\"foreground\":\"#59873a\"}},{\"scope\":[\"invalid.illegal.unrecognized-tag.html\"],\"settings\":{\"fontStyle\":\"normal\"}}],\"type\":\"light\"}"));
2
+ export { vitesse_light_default as default };
@@ -0,0 +1,6 @@
1
+ var ShikiError = class extends Error {
2
+ constructor(e) {
3
+ super(e), this.name = "ShikiError";
4
+ }
5
+ };
6
+ export { ShikiError };