@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.
- package/dist/components/LoadingCentered.js +2 -2
- package/dist/components/ai-elements/code-block.js +96 -0
- package/dist/components/ai-elements/message.js +87 -0
- package/dist/components/ai-elements/prompt-input.js +321 -0
- package/dist/components/ai-elements/reasoning.js +124 -0
- package/dist/components/ai-elements/shimmer.js +37 -0
- package/dist/components/ai-elements/sources.js +65 -0
- package/dist/components/ai-elements/tool.js +158 -0
- package/dist/components/content/ErrorAlert.js +17 -0
- package/dist/components/data-table/DataTable.js +99 -96
- package/dist/components/dynamic-form/CodeContent.js +2 -2
- package/dist/components/dynamic-form/FormElement.js +3 -3
- package/dist/components/dynamic-form/FormElementHeader.js +2 -2
- package/dist/components/dynamic-form/ObjectController.js +2 -2
- package/dist/components/layout/MainLayout.js +0 -1
- package/dist/components/lists/ListView.js +62 -59
- package/dist/components/loopstack-elements/link.js +115 -0
- package/dist/components/ui/button-group.js +13 -0
- package/dist/components/ui/command.js +7 -0
- package/dist/components/ui/context-menu.js +63 -0
- package/dist/components/ui/hover-card.js +6 -0
- package/dist/components/ui/input-group.js +85 -0
- package/dist/components/ui/table.js +2 -2
- package/dist/components/ui/tabs.js +54 -0
- package/dist/components/ui-widgets/UiActions.js +24 -0
- package/dist/components/ui-widgets/UiWidget.js +43 -0
- package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
- package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
- package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
- package/dist/features/code-explorer/CodeExplorer.js +69 -0
- package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
- package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
- package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
- package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
- package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
- package/dist/features/code-explorer/utils/fileIcons.js +42 -0
- package/dist/features/dashboard/Dashboard.js +125 -0
- package/dist/features/dashboard/RunItem.js +76 -0
- package/dist/features/dashboard/RunList.js +32 -0
- package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
- package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
- package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
- package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
- package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
- package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
- package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
- package/dist/features/debug/lib/edge-paths.js +47 -0
- package/dist/features/debug/lib/flow-utils.js +247 -0
- package/dist/features/health/LocalHealthCheck.js +1 -1
- package/dist/features/oauth/OAuthCallbackPage.js +2 -0
- package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
- package/dist/features/oauth/index.js +3 -0
- package/dist/features/oauth/useOAuthPopup.js +83 -0
- package/dist/features/workbench/NavigationItems.js +52 -0
- package/dist/features/workbench/Workbench.js +101 -0
- package/dist/features/workbench/WorkbenchNavigation.js +38 -0
- package/dist/features/workbench/WorkflowItem.js +67 -0
- package/dist/features/workbench/WorkflowList.js +110 -0
- package/dist/features/workbench/components/DocumentItem.js +27 -0
- package/dist/features/workbench/components/DocumentList.js +40 -0
- package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
- package/dist/features/workbench/components/DocumentRenderer.js +54 -0
- package/dist/features/workbench/components/NavigationItem.js +68 -0
- package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
- package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
- package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
- package/dist/features/workbench/components/WorkflowForms.js +22 -0
- package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
- package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
- package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
- package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
- package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
- package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
- package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
- package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
- package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
- package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
- package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
- package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
- package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
- package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
- package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
- package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
- package/dist/features/workbench/providers/ScrollProvider.js +22 -0
- package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
- package/dist/features/workspaces/Workspaces.js +156 -89
- package/dist/features/workspaces/components/CreateWorkspace.js +101 -78
- package/dist/features/workspaces/components/ExecutionTimeline.js +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/useDashboard.js +23 -0
- package/dist/hooks/useDocuments.js +45 -0
- package/dist/hooks/useFiles.js +63 -0
- package/dist/hooks/useNamespaceTree.js +27 -0
- package/dist/hooks/useNamespaces.js +34 -0
- package/dist/hooks/usePipelines.js +83 -6
- package/dist/hooks/useWorkflows.js +122 -0
- package/dist/hooks/useWorkspaces.js +49 -29
- package/dist/index.d.ts +75 -9
- package/dist/index.js +9 -1
- package/dist/lib/requireParam.js +6 -0
- package/dist/loopstack-studio.css +1 -1
- package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
- package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
- package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
- package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
- package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
- package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
- package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
- package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
- package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
- package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
- package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
- package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
- package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
- package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
- package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
- package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
- package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
- package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
- package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
- package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
- package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
- package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
- package/dist/node_modules/ai/dist/index.js +1083 -0
- package/dist/node_modules/bail/index.js +4 -0
- package/dist/node_modules/character-entities-html4/index.js +255 -0
- package/dist/node_modules/character-entities-legacy/index.js +2 -0
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
- package/dist/node_modules/classcat/index.js +8 -0
- package/dist/node_modules/comma-separated-tokens/index.js +5 -1
- package/dist/node_modules/d3/src/index.js +5 -0
- package/dist/node_modules/d3-drag/src/constant.js +2 -0
- package/dist/node_modules/d3-drag/src/drag.js +112 -0
- package/dist/node_modules/d3-drag/src/event.js +60 -0
- package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
- package/dist/node_modules/d3-drag/src/noevent.js +11 -0
- package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
- package/dist/node_modules/d3-selection/src/pointer.js +16 -0
- package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
- package/dist/node_modules/d3-zoom/src/constant.js +2 -0
- package/dist/node_modules/d3-zoom/src/event.js +26 -0
- package/dist/node_modules/d3-zoom/src/index.js +1 -1
- package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
- package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
- package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
- package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
- package/dist/node_modules/entities/dist/esm/decode.js +129 -0
- package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
- package/dist/node_modules/extend/index.js +37 -0
- package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
- package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
- package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
- package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
- package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
- package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
- package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
- package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
- package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
- package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
- package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
- package/dist/node_modules/html-void-elements/index.js +23 -0
- package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
- package/dist/node_modules/micromark/lib/constructs.js +79 -0
- package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
- package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
- package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
- package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
- package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
- package/dist/node_modules/micromark/lib/parse.js +27 -0
- package/dist/node_modules/micromark/lib/postprocess.js +6 -0
- package/dist/node_modules/micromark/lib/preprocess.js +30 -0
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
- package/dist/node_modules/micromark-factory-destination/index.js +24 -0
- package/dist/node_modules/micromark-factory-label/index.js +18 -0
- package/dist/node_modules/micromark-factory-title/index.js +22 -0
- package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
- package/dist/node_modules/micromark-util-character/index.js +6 -5
- package/dist/node_modules/micromark-util-chunked/index.js +4 -1
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
- package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
- package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
- package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
- package/dist/node_modules/motion/dist/es/react.js +3 -0
- package/dist/node_modules/nanoid/index.browser.js +7 -0
- package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
- package/dist/node_modules/property-information/index.js +1 -0
- package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
- package/dist/node_modules/rehype-harden/dist/index.js +168 -0
- package/dist/node_modules/rehype-raw/lib/index.js +10 -0
- package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
- package/dist/node_modules/remark-parse/lib/index.js +14 -0
- package/dist/node_modules/remark-rehype/lib/index.js +16 -0
- package/dist/node_modules/remend/dist/index.js +459 -0
- package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
- package/dist/node_modules/shiki/dist/langs.js +1278 -0
- package/dist/node_modules/shiki/dist/themes.js +393 -0
- package/dist/node_modules/shiki/dist/wasm.js +2 -0
- package/dist/node_modules/space-separated-tokens/index.js +4 -1
- package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
- package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
- package/dist/node_modules/streamdown/dist/index.js +2 -0
- package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
- package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
- package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
- package/dist/node_modules/stringify-entities/lib/core.js +21 -0
- package/dist/node_modules/stringify-entities/lib/index.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
- package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
- package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
- package/dist/node_modules/style-to-js/cjs/index.js +17 -0
- package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
- package/dist/node_modules/style-to-object/cjs/index.js +21 -0
- package/dist/node_modules/trim-lines/index.js +19 -0
- package/dist/node_modules/trough/lib/index.js +48 -0
- package/dist/node_modules/unified/lib/callable-instance.js +7 -0
- package/dist/node_modules/unified/lib/index.js +160 -0
- package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
- package/dist/node_modules/unist-util-position/lib/index.js +20 -0
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
- package/dist/node_modules/vfile/lib/index.js +87 -0
- package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
- package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
- package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
- package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
- package/dist/node_modules/vfile-location/lib/index.js +41 -0
- package/dist/node_modules/vfile-message/lib/index.js +22 -0
- package/dist/node_modules/zod/v3/ZodError.js +79 -0
- package/dist/node_modules/zod/v3/errors.js +6 -0
- package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
- package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
- package/dist/node_modules/zod/v3/helpers/util.js +72 -0
- package/dist/node_modules/zod/v3/locales/en.js +58 -0
- package/dist/node_modules/zod/v3/types.js +2425 -0
- package/dist/node_modules/zod/v4/classic/errors.js +21 -0
- package/dist/node_modules/zod/v4/classic/iso.js +29 -0
- package/dist/node_modules/zod/v4/classic/parse.js +4 -0
- package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
- package/dist/node_modules/zod/v4/core/api.js +532 -0
- package/dist/node_modules/zod/v4/core/checks.js +283 -0
- package/dist/node_modules/zod/v4/core/core.js +44 -0
- package/dist/node_modules/zod/v4/core/doc.js +21 -0
- package/dist/node_modules/zod/v4/core/errors.js +40 -0
- package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
- package/dist/node_modules/zod/v4/core/parse.js +66 -0
- package/dist/node_modules/zod/v4/core/regexes.js +28 -0
- package/dist/node_modules/zod/v4/core/registries.js +38 -0
- package/dist/node_modules/zod/v4/core/schemas.js +863 -0
- package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
- package/dist/node_modules/zod/v4/core/util.js +267 -0
- package/dist/node_modules/zod/v4/core/versions.js +6 -0
- package/dist/node_modules/zwitch/index.js +14 -0
- package/dist/pages/DashboardPage.js +58 -0
- package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
- package/dist/pages/DebugWorkflowsPage.js +130 -0
- package/dist/pages/EmbedWorkbenchPage.js +73 -0
- package/dist/pages/PipelineDebugPage.js +114 -0
- package/dist/pages/WorkbenchPage.js +67 -0
- package/dist/pages/WorkspacePage.js +1 -1
- package/dist/providers/ComponentOverridesProvider.js +12 -0
- package/dist/routing/LocalRouter.js +3 -0
- package/package.json +3 -3
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var nord_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBackground\":\"#3b4252\",\"activityBar.activeBorder\":\"#88c0d0\",\"activityBar.background\":\"#2e3440\",\"activityBar.dropBackground\":\"#3b4252\",\"activityBar.foreground\":\"#d8dee9\",\"activityBarBadge.background\":\"#88c0d0\",\"activityBarBadge.foreground\":\"#2e3440\",\"badge.background\":\"#88c0d0\",\"badge.foreground\":\"#2e3440\",\"button.background\":\"#88c0d0ee\",\"button.foreground\":\"#2e3440\",\"button.hoverBackground\":\"#88c0d0\",\"button.secondaryBackground\":\"#434c5e\",\"button.secondaryForeground\":\"#d8dee9\",\"button.secondaryHoverBackground\":\"#4c566a\",\"charts.blue\":\"#81a1c1\",\"charts.foreground\":\"#d8dee9\",\"charts.green\":\"#a3be8c\",\"charts.lines\":\"#88c0d0\",\"charts.orange\":\"#d08770\",\"charts.purple\":\"#b48ead\",\"charts.red\":\"#bf616a\",\"charts.yellow\":\"#ebcb8b\",\"debugConsole.errorForeground\":\"#bf616a\",\"debugConsole.infoForeground\":\"#88c0d0\",\"debugConsole.sourceForeground\":\"#616e88\",\"debugConsole.warningForeground\":\"#ebcb8b\",\"debugConsoleInputIcon.foreground\":\"#81a1c1\",\"debugExceptionWidget.background\":\"#4c566a\",\"debugExceptionWidget.border\":\"#2e3440\",\"debugToolBar.background\":\"#3b4252\",\"descriptionForeground\":\"#d8dee9e6\",\"diffEditor.insertedTextBackground\":\"#81a1c133\",\"diffEditor.removedTextBackground\":\"#bf616a4d\",\"dropdown.background\":\"#3b4252\",\"dropdown.border\":\"#3b4252\",\"dropdown.foreground\":\"#d8dee9\",\"editor.background\":\"#2e3440\",\"editor.findMatchBackground\":\"#88c0d066\",\"editor.findMatchHighlightBackground\":\"#88c0d033\",\"editor.findRangeHighlightBackground\":\"#88c0d033\",\"editor.focusedStackFrameHighlightBackground\":\"#5e81ac\",\"editor.foreground\":\"#d8dee9\",\"editor.hoverHighlightBackground\":\"#3b4252\",\"editor.inactiveSelectionBackground\":\"#434c5ecc\",\"editor.inlineValuesBackground\":\"#4c566a\",\"editor.inlineValuesForeground\":\"#eceff4\",\"editor.lineHighlightBackground\":\"#3b4252\",\"editor.lineHighlightBorder\":\"#3b4252\",\"editor.rangeHighlightBackground\":\"#434c5e52\",\"editor.selectionBackground\":\"#434c5ecc\",\"editor.selectionHighlightBackground\":\"#434c5ecc\",\"editor.stackFrameHighlightBackground\":\"#5e81ac\",\"editor.wordHighlightBackground\":\"#81a1c166\",\"editor.wordHighlightStrongBackground\":\"#81a1c199\",\"editorActiveLineNumber.foreground\":\"#d8dee9cc\",\"editorBracketHighlight.foreground1\":\"#8fbcbb\",\"editorBracketHighlight.foreground2\":\"#88c0d0\",\"editorBracketHighlight.foreground3\":\"#81a1c1\",\"editorBracketHighlight.foreground4\":\"#5e81ac\",\"editorBracketHighlight.foreground5\":\"#8fbcbb\",\"editorBracketHighlight.foreground6\":\"#88c0d0\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#bf616a\",\"editorBracketMatch.background\":\"#2e344000\",\"editorBracketMatch.border\":\"#88c0d0\",\"editorCodeLens.foreground\":\"#4c566a\",\"editorCursor.foreground\":\"#d8dee9\",\"editorError.border\":\"#bf616a00\",\"editorError.foreground\":\"#bf616a\",\"editorGroup.background\":\"#2e3440\",\"editorGroup.border\":\"#3b425201\",\"editorGroup.dropBackground\":\"#3b425299\",\"editorGroupHeader.border\":\"#3b425200\",\"editorGroupHeader.noTabsBackground\":\"#2e3440\",\"editorGroupHeader.tabsBackground\":\"#2e3440\",\"editorGroupHeader.tabsBorder\":\"#3b425200\",\"editorGutter.addedBackground\":\"#a3be8c\",\"editorGutter.background\":\"#2e3440\",\"editorGutter.deletedBackground\":\"#bf616a\",\"editorGutter.modifiedBackground\":\"#ebcb8b\",\"editorHint.border\":\"#ebcb8b00\",\"editorHint.foreground\":\"#ebcb8b\",\"editorHoverWidget.background\":\"#3b4252\",\"editorHoverWidget.border\":\"#3b4252\",\"editorIndentGuide.activeBackground\":\"#4c566a\",\"editorIndentGuide.background\":\"#434c5eb3\",\"editorInlayHint.background\":\"#434c5e\",\"editorInlayHint.foreground\":\"#d8dee9\",\"editorLineNumber.activeForeground\":\"#d8dee9\",\"editorLineNumber.foreground\":\"#4c566a\",\"editorLink.activeForeground\":\"#88c0d0\",\"editorMarkerNavigation.background\":\"#5e81acc0\",\"editorMarkerNavigationError.background\":\"#bf616ac0\",\"editorMarkerNavigationWarning.background\":\"#ebcb8bc0\",\"editorOverviewRuler.addedForeground\":\"#a3be8c\",\"editorOverviewRuler.border\":\"#3b4252\",\"editorOverviewRuler.currentContentForeground\":\"#3b4252\",\"editorOverviewRuler.deletedForeground\":\"#bf616a\",\"editorOverviewRuler.errorForeground\":\"#bf616a\",\"editorOverviewRuler.findMatchForeground\":\"#88c0d066\",\"editorOverviewRuler.incomingContentForeground\":\"#3b4252\",\"editorOverviewRuler.infoForeground\":\"#81a1c1\",\"editorOverviewRuler.modifiedForeground\":\"#ebcb8b\",\"editorOverviewRuler.rangeHighlightForeground\":\"#88c0d066\",\"editorOverviewRuler.selectionHighlightForeground\":\"#88c0d066\",\"editorOverviewRuler.warningForeground\":\"#ebcb8b\",\"editorOverviewRuler.wordHighlightForeground\":\"#88c0d066\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#88c0d066\",\"editorRuler.foreground\":\"#434c5e\",\"editorSuggestWidget.background\":\"#2e3440\",\"editorSuggestWidget.border\":\"#3b4252\",\"editorSuggestWidget.focusHighlightForeground\":\"#88c0d0\",\"editorSuggestWidget.foreground\":\"#d8dee9\",\"editorSuggestWidget.highlightForeground\":\"#88c0d0\",\"editorSuggestWidget.selectedBackground\":\"#434c5e\",\"editorSuggestWidget.selectedForeground\":\"#d8dee9\",\"editorWarning.border\":\"#ebcb8b00\",\"editorWarning.foreground\":\"#ebcb8b\",\"editorWhitespace.foreground\":\"#4c566ab3\",\"editorWidget.background\":\"#2e3440\",\"editorWidget.border\":\"#3b4252\",\"errorForeground\":\"#bf616a\",\"extensionButton.prominentBackground\":\"#434c5e\",\"extensionButton.prominentForeground\":\"#d8dee9\",\"extensionButton.prominentHoverBackground\":\"#4c566a\",\"focusBorder\":\"#3b4252\",\"foreground\":\"#d8dee9\",\"gitDecoration.conflictingResourceForeground\":\"#5e81ac\",\"gitDecoration.deletedResourceForeground\":\"#bf616a\",\"gitDecoration.ignoredResourceForeground\":\"#d8dee966\",\"gitDecoration.modifiedResourceForeground\":\"#ebcb8b\",\"gitDecoration.stageDeletedResourceForeground\":\"#bf616a\",\"gitDecoration.stageModifiedResourceForeground\":\"#ebcb8b\",\"gitDecoration.submoduleResourceForeground\":\"#8fbcbb\",\"gitDecoration.untrackedResourceForeground\":\"#a3be8c\",\"input.background\":\"#3b4252\",\"input.border\":\"#3b4252\",\"input.foreground\":\"#d8dee9\",\"input.placeholderForeground\":\"#d8dee999\",\"inputOption.activeBackground\":\"#5e81ac\",\"inputOption.activeBorder\":\"#5e81ac\",\"inputOption.activeForeground\":\"#eceff4\",\"inputValidation.errorBackground\":\"#bf616a\",\"inputValidation.errorBorder\":\"#bf616a\",\"inputValidation.infoBackground\":\"#81a1c1\",\"inputValidation.infoBorder\":\"#81a1c1\",\"inputValidation.warningBackground\":\"#d08770\",\"inputValidation.warningBorder\":\"#d08770\",\"keybindingLabel.background\":\"#4c566a\",\"keybindingLabel.border\":\"#4c566a\",\"keybindingLabel.bottomBorder\":\"#4c566a\",\"keybindingLabel.foreground\":\"#d8dee9\",\"list.activeSelectionBackground\":\"#88c0d0\",\"list.activeSelectionForeground\":\"#2e3440\",\"list.dropBackground\":\"#88c0d099\",\"list.errorForeground\":\"#bf616a\",\"list.focusBackground\":\"#88c0d099\",\"list.focusForeground\":\"#d8dee9\",\"list.focusHighlightForeground\":\"#eceff4\",\"list.highlightForeground\":\"#88c0d0\",\"list.hoverBackground\":\"#3b4252\",\"list.hoverForeground\":\"#eceff4\",\"list.inactiveFocusBackground\":\"#434c5ecc\",\"list.inactiveSelectionBackground\":\"#434c5e\",\"list.inactiveSelectionForeground\":\"#d8dee9\",\"list.warningForeground\":\"#ebcb8b\",\"merge.border\":\"#3b425200\",\"merge.currentContentBackground\":\"#81a1c14d\",\"merge.currentHeaderBackground\":\"#81a1c166\",\"merge.incomingContentBackground\":\"#8fbcbb4d\",\"merge.incomingHeaderBackground\":\"#8fbcbb66\",\"minimap.background\":\"#2e3440\",\"minimap.errorHighlight\":\"#bf616acc\",\"minimap.findMatchHighlight\":\"#88c0d0\",\"minimap.selectionHighlight\":\"#88c0d0cc\",\"minimap.warningHighlight\":\"#ebcb8bcc\",\"minimapGutter.addedBackground\":\"#a3be8c\",\"minimapGutter.deletedBackground\":\"#bf616a\",\"minimapGutter.modifiedBackground\":\"#ebcb8b\",\"minimapSlider.activeBackground\":\"#434c5eaa\",\"minimapSlider.background\":\"#434c5e99\",\"minimapSlider.hoverBackground\":\"#434c5eaa\",\"notification.background\":\"#3b4252\",\"notification.buttonBackground\":\"#434c5e\",\"notification.buttonForeground\":\"#d8dee9\",\"notification.buttonHoverBackground\":\"#4c566a\",\"notification.errorBackground\":\"#bf616a\",\"notification.errorForeground\":\"#2e3440\",\"notification.foreground\":\"#d8dee9\",\"notification.infoBackground\":\"#88c0d0\",\"notification.infoForeground\":\"#2e3440\",\"notification.warningBackground\":\"#ebcb8b\",\"notification.warningForeground\":\"#2e3440\",\"notificationCenter.border\":\"#3b425200\",\"notificationCenterHeader.background\":\"#2e3440\",\"notificationCenterHeader.foreground\":\"#88c0d0\",\"notificationLink.foreground\":\"#88c0d0\",\"notificationToast.border\":\"#3b425200\",\"notifications.background\":\"#3b4252\",\"notifications.border\":\"#2e3440\",\"notifications.foreground\":\"#d8dee9\",\"panel.background\":\"#2e3440\",\"panel.border\":\"#3b4252\",\"panelTitle.activeBorder\":\"#88c0d000\",\"panelTitle.activeForeground\":\"#88c0d0\",\"panelTitle.inactiveForeground\":\"#d8dee9\",\"peekView.border\":\"#4c566a\",\"peekViewEditor.background\":\"#2e3440\",\"peekViewEditor.matchHighlightBackground\":\"#88c0d04d\",\"peekViewEditorGutter.background\":\"#2e3440\",\"peekViewResult.background\":\"#2e3440\",\"peekViewResult.fileForeground\":\"#88c0d0\",\"peekViewResult.lineForeground\":\"#d8dee966\",\"peekViewResult.matchHighlightBackground\":\"#88c0d0cc\",\"peekViewResult.selectionBackground\":\"#434c5e\",\"peekViewResult.selectionForeground\":\"#d8dee9\",\"peekViewTitle.background\":\"#3b4252\",\"peekViewTitleDescription.foreground\":\"#d8dee9\",\"peekViewTitleLabel.foreground\":\"#88c0d0\",\"pickerGroup.border\":\"#3b4252\",\"pickerGroup.foreground\":\"#88c0d0\",\"progressBar.background\":\"#88c0d0\",\"quickInputList.focusBackground\":\"#88c0d0\",\"quickInputList.focusForeground\":\"#2e3440\",\"sash.hoverBorder\":\"#88c0d0\",\"scrollbar.shadow\":\"#00000066\",\"scrollbarSlider.activeBackground\":\"#434c5eaa\",\"scrollbarSlider.background\":\"#434c5e99\",\"scrollbarSlider.hoverBackground\":\"#434c5eaa\",\"selection.background\":\"#88c0d099\",\"sideBar.background\":\"#2e3440\",\"sideBar.border\":\"#3b4252\",\"sideBar.foreground\":\"#d8dee9\",\"sideBarSectionHeader.background\":\"#3b4252\",\"sideBarSectionHeader.foreground\":\"#d8dee9\",\"sideBarTitle.foreground\":\"#d8dee9\",\"statusBar.background\":\"#3b4252\",\"statusBar.border\":\"#3b425200\",\"statusBar.debuggingBackground\":\"#5e81ac\",\"statusBar.debuggingForeground\":\"#d8dee9\",\"statusBar.foreground\":\"#d8dee9\",\"statusBar.noFolderBackground\":\"#3b4252\",\"statusBar.noFolderForeground\":\"#d8dee9\",\"statusBarItem.activeBackground\":\"#4c566a\",\"statusBarItem.errorBackground\":\"#3b4252\",\"statusBarItem.errorForeground\":\"#bf616a\",\"statusBarItem.hoverBackground\":\"#434c5e\",\"statusBarItem.prominentBackground\":\"#3b4252\",\"statusBarItem.prominentHoverBackground\":\"#434c5e\",\"statusBarItem.warningBackground\":\"#ebcb8b\",\"statusBarItem.warningForeground\":\"#2e3440\",\"tab.activeBackground\":\"#3b4252\",\"tab.activeBorder\":\"#88c0d000\",\"tab.activeBorderTop\":\"#88c0d000\",\"tab.activeForeground\":\"#d8dee9\",\"tab.border\":\"#3b425200\",\"tab.hoverBackground\":\"#3b4252cc\",\"tab.hoverBorder\":\"#88c0d000\",\"tab.inactiveBackground\":\"#2e3440\",\"tab.inactiveForeground\":\"#d8dee966\",\"tab.lastPinnedBorder\":\"#4c566a\",\"tab.unfocusedActiveBorder\":\"#88c0d000\",\"tab.unfocusedActiveBorderTop\":\"#88c0d000\",\"tab.unfocusedActiveForeground\":\"#d8dee999\",\"tab.unfocusedHoverBackground\":\"#3b4252b3\",\"tab.unfocusedHoverBorder\":\"#88c0d000\",\"tab.unfocusedInactiveForeground\":\"#d8dee966\",\"terminal.ansiBlack\":\"#3b4252\",\"terminal.ansiBlue\":\"#81a1c1\",\"terminal.ansiBrightBlack\":\"#4c566a\",\"terminal.ansiBrightBlue\":\"#81a1c1\",\"terminal.ansiBrightCyan\":\"#8fbcbb\",\"terminal.ansiBrightGreen\":\"#a3be8c\",\"terminal.ansiBrightMagenta\":\"#b48ead\",\"terminal.ansiBrightRed\":\"#bf616a\",\"terminal.ansiBrightWhite\":\"#eceff4\",\"terminal.ansiBrightYellow\":\"#ebcb8b\",\"terminal.ansiCyan\":\"#88c0d0\",\"terminal.ansiGreen\":\"#a3be8c\",\"terminal.ansiMagenta\":\"#b48ead\",\"terminal.ansiRed\":\"#bf616a\",\"terminal.ansiWhite\":\"#e5e9f0\",\"terminal.ansiYellow\":\"#ebcb8b\",\"terminal.background\":\"#2e3440\",\"terminal.foreground\":\"#d8dee9\",\"terminal.tab.activeBorder\":\"#88c0d0\",\"textBlockQuote.background\":\"#3b4252\",\"textBlockQuote.border\":\"#81a1c1\",\"textCodeBlock.background\":\"#4c566a\",\"textLink.activeForeground\":\"#88c0d0\",\"textLink.foreground\":\"#88c0d0\",\"textPreformat.foreground\":\"#8fbcbb\",\"textSeparator.foreground\":\"#eceff4\",\"titleBar.activeBackground\":\"#2e3440\",\"titleBar.activeForeground\":\"#d8dee9\",\"titleBar.border\":\"#2e344000\",\"titleBar.inactiveBackground\":\"#2e3440\",\"titleBar.inactiveForeground\":\"#d8dee966\",\"tree.indentGuidesStroke\":\"#616e88\",\"walkThrough.embeddedEditorBackground\":\"#2e3440\",\"welcomePage.buttonBackground\":\"#434c5e\",\"welcomePage.buttonHoverBackground\":\"#4c566a\",\"widget.shadow\":\"#00000066\"},\"displayName\":\"Nord\",\"name\":\"nord\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"background\":\"#2e3440ff\",\"foreground\":\"#d8dee9ff\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"comment\",\"settings\":{\"foreground\":\"#616E88\"}},{\"scope\":\"constant.character\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"constant.language\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#B48EAD\"}},{\"scope\":\"constant.regexp\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":[\"entity.name.class\",\"entity.name.type.class\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"entity.other.inherited-class\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8FBCBB\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"background\":\"#EBCB8B\",\"foreground\":\"#D8DEE9\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"background\":\"#BF616A\",\"foreground\":\"#D8DEE9\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"keyword.other.new\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#BF616A\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#A3BE8C\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":\"punctuation\",\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":[\"punctuation.definition.method-parameters\",\"punctuation.definition.function-parameters\",\"punctuation.definition.parameters\"],\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":\"punctuation.definition.tag\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"punctuation.definition.comment\",\"punctuation.end.definition.comment\",\"punctuation.start.definition.comment\"],\"settings\":{\"foreground\":\"#616E88\"}},{\"scope\":\"punctuation.section\",\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":[\"punctuation.section.embedded.begin\",\"punctuation.section.embedded.end\"],\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"punctuation.terminator\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"punctuation.definition.variable\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#A3BE8C\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"support.class\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"support.function.construct\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"support.type\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"support.type.exception\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"token.debug-token\",\"settings\":{\"foreground\":\"#b48ead\"}},{\"scope\":\"token.error-token\",\"settings\":{\"foreground\":\"#bf616a\"}},{\"scope\":\"token.info-token\",\"settings\":{\"foreground\":\"#88c0d0\"}},{\"scope\":\"token.warn-token\",\"settings\":{\"foreground\":\"#ebcb8b\"}},{\"scope\":\"variable.other\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"variable.language\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"variable.parameter\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"punctuation.separator.pointer-access.c\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"source.c meta.preprocessor.include\",\"source.c string.quoted.other.lt-gt.include\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.cpp keyword.control.directive.conditional\",\"source.cpp punctuation.definition.directive\",\"source.c keyword.control.directive.conditional\",\"source.c punctuation.definition.directive\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#5E81AC\"}},{\"scope\":\"source.css constant.other.color.rgb-value\",\"settings\":{\"foreground\":\"#B48EAD\"}},{\"scope\":\"source.css meta.property-value\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.css keyword.control.at-rule.media\",\"source.css keyword.control.at-rule.media punctuation.definition.keyword\"],\"settings\":{\"foreground\":\"#D08770\"}},{\"scope\":\"source.css punctuation.definition.keyword\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.css support.type.property-name\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"source.diff meta.diff.range.context\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.diff meta.diff.header.from-file\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.diff punctuation.definition.from-file\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.diff punctuation.definition.range\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.diff punctuation.definition.separator\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"entity.name.type.module.elixir\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"variable.other.readwrite.module.elixir\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#D8DEE9\"}},{\"scope\":\"constant.other.symbol.elixir\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#D8DEE9\"}},{\"scope\":\"variable.other.constant.elixir\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.go constant.other.placeholder.go\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"source.java comment.block.documentation.javadoc punctuation.definition.entity.html\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.java constant.other\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"source.java keyword.other.documentation\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java keyword.other.documentation.author.javadoc\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.java keyword.other.documentation.directive\",\"source.java keyword.other.documentation.custom\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java keyword.other.documentation.see.javadoc\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java meta.method-call meta.method\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.java meta.tag.template.link.javadoc\",\"source.java string.other.link.title.javadoc\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java meta.tag.template.value.javadoc\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"source.java punctuation.definition.keyword.javadoc\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.java punctuation.definition.tag.begin.javadoc\",\"source.java punctuation.definition.tag.end.javadoc\"],\"settings\":{\"foreground\":\"#616E88\"}},{\"scope\":\"source.java storage.modifier.import\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java storage.modifier.package\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java storage.type\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java storage.type.annotation\",\"settings\":{\"foreground\":\"#D08770\"}},{\"scope\":\"source.java storage.type.generic\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.java storage.type.primitive\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"source.js punctuation.decorator\",\"source.js meta.decorator variable.other.readwrite\",\"source.js meta.decorator entity.name.function\"],\"settings\":{\"foreground\":\"#D08770\"}},{\"scope\":\"source.js meta.object-literal.key\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"source.js storage.type.class.jsdoc\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.js string.quoted.template punctuation.quasi.element.begin\",\"source.js string.quoted.template punctuation.quasi.element.end\",\"source.js string.template punctuation.definition.template-expression\"],\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.js string.quoted.template meta.method-call.with-arguments\",\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":[\"source.js string.template meta.template.expression support.variable.property\",\"source.js string.template meta.template.expression variable.other.object\"],\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"source.js support.type.primitive\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.js variable.other.object\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":\"source.js variable.other.readwrite.alias\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.js meta.embedded.line meta.brace.square\",\"source.js meta.embedded.line meta.brace.round\",\"source.js string.quoted.template meta.brace.square\",\"source.js string.quoted.template meta.brace.round\"],\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":\"text.html.basic constant.character.entity.html\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":\"text.html.basic constant.other.inline-data\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#D08770\"}},{\"scope\":\"text.html.basic meta.tag.sgml.doctype\",\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":\"text.html.basic punctuation.definition.entity\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.properties entity.name.section.group-title.ini\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"source.properties punctuation.separator.key-value.ini\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"text.html.markdown markup.fenced_code.block\",\"text.html.markdown markup.fenced_code.block punctuation.definition\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"text.html.markdown markup.inline.raw\",\"text.html.markdown markup.inline.raw punctuation.definition.raw\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"text.html.markdown markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"text.html.markdown markup.underline.link\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.list\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"text.html.markdown beginning.punctuation.definition.quote\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"text.html.markdown markup.quote\",\"settings\":{\"foreground\":\"#616E88\"}},{\"scope\":\"text.html.markdown constant.character.math.tex\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"text.html.markdown punctuation.definition.math.begin\",\"text.html.markdown punctuation.definition.math.end\"],\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":\"text.html.markdown punctuation.definition.function.math.tex\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"text.html.markdown punctuation.math.operator.latex\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"text.html.markdown punctuation.definition.heading\",\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"text.html.markdown punctuation.definition.constant\",\"text.html.markdown punctuation.definition.string\"],\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":[\"text.html.markdown constant.other.reference.link\",\"text.html.markdown string.other.link.description\",\"text.html.markdown string.other.link.title\"],\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"source.perl punctuation.definition.variable\",\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":[\"source.php meta.function-call\",\"source.php meta.function-call.object\"],\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.python entity.name.function.decorator\",\"source.python meta.function.decorator support.type\"],\"settings\":{\"foreground\":\"#D08770\"}},{\"scope\":\"source.python meta.function-call.generic\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":\"source.python support.type\",\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.python variable.parameter.function.language\"],\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":[\"source.python meta.function.parameters variable.parameter.function.language.special.self\"],\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.rust entity.name.type\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"source.rust meta.macro entity.name.function\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.rust meta.attribute\",\"source.rust meta.attribute punctuation\",\"source.rust meta.attribute keyword.operator\"],\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":\"source.rust entity.name.type.trait\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"source.rust punctuation.definition.interpolation\",\"settings\":{\"foreground\":\"#EBCB8B\"}},{\"scope\":[\"source.css.scss punctuation.definition.interpolation.begin.bracket.curly\",\"source.css.scss punctuation.definition.interpolation.end.bracket.curly\"],\"settings\":{\"foreground\":\"#81A1C1\"}},{\"scope\":\"source.css.scss variable.interpolation\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#D8DEE9\"}},{\"scope\":[\"source.ts punctuation.decorator\",\"source.ts meta.decorator variable.other.readwrite\",\"source.ts meta.decorator entity.name.function\",\"source.tsx punctuation.decorator\",\"source.tsx meta.decorator variable.other.readwrite\",\"source.tsx meta.decorator entity.name.function\"],\"settings\":{\"foreground\":\"#D08770\"}},{\"scope\":[\"source.ts meta.object-literal.key\",\"source.tsx meta.object-literal.key\"],\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":[\"source.ts meta.object-literal.key entity.name.function\",\"source.tsx meta.object-literal.key entity.name.function\"],\"settings\":{\"foreground\":\"#88C0D0\"}},{\"scope\":[\"source.ts support.class\",\"source.ts support.type\",\"source.ts entity.name.type\",\"source.ts entity.name.class\",\"source.tsx support.class\",\"source.tsx support.type\",\"source.tsx entity.name.type\",\"source.tsx entity.name.class\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.ts support.constant.math\",\"source.ts support.constant.dom\",\"source.ts support.constant.json\",\"source.tsx support.constant.math\",\"source.tsx support.constant.dom\",\"source.tsx support.constant.json\"],\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":[\"source.ts support.variable\",\"source.tsx support.variable\"],\"settings\":{\"foreground\":\"#D8DEE9\"}},{\"scope\":[\"source.ts meta.embedded.line meta.brace.square\",\"source.ts meta.embedded.line meta.brace.round\",\"source.tsx meta.embedded.line meta.brace.square\",\"source.tsx meta.embedded.line meta.brace.round\"],\"settings\":{\"foreground\":\"#ECEFF4\"}},{\"scope\":\"text.xml entity.name.tag.namespace\",\"settings\":{\"foreground\":\"#8FBCBB\"}},{\"scope\":\"text.xml keyword.other.doctype\",\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":\"text.xml meta.tag.preprocessor entity.name.tag\",\"settings\":{\"foreground\":\"#5E81AC\"}},{\"scope\":[\"text.xml string.unquoted.cdata\",\"text.xml string.unquoted.cdata punctuation.definition.string\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#D08770\"}},{\"scope\":\"source.yaml entity.name.tag\",\"settings\":{\"foreground\":\"#8FBCBB\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { nord_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var one_dark_pro_default = Object.freeze(JSON.parse("{\"colors\":{\"actionBar.toggledBackground\":\"#525761\",\"activityBar.background\":\"#282c34\",\"activityBar.foreground\":\"#d7dae0\",\"activityBarBadge.background\":\"#4d78cc\",\"activityBarBadge.foreground\":\"#f8fafd\",\"badge.background\":\"#282c34\",\"button.background\":\"#404754\",\"button.secondaryBackground\":\"#30333d\",\"button.secondaryForeground\":\"#c0bdbd\",\"checkbox.border\":\"#404754\",\"debugToolBar.background\":\"#21252b\",\"descriptionForeground\":\"#abb2bf\",\"diffEditor.insertedTextBackground\":\"#00809b33\",\"dropdown.background\":\"#21252b\",\"dropdown.border\":\"#21252b\",\"editor.background\":\"#282c34\",\"editor.findMatchBackground\":\"#d19a6644\",\"editor.findMatchBorder\":\"#ffffff5a\",\"editor.findMatchHighlightBackground\":\"#ffffff22\",\"editor.foreground\":\"#abb2bf\",\"editor.lineHighlightBackground\":\"#2c313c\",\"editor.selectionBackground\":\"#67769660\",\"editor.selectionHighlightBackground\":\"#ffd33d44\",\"editor.selectionHighlightBorder\":\"#dddddd\",\"editor.wordHighlightBackground\":\"#d2e0ff2f\",\"editor.wordHighlightBorder\":\"#7f848e\",\"editor.wordHighlightStrongBackground\":\"#abb2bf26\",\"editor.wordHighlightStrongBorder\":\"#7f848e\",\"editorBracketHighlight.foreground1\":\"#d19a66\",\"editorBracketHighlight.foreground2\":\"#c678dd\",\"editorBracketHighlight.foreground3\":\"#56b6c2\",\"editorBracketMatch.background\":\"#515a6b\",\"editorBracketMatch.border\":\"#515a6b\",\"editorCursor.background\":\"#ffffffc9\",\"editorCursor.foreground\":\"#528bff\",\"editorError.foreground\":\"#c24038\",\"editorGroup.background\":\"#181a1f\",\"editorGroup.border\":\"#181a1f\",\"editorGroupHeader.tabsBackground\":\"#21252b\",\"editorGutter.addedBackground\":\"#109868\",\"editorGutter.deletedBackground\":\"#9A353D\",\"editorGutter.modifiedBackground\":\"#948B60\",\"editorHoverWidget.background\":\"#21252b\",\"editorHoverWidget.border\":\"#181a1f\",\"editorHoverWidget.highlightForeground\":\"#61afef\",\"editorIndentGuide.activeBackground1\":\"#c8c8c859\",\"editorIndentGuide.background1\":\"#3b4048\",\"editorInlayHint.background\":\"#2c313c\",\"editorInlayHint.foreground\":\"#abb2bf\",\"editorLineNumber.activeForeground\":\"#abb2bf\",\"editorLineNumber.foreground\":\"#495162\",\"editorMarkerNavigation.background\":\"#21252b\",\"editorOverviewRuler.addedBackground\":\"#109868\",\"editorOverviewRuler.deletedBackground\":\"#9A353D\",\"editorOverviewRuler.modifiedBackground\":\"#948B60\",\"editorRuler.foreground\":\"#abb2bf26\",\"editorSuggestWidget.background\":\"#21252b\",\"editorSuggestWidget.border\":\"#181a1f\",\"editorSuggestWidget.selectedBackground\":\"#2c313a\",\"editorWarning.foreground\":\"#d19a66\",\"editorWhitespace.foreground\":\"#ffffff1d\",\"editorWidget.background\":\"#21252b\",\"focusBorder\":\"#3e4452\",\"gitDecoration.ignoredResourceForeground\":\"#636b78\",\"input.background\":\"#1d1f23\",\"input.foreground\":\"#abb2bf\",\"list.activeSelectionBackground\":\"#2c313a\",\"list.activeSelectionForeground\":\"#d7dae0\",\"list.focusBackground\":\"#323842\",\"list.focusForeground\":\"#f0f0f0\",\"list.highlightForeground\":\"#ecebeb\",\"list.hoverBackground\":\"#2c313a\",\"list.hoverForeground\":\"#abb2bf\",\"list.inactiveSelectionBackground\":\"#323842\",\"list.inactiveSelectionForeground\":\"#d7dae0\",\"list.warningForeground\":\"#d19a66\",\"menu.foreground\":\"#abb2bf\",\"menu.separatorBackground\":\"#343a45\",\"minimapGutter.addedBackground\":\"#109868\",\"minimapGutter.deletedBackground\":\"#9A353D\",\"minimapGutter.modifiedBackground\":\"#948B60\",\"multiDiffEditor.headerBackground\":\"#21252b\",\"panel.border\":\"#3e4452\",\"panelSectionHeader.background\":\"#21252b\",\"peekViewEditor.background\":\"#1b1d23\",\"peekViewEditor.matchHighlightBackground\":\"#29244b\",\"peekViewResult.background\":\"#22262b\",\"scrollbar.shadow\":\"#23252c\",\"scrollbarSlider.activeBackground\":\"#747d9180\",\"scrollbarSlider.background\":\"#4e566660\",\"scrollbarSlider.hoverBackground\":\"#5a637580\",\"settings.focusedRowBackground\":\"#282c34\",\"settings.headerForeground\":\"#fff\",\"sideBar.background\":\"#21252b\",\"sideBar.foreground\":\"#abb2bf\",\"sideBarSectionHeader.background\":\"#282c34\",\"sideBarSectionHeader.foreground\":\"#abb2bf\",\"statusBar.background\":\"#21252b\",\"statusBar.debuggingBackground\":\"#cc6633\",\"statusBar.debuggingBorder\":\"#ff000000\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.foreground\":\"#9da5b4\",\"statusBar.noFolderBackground\":\"#21252b\",\"statusBarItem.remoteBackground\":\"#4d78cc\",\"statusBarItem.remoteForeground\":\"#f8fafd\",\"tab.activeBackground\":\"#282c34\",\"tab.activeBorder\":\"#b4b4b4\",\"tab.activeForeground\":\"#dcdcdc\",\"tab.border\":\"#181a1f\",\"tab.hoverBackground\":\"#323842\",\"tab.inactiveBackground\":\"#21252b\",\"tab.unfocusedHoverBackground\":\"#323842\",\"terminal.ansiBlack\":\"#3f4451\",\"terminal.ansiBlue\":\"#4aa5f0\",\"terminal.ansiBrightBlack\":\"#4f5666\",\"terminal.ansiBrightBlue\":\"#4dc4ff\",\"terminal.ansiBrightCyan\":\"#4cd1e0\",\"terminal.ansiBrightGreen\":\"#a5e075\",\"terminal.ansiBrightMagenta\":\"#de73ff\",\"terminal.ansiBrightRed\":\"#ff616e\",\"terminal.ansiBrightWhite\":\"#e6e6e6\",\"terminal.ansiBrightYellow\":\"#f0a45d\",\"terminal.ansiCyan\":\"#42b3c2\",\"terminal.ansiGreen\":\"#8cc265\",\"terminal.ansiMagenta\":\"#c162de\",\"terminal.ansiRed\":\"#e05561\",\"terminal.ansiWhite\":\"#d7dae0\",\"terminal.ansiYellow\":\"#d18f52\",\"terminal.background\":\"#282c34\",\"terminal.border\":\"#3e4452\",\"terminal.foreground\":\"#abb2bf\",\"terminal.selectionBackground\":\"#abb2bf30\",\"textBlockQuote.background\":\"#2e3440\",\"textBlockQuote.border\":\"#4b5362\",\"textLink.foreground\":\"#61afef\",\"textPreformat.foreground\":\"#d19a66\",\"titleBar.activeBackground\":\"#282c34\",\"titleBar.activeForeground\":\"#9da5b4\",\"titleBar.inactiveBackground\":\"#282c34\",\"titleBar.inactiveForeground\":\"#6b717d\",\"tree.indentGuidesStroke\":\"#ffffff1d\",\"walkThrough.embeddedEditorBackground\":\"#2e3440\",\"welcomePage.buttonHoverBackground\":\"#404754\"},\"displayName\":\"One Dark Pro\",\"name\":\"one-dark-pro\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"annotation:dart\":{\"foreground\":\"#d19a66\"},\"enumMember\":{\"foreground\":\"#56b6c2\"},\"macro\":{\"foreground\":\"#d19a66\"},\"memberOperatorOverload\":{\"foreground\":\"#c678dd\"},\"parameter.label:dart\":{\"foreground\":\"#abb2bf\"},\"property:dart\":{\"foreground\":\"#d19a66\"},\"tomlArrayKey\":{\"foreground\":\"#e5c07b\"},\"variable.constant\":{\"foreground\":\"#d19a66\"},\"variable.defaultLibrary\":{\"foreground\":\"#e5c07b\"},\"variable:dart\":{\"foreground\":\"#d19a66\"}},\"tokenColors\":[{\"scope\":\"meta.embedded\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"variable.other.generic-type.haskell\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"storage.type.haskell\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"support.variable.magic.python\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"variable.parameter.function.language.special.self.python\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable.parameter.function.language.special.cls.python\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"storage.modifier.lifetime.rust\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"support.function.std.rust\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"entity.name.lifetime.rust\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable.language.rust\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.constant.edge\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"constant.other.character-class.regexp\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"keyword.operator.word\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.quantifier.regexp\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"variable.parameter.function\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"comment markup.link\",\"settings\":{\"foreground\":\"#5c6370\"}},{\"scope\":\"markup.changed.diff\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"markup.inserted.diff\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"markup.deleted.diff\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"meta.function.c,meta.function.cpp\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"punctuation.separator.key-value\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"keyword.operator.expression.import\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"support.constant.math\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"support.constant.property.math\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"variable.other.constant\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"storage.type.annotation.java\",\"storage.type.object.array.java\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"source.java\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"meta.method.java\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"storage.modifier.import.java,storage.type.java,storage.type.generic.java\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"keyword.operator.instanceof.java\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"meta.definition.variable.name.java\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.bitwise\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.channel\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.constant.property-value.scss,support.constant.property-value.css\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"keyword.operator.css,keyword.operator.scss,keyword.operator.less\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"punctuation.separator.list.comma.css\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"support.constant.color.w3c-standard-color-name.css\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"support.type.vendored.property-name.css\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.module.node,support.type.object.module,support.module.node\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"entity.name.type.module\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.constant.json\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":[\"keyword.operator.expression.instanceof\",\"keyword.operator.new\",\"keyword.operator.ternary\",\"keyword.operator.optional\",\"keyword.operator.expression.keyof\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"support.type.object.console\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.variable.property.process\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"entity.name.function,support.function.console\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"keyword.operator.misc.rust\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"keyword.operator.sigil.rust\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.delete\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"support.type.object.dom\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.variable.dom,support.variable.property.dom\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"punctuation.separator.delimiter\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"punctuation.separator.c,punctuation.separator.cpp\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"support.type.posix-reserved.c,support.type.posix-reserved.cpp\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"variable.parameter.function.language.python\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"support.type.python\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.logical.python\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"variable.parameter.function.python\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"meta.function-call.generic.python\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"constant.character.format.placeholder.other.python\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"keyword.operator.assignment.compound\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"entity.name.namespace\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"variable.c\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"variable.language\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"token.variable.parameter.java\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"import.storage.java\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"token.package.keyword\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"token.package\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"entity.name.function\",\"meta.require\",\"support.function.any-method\",\"variable.function\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"entity.name.type.namespace\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"support.class, entity.name.type.class\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"entity.name.class.identifier.namespace.type\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"entity.name.class\",\"variable.other.class.js\",\"variable.other.class.ts\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable.other.class.php\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"entity.name.type\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"control.elements, keyword.operator.less\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"keyword.other.special-method\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"token.storage\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"token.storage.type.java\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.constant.property-value\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"support.constant.font-name\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"meta.tag\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"constant.other.symbol\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"constant.numeric\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"constant\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"punctuation.definition.constant\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"entity.other.attribute-name.class.css\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"markup.heading\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"markup.heading punctuation.definition.heading, entity.name.section\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"markup.bold,todo.bold\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"punctuation.definition.bold\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"markup.italic, punctuation.definition.italic,todo.emphasis\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"emphasis md\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"entity.name.section.markdown\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.definition.heading.markdown\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.definition.list.begin.markdown\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"markup.heading.setext\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"punctuation.definition.bold.markdown\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"markup.inline.raw.markdown\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"punctuation.definition.raw.markdown\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"punctuation.definition.list.markdown\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\",\"punctuation.definition.metadata.markdown\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"beginning.punctuation.definition.list.markdown\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.definition.metadata.markdown\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"markup.underline.link.markdown,markup.underline.link.image.markdown\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"string.other.link.title.markdown,string.other.link.description.markdown\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"markup.raw.monospace.asciidoc\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"punctuation.definition.asciidoc\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"markup.list.asciidoc\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"markup.link.asciidoc,markup.other.url.asciidoc\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"string.unquoted.asciidoc,markup.other.url.asciidoc\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"punctuation.section.embedded, variable.interpolation\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"punctuation.section.embedded.begin,punctuation.section.embedded.end\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"invalid.illegal\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.illegal.bad-ampersand.html\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"invalid.illegal.unrecognized-tag.html\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"invalid.broken\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"invalid.deprecated.entity.other.attribute-name.html\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"invalid.unimplemented\",\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":\"source.json meta.structure.dictionary.json > string.quoted.json\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.type.property-name.json punctuation\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"keyword.operator.error-control.php\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.type.php\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"punctuation.section.array.begin.php\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"punctuation.section.array.end.php\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"invalid.illegal.non-null-typehinted.php\",\"settings\":{\"foreground\":\"#f44747\"}},{\"scope\":\"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"support.constant.core.rust\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"entity.name.goto-label.php,support.other.php\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.regexp.php\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"keyword.operator.comparison.php\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"keyword.operator.heredoc.php,keyword.operator.nowdoc.php\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"meta.function.decorator.python\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"support.token.decorator.python,meta.function.decorator.identifier.python\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"function.parameter\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"function.brace\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"function.parameter.ruby, function.parameter.cs\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"constant.language.symbol.ruby\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"constant.language.symbol.hashkey.ruby\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"rgb-value\",\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":\"inline-color-decoration rgb-value\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"less rgb-value\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"selector.sass\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"block.scope.end,block.scope.begin\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"storage.type.cs\",\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"entity.name.variable.local.cs\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"token.info-token\",\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":\"token.warn-token\",\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":\"token.error-token\",\"settings\":{\"foreground\":\"#f44747\"}},{\"scope\":\"token.debug-token\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"punctuation.definition.template-expression.begin\",\"punctuation.definition.template-expression.end\",\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"meta.template.expression\"],\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"keyword.operator.module\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"support.type.type.flowtype\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":[\"support.type.primitive\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"meta.property.object\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"variable.parameter.function.js\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"keyword.other.template.begin\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"keyword.other.template.end\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"keyword.other.substitution.begin\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"keyword.other.substitution.end\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"keyword.operator.assignment\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"keyword.operator.assignment.go\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"keyword.operator.arithmetic.go\",\"keyword.operator.address.go\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"keyword.operator.arithmetic.c\",\"keyword.operator.arithmetic.cpp\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"entity.name.package.go\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"support.type.prelude.elm\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"support.constant.elm\"],\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":[\"punctuation.quasi.element\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"constant.character.entity\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-element\",\"entity.other.attribute-name.pseudo-class\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"entity.global.clojure\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"meta.symbol.clojure\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"constant.keyword.clojure\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"meta.arguments.coffee\",\"variable.parameter.function.coffee\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"source.ini\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"meta.scope.prerequisites.makefile\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"source.makefile\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"storage.modifier.import.groovy\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"meta.method.groovy\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":[\"meta.definition.variable.name.groovy\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"meta.definition.class.inherited.classes.groovy\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"support.variable.semantic.hlsl\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"support.type.texture.hlsl\",\"support.type.sampler.hlsl\",\"support.type.object.hlsl\",\"support.type.object.rw.hlsl\",\"support.type.fx.hlsl\",\"support.type.object.hlsl\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"text.variable\",\"text.bracketed\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"support.type.swift\",\"support.type.vb.asp\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"entity.name.function.xi\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"entity.name.class.xi\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"constant.character.character-class.regexp.xi\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"constant.regexp.xi\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"keyword.control.xi\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"invalid.xi\"],\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"beginning.punctuation.definition.quote.markdown.xi\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"beginning.punctuation.definition.list.markdown.xi\"],\"settings\":{\"foreground\":\"#7f848e\"}},{\"scope\":[\"constant.character.xi\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":[\"accent.xi\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":[\"wikiword.xi\"],\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":[\"constant.other.color.rgb-value.xi\"],\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":[\"punctuation.definition.tag.xi\"],\"settings\":{\"foreground\":\"#5c6370\"}},{\"scope\":[\"entity.name.label.cs\",\"entity.name.scope-resolution.function.call\",\"entity.name.scope-resolution.function.definition\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"entity.name.label.cs\",\"markup.heading.setext.1.markdown\",\"markup.heading.setext.2.markdown\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\" meta.brace.square\"],\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":\"comment, punctuation.definition.comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#7f848e\"}},{\"scope\":\"markup.quote.markdown\",\"settings\":{\"foreground\":\"#5c6370\"}},{\"scope\":\"punctuation.definition.block.sequence.item.yaml\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"constant.language.symbol.elixir\",\"constant.language.symbol.double-quoted.elixir\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"entity.name.variable.parameter.cs\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"entity.name.variable.field.cs\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"punctuation.section.embedded.begin.php\",\"punctuation.section.embedded.end.php\"],\"settings\":{\"foreground\":\"#BE5046\"}},{\"scope\":[\"support.other.namespace.php\"],\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"variable.parameter.function.latex\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"variable.other.object\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"variable.other.constant.property\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"entity.other.inherited-class\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":\"variable.other.readwrite.c\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php\",\"settings\":{\"foreground\":\"#abb2bf\"}},{\"scope\":[\"constant.numeric.decimal.asm.x86_64\"],\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":[\"support.other.parenthesis.regexp\"],\"settings\":{\"foreground\":\"#d19a66\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#56b6c2\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"log.info\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":[\"log.warning\"],\"settings\":{\"foreground\":\"#e5c07b\"}},{\"scope\":[\"log.error\"],\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":\"keyword.operator.expression.is\",\"settings\":{\"foreground\":\"#c678dd\"}},{\"scope\":\"entity.name.label\",\"settings\":{\"foreground\":\"#e06c75\"}},{\"scope\":[\"support.class.math.block.environment.latex\",\"constant.other.general.math.tex\"],\"settings\":{\"foreground\":\"#61afef\"}},{\"scope\":[\"constant.character.math.tex\"],\"settings\":{\"foreground\":\"#98c379\"}},{\"scope\":\"entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"comment.line.double-slash,comment.block.documentation\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.italic.markdown\",\"settings\":{\"fontStyle\":\"italic\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { one_dark_pro_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var one_light_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#FAFAFA\",\"activityBar.foreground\":\"#121417\",\"activityBarBadge.background\":\"#526FFF\",\"activityBarBadge.foreground\":\"#FFFFFF\",\"badge.background\":\"#526FFF\",\"badge.foreground\":\"#FFFFFF\",\"button.background\":\"#5871EF\",\"button.foreground\":\"#FFFFFF\",\"button.hoverBackground\":\"#6B83ED\",\"diffEditor.insertedTextBackground\":\"#00809B33\",\"dropdown.background\":\"#FFFFFF\",\"dropdown.border\":\"#DBDBDC\",\"editor.background\":\"#FAFAFA\",\"editor.findMatchHighlightBackground\":\"#526FFF33\",\"editor.foreground\":\"#383A42\",\"editor.lineHighlightBackground\":\"#383A420C\",\"editor.selectionBackground\":\"#E5E5E6\",\"editorCursor.foreground\":\"#526FFF\",\"editorGroup.background\":\"#EAEAEB\",\"editorGroup.border\":\"#DBDBDC\",\"editorGroupHeader.tabsBackground\":\"#EAEAEB\",\"editorHoverWidget.background\":\"#EAEAEB\",\"editorHoverWidget.border\":\"#DBDBDC\",\"editorIndentGuide.activeBackground\":\"#626772\",\"editorIndentGuide.background\":\"#383A4233\",\"editorInlayHint.background\":\"#F5F5F5\",\"editorInlayHint.foreground\":\"#AFB2BB\",\"editorLineNumber.activeForeground\":\"#383A42\",\"editorLineNumber.foreground\":\"#9D9D9F\",\"editorRuler.foreground\":\"#383A4233\",\"editorSuggestWidget.background\":\"#EAEAEB\",\"editorSuggestWidget.border\":\"#DBDBDC\",\"editorSuggestWidget.selectedBackground\":\"#FFFFFF\",\"editorWhitespace.foreground\":\"#383A4233\",\"editorWidget.background\":\"#EAEAEB\",\"editorWidget.border\":\"#E5E5E6\",\"extensionButton.prominentBackground\":\"#3BBA54\",\"extensionButton.prominentHoverBackground\":\"#4CC263\",\"focusBorder\":\"#526FFF\",\"input.background\":\"#FFFFFF\",\"input.border\":\"#DBDBDC\",\"list.activeSelectionBackground\":\"#DBDBDC\",\"list.activeSelectionForeground\":\"#232324\",\"list.focusBackground\":\"#DBDBDC\",\"list.highlightForeground\":\"#121417\",\"list.hoverBackground\":\"#DBDBDC66\",\"list.inactiveSelectionBackground\":\"#DBDBDC\",\"list.inactiveSelectionForeground\":\"#232324\",\"notebook.cellEditorBackground\":\"#F5F5F5\",\"notification.background\":\"#333333\",\"peekView.border\":\"#526FFF\",\"peekViewEditor.background\":\"#FFFFFF\",\"peekViewResult.background\":\"#EAEAEB\",\"peekViewResult.selectionBackground\":\"#DBDBDC\",\"peekViewTitle.background\":\"#FFFFFF\",\"pickerGroup.border\":\"#526FFF\",\"scrollbarSlider.activeBackground\":\"#747D9180\",\"scrollbarSlider.background\":\"#4E566680\",\"scrollbarSlider.hoverBackground\":\"#5A637580\",\"sideBar.background\":\"#EAEAEB\",\"sideBarSectionHeader.background\":\"#FAFAFA\",\"statusBar.background\":\"#EAEAEB\",\"statusBar.debuggingForeground\":\"#FFFFFF\",\"statusBar.foreground\":\"#424243\",\"statusBar.noFolderBackground\":\"#EAEAEB\",\"statusBarItem.hoverBackground\":\"#DBDBDC\",\"tab.activeBackground\":\"#FAFAFA\",\"tab.activeForeground\":\"#121417\",\"tab.border\":\"#DBDBDC\",\"tab.inactiveBackground\":\"#EAEAEB\",\"titleBar.activeBackground\":\"#EAEAEB\",\"titleBar.activeForeground\":\"#424243\",\"titleBar.inactiveBackground\":\"#EAEAEB\",\"titleBar.inactiveForeground\":\"#424243\"},\"displayName\":\"One Light\",\"name\":\"one-light\",\"tokenColors\":[{\"scope\":[\"comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#A0A1A7\"}},{\"scope\":[\"comment markup.link\"],\"settings\":{\"foreground\":\"#A0A1A7\"}},{\"scope\":[\"entity.name.type\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"entity.other.inherited-class\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"keyword\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"keyword.control\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"keyword.operator\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"keyword.other.special-method\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"keyword.other.unit\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"storage\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"storage.type.annotation\",\"storage.type.primitive\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"storage.modifier.package\",\"storage.modifier.import\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"constant\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"constant.variable\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"constant.numeric\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"constant.other.symbol\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"variable\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"variable.interpolation\"],\"settings\":{\"foreground\":\"#CA1243\"}},{\"scope\":[\"variable.parameter\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"string\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"string > source\",\"string embedded\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"string.regexp source.ruby.embedded\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"string.other.link\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"punctuation.definition.comment\"],\"settings\":{\"foreground\":\"#A0A1A7\"}},{\"scope\":[\"punctuation.definition.method-parameters\",\"punctuation.definition.function-parameters\",\"punctuation.definition.parameters\",\"punctuation.definition.separator\",\"punctuation.definition.seperator\",\"punctuation.definition.array\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"punctuation.definition.heading\",\"punctuation.definition.identity\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"punctuation.definition.bold\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#C18401\"}},{\"scope\":[\"punctuation.definition.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#A626A4\"}},{\"scope\":[\"punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#CA1243\"}},{\"scope\":[\"punctuation.section.method\",\"punctuation.section.class\",\"punctuation.section.inner-class\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"support.class\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"support.type\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"support.function\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"support.function.any-method\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"entity.name.function\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"entity.name.class\",\"entity.name.type.class\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"entity.name.section\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"entity.name.tag\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"entity.other.attribute-name.id\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"meta.class\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"meta.class.body\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.method-call\",\"meta.method\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.definition.variable\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"meta.link\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"meta.require\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"meta.selector\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.tag\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"underline\"],\"settings\":{\"text-decoration\":\"underline\"}},{\"scope\":[\"none\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"invalid.deprecated\"],\"settings\":{\"background\":\"#F2A60D\",\"foreground\":\"#000000\"}},{\"scope\":[\"invalid.illegal\"],\"settings\":{\"background\":\"#FF1414\",\"foreground\":\"#50A14F\"}},{\"scope\":[\"markup.bold\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#986801\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#A626A4\"}},{\"scope\":[\"markup.heading\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"markup.heading punctuation.definition.heading\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"markup.link\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"markup.raw\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"source.c keyword.operator\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.cpp keyword.operator\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.cs keyword.operator\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.css property-name\",\"source.css property-value\"],\"settings\":{\"foreground\":\"#696C77\"}},{\"scope\":[\"source.css property-name.support\",\"source.css property-value.support\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.elixir source.embedded.source\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.elixir constant.language\",\"source.elixir constant.numeric\",\"source.elixir constant.definition\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"source.elixir variable.definition\",\"source.elixir variable.anonymous\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.elixir parameter.variable.function\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#986801\"}},{\"scope\":[\"source.elixir quoted\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"source.elixir keyword.special-method\",\"source.elixir embedded.section\",\"source.elixir embedded.source.empty\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.elixir readwrite.module punctuation\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.elixir regexp.section\",\"source.elixir regexp.string\"],\"settings\":{\"foreground\":\"#CA1243\"}},{\"scope\":[\"source.elixir separator\",\"source.elixir keyword.operator\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"source.elixir variable.constant\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"source.elixir array\",\"source.elixir scope\",\"source.elixir section\"],\"settings\":{\"foreground\":\"#696C77\"}},{\"scope\":[\"source.gfm markup\"],\"settings\":{\"-webkit-font-smoothing\":\"auto\"}},{\"scope\":[\"source.gfm link entity\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"source.go storage.type.string\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.ini keyword.other.definition.ini\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.java storage.modifier.import\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"source.java storage.type\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"source.java keyword.operator.instanceof\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.java-properties meta.key-pair\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.java-properties meta.key-pair > punctuation\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.js keyword.operator\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"source.js keyword.operator.delete\",\"source.js keyword.operator.in\",\"source.js keyword.operator.of\",\"source.js keyword.operator.instanceof\",\"source.js keyword.operator.new\",\"source.js keyword.operator.typeof\",\"source.js keyword.operator.void\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.ts keyword.operator\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"source.flow keyword.operator\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"source.json meta.structure.dictionary.json > string.quoted.json\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.json meta.structure.dictionary.json > value.json > string.quoted.json\",\"source.json meta.structure.array.json > value.json > string.quoted.json\",\"source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation\",\"source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"source.json meta.structure.dictionary.json > constant.language.json\",\"source.json meta.structure.array.json > constant.language.json\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"ng.interpolation\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"ng.interpolation.begin\",\"ng.interpolation.end\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"ng.interpolation function\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"ng.interpolation function.begin\",\"ng.interpolation function.end\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":[\"ng.interpolation bool\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"ng.interpolation bracket\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"ng.pipe\",\"ng.operator\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"ng.tag\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"ng.attribute-with-value attribute-name\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"ng.attribute-with-value string\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"ng.attribute-with-value string.begin\",\"ng.attribute-with-value string.end\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.ruby constant.other.symbol > punctuation\"],\"settings\":{\"foreground\":\"inherit\"}},{\"scope\":[\"source.php class.bracket\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.python keyword.operator.logical.python\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.python variable.parameter\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"customrule\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"string.quoted.double punctuation\",\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":\"support.constant\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"support.type.property-name.json\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"support.type.property-name.json punctuation\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"punctuation.separator.key-value.ts\",\"punctuation.separator.key-value.js\",\"punctuation.separator.key-value.tsx\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"source.js.embedded.html keyword.operator\",\"source.ts.embedded.html keyword.operator\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"variable.other.readwrite.js\",\"variable.other.readwrite.ts\",\"variable.other.readwrite.tsx\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"support.variable.dom.js\",\"support.variable.dom.ts\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"support.variable.property.dom.js\",\"support.variable.property.dom.ts\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"meta.template.expression.js punctuation.definition\",\"meta.template.expression.ts punctuation.definition\"],\"settings\":{\"foreground\":\"#CA1243\"}},{\"scope\":[\"source.ts punctuation.definition.typeparameters\",\"source.js punctuation.definition.typeparameters\",\"source.tsx punctuation.definition.typeparameters\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.ts punctuation.definition.block\",\"source.js punctuation.definition.block\",\"source.tsx punctuation.definition.block\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.ts punctuation.separator.comma\",\"source.js punctuation.separator.comma\",\"source.tsx punctuation.separator.comma\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"support.variable.property.js\",\"support.variable.property.ts\",\"support.variable.property.tsx\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"keyword.control.default.js\",\"keyword.control.default.ts\",\"keyword.control.default.tsx\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"keyword.operator.expression.instanceof.js\",\"keyword.operator.expression.instanceof.ts\",\"keyword.operator.expression.instanceof.tsx\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"keyword.operator.expression.of.js\",\"keyword.operator.expression.of.ts\",\"keyword.operator.expression.of.tsx\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"meta.brace.round.js\",\"meta.array-binding-pattern-variable.js\",\"meta.brace.square.js\",\"meta.brace.round.ts\",\"meta.array-binding-pattern-variable.ts\",\"meta.brace.square.ts\",\"meta.brace.round.tsx\",\"meta.array-binding-pattern-variable.tsx\",\"meta.brace.square.tsx\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.js punctuation.accessor\",\"source.ts punctuation.accessor\",\"source.tsx punctuation.accessor\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"punctuation.terminator.statement.js\",\"punctuation.terminator.statement.ts\",\"punctuation.terminator.statement.tsx\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.array-binding-pattern-variable.js variable.other.readwrite.js\",\"meta.array-binding-pattern-variable.ts variable.other.readwrite.ts\",\"meta.array-binding-pattern-variable.tsx variable.other.readwrite.tsx\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"source.js support.variable\",\"source.ts support.variable\",\"source.tsx support.variable\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"variable.other.constant.property.js\",\"variable.other.constant.property.ts\",\"variable.other.constant.property.tsx\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"keyword.operator.new.ts\",\"keyword.operator.new.j\",\"keyword.operator.new.tsx\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"source.ts keyword.operator\",\"source.tsx keyword.operator\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"punctuation.separator.parameter.js\",\"punctuation.separator.parameter.ts\",\"punctuation.separator.parameter.tsx \"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"constant.language.import-export-all.js\",\"constant.language.import-export-all.ts\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"constant.language.import-export-all.jsx\",\"constant.language.import-export-all.tsx\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"keyword.control.as.js\",\"keyword.control.as.ts\",\"keyword.control.as.jsx\",\"keyword.control.as.tsx\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"variable.other.readwrite.alias.js\",\"variable.other.readwrite.alias.ts\",\"variable.other.readwrite.alias.jsx\",\"variable.other.readwrite.alias.tsx\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"variable.other.constant.js\",\"variable.other.constant.ts\",\"variable.other.constant.jsx\",\"variable.other.constant.tsx\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"meta.export.default.js variable.other.readwrite.js\",\"meta.export.default.ts variable.other.readwrite.ts\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"source.js meta.template.expression.js punctuation.accessor\",\"source.ts meta.template.expression.ts punctuation.accessor\",\"source.tsx meta.template.expression.tsx punctuation.accessor\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"source.js meta.import-equals.external.js keyword.operator\",\"source.jsx meta.import-equals.external.jsx keyword.operator\",\"source.ts meta.import-equals.external.ts keyword.operator\",\"source.tsx meta.import-equals.external.tsx keyword.operator\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"entity.name.type.module.js,entity.name.type.module.ts,entity.name.type.module.jsx,entity.name.type.module.tsx\",\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":\"meta.class.js,meta.class.ts,meta.class.jsx,meta.class.tsx\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.definition.property.js variable\",\"meta.definition.property.ts variable\",\"meta.definition.property.jsx variable\",\"meta.definition.property.tsx variable\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.type.parameters.js support.type\",\"meta.type.parameters.jsx support.type\",\"meta.type.parameters.ts support.type\",\"meta.type.parameters.tsx support.type\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"source.js meta.tag.js keyword.operator\",\"source.jsx meta.tag.jsx keyword.operator\",\"source.ts meta.tag.ts keyword.operator\",\"source.tsx meta.tag.tsx keyword.operator\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.tag.js punctuation.section.embedded\",\"meta.tag.jsx punctuation.section.embedded\",\"meta.tag.ts punctuation.section.embedded\",\"meta.tag.tsx punctuation.section.embedded\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.array.literal.js variable\",\"meta.array.literal.jsx variable\",\"meta.array.literal.ts variable\",\"meta.array.literal.tsx variable\"],\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":[\"support.type.object.module.js\",\"support.type.object.module.jsx\",\"support.type.object.module.ts\",\"support.type.object.module.tsx\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":[\"constant.language.json\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"variable.other.constant.object.js\",\"variable.other.constant.object.jsx\",\"variable.other.constant.object.ts\",\"variable.other.constant.object.tsx\"],\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":[\"storage.type.property.js\",\"storage.type.property.jsx\",\"storage.type.property.ts\",\"storage.type.property.tsx\"],\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":[\"meta.template.expression.js string.quoted punctuation.definition\",\"meta.template.expression.jsx string.quoted punctuation.definition\",\"meta.template.expression.ts string.quoted punctuation.definition\",\"meta.template.expression.tsx string.quoted punctuation.definition\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"meta.template.expression.js string.template punctuation.definition.string.template\",\"meta.template.expression.jsx string.template punctuation.definition.string.template\",\"meta.template.expression.ts string.template punctuation.definition.string.template\",\"meta.template.expression.tsx string.template punctuation.definition.string.template\"],\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":[\"keyword.operator.expression.in.js\",\"keyword.operator.expression.in.jsx\",\"keyword.operator.expression.in.ts\",\"keyword.operator.expression.in.tsx\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"variable.other.object.js\",\"variable.other.object.ts\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":[\"meta.object-literal.key.js\",\"meta.object-literal.key.ts\"],\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"source.python constant.other\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"source.python constant\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"constant.character.format.placeholder.other.python storage\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"support.variable.magic.python\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"meta.function.parameters.python\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"punctuation.separator.annotation.python\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"punctuation.separator.parameters.python\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"entity.name.variable.field.cs\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"source.cs keyword.operator\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"variable.other.readwrite.cs\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"variable.other.object.cs\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"variable.other.object.property.cs\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"entity.name.variable.property.cs\",\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":\"storage.type.cs\",\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":\"keyword.other.unsafe.rust\",\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":\"entity.name.type.rust\",\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":\"storage.modifier.lifetime.rust\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"entity.name.lifetime.rust\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"storage.type.core.rust\",\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":\"meta.attribute.rust\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"storage.class.std.rust\",\"settings\":{\"foreground\":\"#0184BC\"}},{\"scope\":\"markup.raw.block.markdown\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"punctuation.definition.variable.shell\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"support.constant.property-value.css\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"punctuation.definition.constant.css\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"punctuation.separator.key-value.scss\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"punctuation.definition.constant.scss\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"meta.property-list.scss punctuation.separator.key-value.scss\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"storage.type.primitive.array.java\",\"settings\":{\"foreground\":\"#C18401\"}},{\"scope\":\"entity.name.section.markdown\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"punctuation.definition.heading.markdown\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"markup.heading.setext\",\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"punctuation.definition.bold.markdown\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"markup.inline.raw.markdown\",\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":\"beginning.punctuation.definition.list.markdown\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"markup.quote.markdown\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#A0A1A7\"}},{\"scope\":[\"punctuation.definition.string.begin.markdown\",\"punctuation.definition.string.end.markdown\",\"punctuation.definition.metadata.markdown\"],\"settings\":{\"foreground\":\"#383A42\"}},{\"scope\":\"punctuation.definition.metadata.markdown\",\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"markup.underline.link.markdown\",\"markup.underline.link.image.markdown\"],\"settings\":{\"foreground\":\"#A626A4\"}},{\"scope\":[\"string.other.link.title.markdown\",\"string.other.link.description.markdown\"],\"settings\":{\"foreground\":\"#4078F2\"}},{\"scope\":\"punctuation.separator.variable.ruby\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"variable.other.constant.ruby\",\"settings\":{\"foreground\":\"#986801\"}},{\"scope\":\"keyword.operator.other.ruby\",\"settings\":{\"foreground\":\"#50A14F\"}},{\"scope\":\"punctuation.definition.variable.php\",\"settings\":{\"foreground\":\"#E45649\"}},{\"scope\":\"meta.class.php\",\"settings\":{\"foreground\":\"#383A42\"}}],\"type\":\"light\"}"));
|
|
2
|
+
export { one_light_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var plastic_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#1085FF\",\"activityBar.background\":\"#21252B\",\"activityBar.border\":\"#0D1117\",\"activityBar.foreground\":\"#C6CCD7\",\"activityBar.inactiveForeground\":\"#5F6672\",\"activityBarBadge.background\":\"#E06C75\",\"activityBarBadge.foreground\":\"#ffffff\",\"breadcrumb.focusForeground\":\"#C6CCD7\",\"breadcrumb.foreground\":\"#5F6672\",\"button.background\":\"#E06C75\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#E48189\",\"button.secondaryBackground\":\"#0D1117\",\"button.secondaryForeground\":\"#ffffff\",\"checkbox.background\":\"#61AFEF\",\"checkbox.foreground\":\"#ffffff\",\"contrastBorder\":\"#0D1117\",\"debugToolBar.background\":\"#181A1F\",\"diffEditor.border\":\"#0D1117\",\"diffEditor.diagonalFill\":\"#0D1117\",\"diffEditor.insertedLineBackground\":\"#CBF6AC0D\",\"diffEditor.insertedTextBackground\":\"#CBF6AC1A\",\"diffEditor.removedLineBackground\":\"#FF9FA80D\",\"diffEditor.removedTextBackground\":\"#FF9FA81A\",\"dropdown.background\":\"#181A1F\",\"dropdown.border\":\"#0D1117\",\"editor.background\":\"#21252B\",\"editor.findMatchBackground\":\"#00000000\",\"editor.findMatchBorder\":\"#1085FF\",\"editor.findMatchHighlightBackground\":\"#00000000\",\"editor.findMatchHighlightBorder\":\"#C6CCD7\",\"editor.foreground\":\"#A9B2C3\",\"editor.lineHighlightBackground\":\"#A9B2C31A\",\"editor.lineHighlightBorder\":\"#00000000\",\"editor.linkedEditingBackground\":\"#0D1117\",\"editor.rangeHighlightBorder\":\"#C6CCD7\",\"editor.selectionBackground\":\"#A9B2C333\",\"editor.selectionHighlightBackground\":\"#A9B2C31A\",\"editor.selectionHighlightBorder\":\"#C6CCD7\",\"editor.wordHighlightBackground\":\"#00000000\",\"editor.wordHighlightBorder\":\"#1085FF\",\"editor.wordHighlightStrongBackground\":\"#00000000\",\"editor.wordHighlightStrongBorder\":\"#1085FF\",\"editorBracketHighlight.foreground1\":\"#A9B2C3\",\"editorBracketHighlight.foreground2\":\"#61AFEF\",\"editorBracketHighlight.foreground3\":\"#E5C07B\",\"editorBracketHighlight.foreground4\":\"#E06C75\",\"editorBracketHighlight.foreground5\":\"#98C379\",\"editorBracketHighlight.foreground6\":\"#B57EDC\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#D74E42\",\"editorBracketMatch.background\":\"#00000000\",\"editorBracketMatch.border\":\"#1085FF\",\"editorCursor.foreground\":\"#A9B2C3\",\"editorError.foreground\":\"#D74E42\",\"editorGroup.border\":\"#0D1117\",\"editorGroup.emptyBackground\":\"#181A1F\",\"editorGroupHeader.tabsBackground\":\"#181A1F\",\"editorGutter.addedBackground\":\"#98C379\",\"editorGutter.deletedBackground\":\"#E06C75\",\"editorGutter.modifiedBackground\":\"#D19A66\",\"editorHoverWidget.background\":\"#181A1F\",\"editorHoverWidget.border\":\"#1085FF\",\"editorIndentGuide.activeBackground\":\"#A9B2C333\",\"editorIndentGuide.background\":\"#0D1117\",\"editorInfo.foreground\":\"#1085FF\",\"editorInlayHint.background\":\"#00000000\",\"editorInlayHint.foreground\":\"#5F6672\",\"editorLightBulb.foreground\":\"#E9D16C\",\"editorLightBulbAutoFix.foreground\":\"#1085FF\",\"editorLineNumber.activeForeground\":\"#C6CCD7\",\"editorLineNumber.foreground\":\"#5F6672\",\"editorOverviewRuler.addedForeground\":\"#98C379\",\"editorOverviewRuler.border\":\"#0D1117\",\"editorOverviewRuler.deletedForeground\":\"#E06C75\",\"editorOverviewRuler.errorForeground\":\"#D74E42\",\"editorOverviewRuler.findMatchForeground\":\"#1085FF\",\"editorOverviewRuler.infoForeground\":\"#1085FF\",\"editorOverviewRuler.modifiedForeground\":\"#D19A66\",\"editorOverviewRuler.warningForeground\":\"#E9D16C\",\"editorRuler.foreground\":\"#0D1117\",\"editorStickyScroll.background\":\"#181A1F\",\"editorStickyScrollHover.background\":\"#21252B\",\"editorSuggestWidget.background\":\"#181A1F\",\"editorSuggestWidget.border\":\"#1085FF\",\"editorSuggestWidget.selectedBackground\":\"#A9B2C31A\",\"editorWarning.foreground\":\"#E9D16C\",\"editorWhitespace.foreground\":\"#A9B2C31A\",\"editorWidget.background\":\"#181A1F\",\"errorForeground\":\"#D74E42\",\"focusBorder\":\"#1085FF\",\"gitDecoration.deletedResourceForeground\":\"#E06C75\",\"gitDecoration.ignoredResourceForeground\":\"#5F6672\",\"gitDecoration.modifiedResourceForeground\":\"#D19A66\",\"gitDecoration.untrackedResourceForeground\":\"#98C379\",\"input.background\":\"#0D1117\",\"inputOption.activeBorder\":\"#1085FF\",\"inputValidation.errorBackground\":\"#D74E42\",\"inputValidation.errorBorder\":\"#D74E42\",\"inputValidation.infoBackground\":\"#1085FF\",\"inputValidation.infoBorder\":\"#1085FF\",\"inputValidation.infoForeground\":\"#0D1117\",\"inputValidation.warningBackground\":\"#E9D16C\",\"inputValidation.warningBorder\":\"#E9D16C\",\"inputValidation.warningForeground\":\"#0D1117\",\"list.activeSelectionBackground\":\"#A9B2C333\",\"list.activeSelectionForeground\":\"#ffffff\",\"list.errorForeground\":\"#D74E42\",\"list.focusBackground\":\"#A9B2C333\",\"list.hoverBackground\":\"#A9B2C31A\",\"list.inactiveFocusOutline\":\"#5F6672\",\"list.inactiveSelectionBackground\":\"#A9B2C333\",\"list.inactiveSelectionForeground\":\"#C6CCD7\",\"list.warningForeground\":\"#E9D16C\",\"minimap.findMatchHighlight\":\"#1085FF\",\"minimap.selectionHighlight\":\"#C6CCD7\",\"minimapGutter.addedBackground\":\"#98C379\",\"minimapGutter.deletedBackground\":\"#E06C75\",\"minimapGutter.modifiedBackground\":\"#D19A66\",\"notificationCenter.border\":\"#0D1117\",\"notificationCenterHeader.background\":\"#181A1F\",\"notificationToast.border\":\"#0D1117\",\"notifications.background\":\"#181A1F\",\"notifications.border\":\"#0D1117\",\"panel.background\":\"#181A1F\",\"panel.border\":\"#0D1117\",\"panelTitle.inactiveForeground\":\"#5F6672\",\"peekView.border\":\"#1085FF\",\"peekViewEditor.background\":\"#181A1F\",\"peekViewEditor.matchHighlightBackground\":\"#A9B2C333\",\"peekViewResult.background\":\"#181A1F\",\"peekViewResult.matchHighlightBackground\":\"#A9B2C333\",\"peekViewResult.selectionBackground\":\"#A9B2C31A\",\"peekViewResult.selectionForeground\":\"#C6CCD7\",\"peekViewTitle.background\":\"#181A1F\",\"sash.hoverBorder\":\"#A9B2C333\",\"scrollbar.shadow\":\"#00000000\",\"scrollbarSlider.activeBackground\":\"#A9B2C333\",\"scrollbarSlider.background\":\"#A9B2C31A\",\"scrollbarSlider.hoverBackground\":\"#A9B2C333\",\"sideBar.background\":\"#181A1F\",\"sideBar.border\":\"#0D1117\",\"sideBar.foreground\":\"#C6CCD7\",\"sideBarSectionHeader.background\":\"#21252B\",\"statusBar.background\":\"#21252B\",\"statusBar.border\":\"#0D1117\",\"statusBar.debuggingBackground\":\"#21252B\",\"statusBar.debuggingBorder\":\"#56B6C2\",\"statusBar.debuggingForeground\":\"#A9B2C3\",\"statusBar.focusBorder\":\"#A9B2C3\",\"statusBar.foreground\":\"#A9B2C3\",\"statusBar.noFolderBackground\":\"#181A1F\",\"statusBarItem.activeBackground\":\"#0D1117\",\"statusBarItem.errorBackground\":\"#21252B\",\"statusBarItem.errorForeground\":\"#D74E42\",\"statusBarItem.focusBorder\":\"#A9B2C3\",\"statusBarItem.hoverBackground\":\"#181A1F\",\"statusBarItem.hoverForeground\":\"#A9B2C3\",\"statusBarItem.remoteBackground\":\"#21252B\",\"statusBarItem.remoteForeground\":\"#B57EDC\",\"statusBarItem.warningBackground\":\"#21252B\",\"statusBarItem.warningForeground\":\"#E9D16C\",\"tab.activeBackground\":\"#21252B\",\"tab.activeBorderTop\":\"#1085FF\",\"tab.activeForeground\":\"#C6CCD7\",\"tab.border\":\"#0D1117\",\"tab.inactiveBackground\":\"#181A1F\",\"tab.inactiveForeground\":\"#5F6672\",\"tab.lastPinnedBorder\":\"#A9B2C333\",\"terminal.ansiBlack\":\"#5F6672\",\"terminal.ansiBlue\":\"#61AFEF\",\"terminal.ansiBrightBlack\":\"#5F6672\",\"terminal.ansiBrightBlue\":\"#61AFEF\",\"terminal.ansiBrightCyan\":\"#56B6C2\",\"terminal.ansiBrightGreen\":\"#98C379\",\"terminal.ansiBrightMagenta\":\"#B57EDC\",\"terminal.ansiBrightRed\":\"#E06C75\",\"terminal.ansiBrightWhite\":\"#A9B2C3\",\"terminal.ansiBrightYellow\":\"#E5C07B\",\"terminal.ansiCyan\":\"#56B6C2\",\"terminal.ansiGreen\":\"#98C379\",\"terminal.ansiMagenta\":\"#B57EDC\",\"terminal.ansiRed\":\"#E06C75\",\"terminal.ansiWhite\":\"#A9B2C3\",\"terminal.ansiYellow\":\"#E5C07B\",\"terminal.foreground\":\"#A9B2C3\",\"titleBar.activeBackground\":\"#21252B\",\"titleBar.activeForeground\":\"#C6CCD7\",\"titleBar.border\":\"#0D1117\",\"titleBar.inactiveBackground\":\"#21252B\",\"titleBar.inactiveForeground\":\"#5F6672\",\"toolbar.hoverBackground\":\"#A9B2C333\",\"widget.shadow\":\"#00000000\"},\"displayName\":\"Plastic\",\"name\":\"plastic\",\"semanticHighlighting\":true,\"semanticTokenColors\":{},\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\",\"source.diff\"],\"settings\":{\"foreground\":\"#5F6672\"}},{\"scope\":[\"entity.name.function\",\"support.function\",\"meta.diff.range\",\"punctuation.definition.range.diff\"],\"settings\":{\"foreground\":\"#B57EDC\"}},{\"scope\":[\"keyword\",\"punctuation.definition.keyword\",\"variable.language\",\"markup.deleted\",\"meta.diff.header.from-file\",\"punctuation.definition.deleted\",\"punctuation.definition.from-file.diff\"],\"settings\":{\"foreground\":\"#E06C75\"}},{\"scope\":[\"constant\",\"support.constant\"],\"settings\":{\"foreground\":\"#56B6C2\"}},{\"scope\":[\"storage\",\"support.class\",\"entity.name.namespace\",\"meta.diff.header\"],\"settings\":{\"foreground\":\"#61AFEF\"}},{\"scope\":[\"markup.inline.raw.string\",\"string\",\"markup.inserted\",\"punctuation.definition.inserted\",\"meta.diff.header.to-file\",\"punctuation.definition.to-file.diff\"],\"settings\":{\"foreground\":\"#98C379\"}},{\"scope\":[\"entity.name.section\",\"entity.name.tag\",\"entity.name.type\",\"support.type\"],\"settings\":{\"foreground\":\"#E5C07B\"}},{\"scope\":[\"support.type.property-name\",\"support.variable\",\"variable\"],\"settings\":{\"foreground\":\"#C6CCD7\"}},{\"scope\":[\"entity.other\",\"punctuation.definition.entity\",\"support.other\"],\"settings\":{\"foreground\":\"#D19A66\"}},{\"scope\":[\"meta.brace\",\"punctuation\"],\"settings\":{\"foreground\":\"#A9B2C3\"}},{\"scope\":[\"markup.bold\",\"punctuation.definition.bold\",\"entity.other.attribute-name.id\"],\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":[\"comment\",\"markup.italic\",\"punctuation.definition.italic\"],\"settings\":{\"fontStyle\":\"italic\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { plastic_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var poimandres_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.activeBorder\":\"#a6accd\",\"activityBar.background\":\"#1b1e28\",\"activityBar.dropBorder\":\"#a6accd\",\"activityBar.foreground\":\"#a6accd\",\"activityBar.inactiveForeground\":\"#a6accd66\",\"activityBarBadge.background\":\"#303340\",\"activityBarBadge.foreground\":\"#e4f0fb\",\"badge.background\":\"#303340\",\"badge.foreground\":\"#e4f0fb\",\"breadcrumb.activeSelectionForeground\":\"#e4f0fb\",\"breadcrumb.background\":\"#00000000\",\"breadcrumb.focusForeground\":\"#e4f0fb\",\"breadcrumb.foreground\":\"#767c9dcc\",\"breadcrumbPicker.background\":\"#1b1e28\",\"button.background\":\"#303340\",\"button.foreground\":\"#ffffff\",\"button.hoverBackground\":\"#50647750\",\"button.secondaryBackground\":\"#a6accd\",\"button.secondaryForeground\":\"#ffffff\",\"button.secondaryHoverBackground\":\"#a6accd\",\"charts.blue\":\"#ADD7FF\",\"charts.foreground\":\"#a6accd\",\"charts.green\":\"#5DE4c7\",\"charts.lines\":\"#a6accd80\",\"charts.orange\":\"#89ddff\",\"charts.purple\":\"#f087bd\",\"charts.red\":\"#d0679d\",\"charts.yellow\":\"#fffac2\",\"checkbox.background\":\"#1b1e28\",\"checkbox.border\":\"#ffffff10\",\"checkbox.foreground\":\"#e4f0fb\",\"debugConsole.errorForeground\":\"#d0679d\",\"debugConsole.infoForeground\":\"#ADD7FF\",\"debugConsole.sourceForeground\":\"#a6accd\",\"debugConsole.warningForeground\":\"#fffac2\",\"debugConsoleInputIcon.foreground\":\"#a6accd\",\"debugExceptionWidget.background\":\"#d0679d\",\"debugExceptionWidget.border\":\"#d0679d\",\"debugIcon.breakpointCurrentStackframeForeground\":\"#fffac2\",\"debugIcon.breakpointDisabledForeground\":\"#7390AA\",\"debugIcon.breakpointForeground\":\"#d0679d\",\"debugIcon.breakpointStackframeForeground\":\"#5fb3a1\",\"debugIcon.breakpointUnverifiedForeground\":\"#7390AA\",\"debugIcon.continueForeground\":\"#ADD7FF\",\"debugIcon.disconnectForeground\":\"#d0679d\",\"debugIcon.pauseForeground\":\"#ADD7FF\",\"debugIcon.restartForeground\":\"#5fb3a1\",\"debugIcon.startForeground\":\"#5fb3a1\",\"debugIcon.stepBackForeground\":\"#ADD7FF\",\"debugIcon.stepIntoForeground\":\"#ADD7FF\",\"debugIcon.stepOutForeground\":\"#ADD7FF\",\"debugIcon.stepOverForeground\":\"#ADD7FF\",\"debugIcon.stopForeground\":\"#d0679d\",\"debugTokenExpression.boolean\":\"#89ddff\",\"debugTokenExpression.error\":\"#d0679d\",\"debugTokenExpression.name\":\"#e4f0fb\",\"debugTokenExpression.number\":\"#5fb3a1\",\"debugTokenExpression.string\":\"#89ddff\",\"debugTokenExpression.value\":\"#a6accd99\",\"debugToolBar.background\":\"#303340\",\"debugView.exceptionLabelBackground\":\"#d0679d\",\"debugView.exceptionLabelForeground\":\"#e4f0fb\",\"debugView.stateLabelBackground\":\"#303340\",\"debugView.stateLabelForeground\":\"#a6accd\",\"debugView.valueChangedHighlight\":\"#89ddff\",\"descriptionForeground\":\"#a6accdb3\",\"diffEditor.diagonalFill\":\"#a6accd33\",\"diffEditor.insertedTextBackground\":\"#50647715\",\"diffEditor.removedTextBackground\":\"#d0679d20\",\"dropdown.background\":\"#1b1e28\",\"dropdown.border\":\"#ffffff10\",\"dropdown.foreground\":\"#e4f0fb\",\"editor.background\":\"#1b1e28\",\"editor.findMatchBackground\":\"#ADD7FF40\",\"editor.findMatchBorder\":\"#ADD7FF\",\"editor.findMatchHighlightBackground\":\"#ADD7FF40\",\"editor.findRangeHighlightBackground\":\"#ADD7FF40\",\"editor.focusedStackFrameHighlightBackground\":\"#7abd7a4d\",\"editor.foldBackground\":\"#717cb40b\",\"editor.foreground\":\"#a6accd\",\"editor.hoverHighlightBackground\":\"#264f7840\",\"editor.inactiveSelectionBackground\":\"#717cb425\",\"editor.lineHighlightBackground\":\"#717cb425\",\"editor.lineHighlightBorder\":\"#00000000\",\"editor.linkedEditingBackground\":\"#d0679d4d\",\"editor.rangeHighlightBackground\":\"#ffffff0b\",\"editor.selectionBackground\":\"#717cb425\",\"editor.selectionHighlightBackground\":\"#00000000\",\"editor.selectionHighlightBorder\":\"#ADD7FF80\",\"editor.snippetFinalTabstopHighlightBorder\":\"#525252\",\"editor.snippetTabstopHighlightBackground\":\"#7c7c7c4d\",\"editor.stackFrameHighlightBackground\":\"#ffff0033\",\"editor.symbolHighlightBackground\":\"#89ddff60\",\"editor.wordHighlightBackground\":\"#ADD7FF20\",\"editor.wordHighlightStrongBackground\":\"#ADD7FF40\",\"editorBracketMatch.background\":\"#00000000\",\"editorBracketMatch.border\":\"#e4f0fb40\",\"editorCodeLens.foreground\":\"#a6accd\",\"editorCursor.foreground\":\"#a6accd\",\"editorError.foreground\":\"#d0679d\",\"editorGroup.border\":\"#00000030\",\"editorGroup.dropBackground\":\"#7390AA80\",\"editorGroupHeader.noTabsBackground\":\"#1b1e28\",\"editorGroupHeader.tabsBackground\":\"#1b1e28\",\"editorGutter.addedBackground\":\"#5fb3a140\",\"editorGutter.background\":\"#1b1e28\",\"editorGutter.commentRangeForeground\":\"#a6accd\",\"editorGutter.deletedBackground\":\"#d0679d40\",\"editorGutter.foldingControlForeground\":\"#a6accd\",\"editorGutter.modifiedBackground\":\"#ADD7FF20\",\"editorHint.foreground\":\"#7390AAb3\",\"editorHoverWidget.background\":\"#1b1e28\",\"editorHoverWidget.border\":\"#ffffff10\",\"editorHoverWidget.foreground\":\"#a6accd\",\"editorHoverWidget.statusBarBackground\":\"#202430\",\"editorIndentGuide.activeBackground\":\"#e3e4e229\",\"editorIndentGuide.background\":\"#303340\",\"editorInfo.foreground\":\"#ADD7FF\",\"editorInlineHint.background\":\"#a6accd\",\"editorInlineHint.foreground\":\"#1b1e28\",\"editorLightBulb.foreground\":\"#fffac2\",\"editorLightBulbAutoFix.foreground\":\"#ADD7FF\",\"editorLineNumber.activeForeground\":\"#a6accd\",\"editorLineNumber.foreground\":\"#767c9d50\",\"editorLink.activeForeground\":\"#ADD7FF\",\"editorMarkerNavigation.background\":\"#2d2d30\",\"editorMarkerNavigationError.background\":\"#d0679d\",\"editorMarkerNavigationInfo.background\":\"#ADD7FF\",\"editorMarkerNavigationWarning.background\":\"#fffac2\",\"editorOverviewRuler.addedForeground\":\"#5fb3a199\",\"editorOverviewRuler.border\":\"#00000000\",\"editorOverviewRuler.bracketMatchForeground\":\"#a0a0a0\",\"editorOverviewRuler.commonContentForeground\":\"#a6accd66\",\"editorOverviewRuler.currentContentForeground\":\"#5fb3a180\",\"editorOverviewRuler.deletedForeground\":\"#d0679d99\",\"editorOverviewRuler.errorForeground\":\"#d0679db3\",\"editorOverviewRuler.findMatchForeground\":\"#e4f0fb20\",\"editorOverviewRuler.incomingContentForeground\":\"#89ddff80\",\"editorOverviewRuler.infoForeground\":\"#ADD7FF\",\"editorOverviewRuler.modifiedForeground\":\"#89ddff99\",\"editorOverviewRuler.rangeHighlightForeground\":\"#89ddff99\",\"editorOverviewRuler.selectionHighlightForeground\":\"#a0a0a0cc\",\"editorOverviewRuler.warningForeground\":\"#fffac2\",\"editorOverviewRuler.wordHighlightForeground\":\"#a0a0a0cc\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#89ddffcc\",\"editorPane.background\":\"#1b1e28\",\"editorRuler.foreground\":\"#e4f0fb10\",\"editorSuggestWidget.background\":\"#1b1e28\",\"editorSuggestWidget.border\":\"#ffffff10\",\"editorSuggestWidget.foreground\":\"#a6accd\",\"editorSuggestWidget.highlightForeground\":\"#5DE4c7\",\"editorSuggestWidget.selectedBackground\":\"#00000050\",\"editorUnnecessaryCode.opacity\":\"#000000aa\",\"editorWarning.foreground\":\"#fffac2\",\"editorWhitespace.foreground\":\"#303340\",\"editorWidget.background\":\"#1b1e28\",\"editorWidget.border\":\"#a6accd\",\"editorWidget.foreground\":\"#a6accd\",\"errorForeground\":\"#d0679d\",\"extensionBadge.remoteBackground\":\"#303340\",\"extensionBadge.remoteForeground\":\"#e4f0fb\",\"extensionButton.prominentBackground\":\"#30334090\",\"extensionButton.prominentForeground\":\"#ffffff\",\"extensionButton.prominentHoverBackground\":\"#303340\",\"extensionIcon.starForeground\":\"#fffac2\",\"focusBorder\":\"#00000000\",\"foreground\":\"#a6accd\",\"gitDecoration.addedResourceForeground\":\"#5fb3a1\",\"gitDecoration.conflictingResourceForeground\":\"#d0679d\",\"gitDecoration.deletedResourceForeground\":\"#d0679d\",\"gitDecoration.ignoredResourceForeground\":\"#767c9d70\",\"gitDecoration.modifiedResourceForeground\":\"#ADD7FF\",\"gitDecoration.renamedResourceForeground\":\"#5DE4c7\",\"gitDecoration.stageDeletedResourceForeground\":\"#d0679d\",\"gitDecoration.stageModifiedResourceForeground\":\"#ADD7FF\",\"gitDecoration.submoduleResourceForeground\":\"#89ddff\",\"gitDecoration.untrackedResourceForeground\":\"#5DE4c7\",\"icon.foreground\":\"#a6accd\",\"imagePreview.border\":\"#303340\",\"input.background\":\"#ffffff05\",\"input.border\":\"#ffffff10\",\"input.foreground\":\"#e4f0fb\",\"input.placeholderForeground\":\"#a6accd60\",\"inputOption.activeBackground\":\"#00000000\",\"inputOption.activeBorder\":\"#00000000\",\"inputOption.activeForeground\":\"#ffffff\",\"inputValidation.errorBackground\":\"#1b1e28\",\"inputValidation.errorBorder\":\"#d0679d\",\"inputValidation.errorForeground\":\"#d0679d\",\"inputValidation.infoBackground\":\"#506477\",\"inputValidation.infoBorder\":\"#89ddff\",\"inputValidation.warningBackground\":\"#506477\",\"inputValidation.warningBorder\":\"#fffac2\",\"list.activeSelectionBackground\":\"#30334080\",\"list.activeSelectionForeground\":\"#e4f0fb\",\"list.deemphasizedForeground\":\"#767c9d\",\"list.dropBackground\":\"#506477\",\"list.errorForeground\":\"#d0679d\",\"list.filterMatchBackground\":\"#89ddff60\",\"list.focusBackground\":\"#30334080\",\"list.focusForeground\":\"#a6accd\",\"list.focusOutline\":\"#00000000\",\"list.highlightForeground\":\"#5fb3a1\",\"list.hoverBackground\":\"#30334080\",\"list.hoverForeground\":\"#e4f0fb\",\"list.inactiveSelectionBackground\":\"#30334080\",\"list.inactiveSelectionForeground\":\"#e4f0fb\",\"list.invalidItemForeground\":\"#fffac2\",\"list.warningForeground\":\"#fffac2\",\"listFilterWidget.background\":\"#303340\",\"listFilterWidget.noMatchesOutline\":\"#d0679d\",\"listFilterWidget.outline\":\"#00000000\",\"menu.background\":\"#1b1e28\",\"menu.foreground\":\"#e4f0fb\",\"menu.selectionBackground\":\"#303340\",\"menu.selectionForeground\":\"#7390AA\",\"menu.separatorBackground\":\"#767c9d\",\"menubar.selectionBackground\":\"#717cb425\",\"menubar.selectionForeground\":\"#a6accd\",\"merge.commonContentBackground\":\"#a6accd29\",\"merge.commonHeaderBackground\":\"#a6accd66\",\"merge.currentContentBackground\":\"#5fb3a133\",\"merge.currentHeaderBackground\":\"#5fb3a180\",\"merge.incomingContentBackground\":\"#89ddff33\",\"merge.incomingHeaderBackground\":\"#89ddff80\",\"minimap.errorHighlight\":\"#d0679d\",\"minimap.findMatchHighlight\":\"#ADD7FF\",\"minimap.selectionHighlight\":\"#e4f0fb40\",\"minimap.warningHighlight\":\"#fffac2\",\"minimapGutter.addedBackground\":\"#5fb3a180\",\"minimapGutter.deletedBackground\":\"#d0679d80\",\"minimapGutter.modifiedBackground\":\"#ADD7FF80\",\"minimapSlider.activeBackground\":\"#a6accd30\",\"minimapSlider.background\":\"#a6accd20\",\"minimapSlider.hoverBackground\":\"#a6accd30\",\"notebook.cellBorderColor\":\"#1b1e28\",\"notebook.cellInsertionIndicator\":\"#00000000\",\"notebook.cellStatusBarItemHoverBackground\":\"#ffffff26\",\"notebook.cellToolbarSeparator\":\"#303340\",\"notebook.focusedCellBorder\":\"#00000000\",\"notebook.focusedEditorBorder\":\"#00000000\",\"notebook.focusedRowBorder\":\"#00000000\",\"notebook.inactiveFocusedCellBorder\":\"#00000000\",\"notebook.outputContainerBackgroundColor\":\"#1b1e28\",\"notebook.rowHoverBackground\":\"#30334000\",\"notebook.selectedCellBackground\":\"#303340\",\"notebook.selectedCellBorder\":\"#1b1e28\",\"notebook.symbolHighlightBackground\":\"#ffffff0b\",\"notebookScrollbarSlider.activeBackground\":\"#a6accd25\",\"notebookScrollbarSlider.background\":\"#00000050\",\"notebookScrollbarSlider.hoverBackground\":\"#a6accd25\",\"notebookStatusErrorIcon.foreground\":\"#d0679d\",\"notebookStatusRunningIcon.foreground\":\"#a6accd\",\"notebookStatusSuccessIcon.foreground\":\"#5fb3a1\",\"notificationCenterHeader.background\":\"#303340\",\"notificationLink.foreground\":\"#ADD7FF\",\"notifications.background\":\"#1b1e28\",\"notifications.border\":\"#303340\",\"notifications.foreground\":\"#e4f0fb\",\"notificationsErrorIcon.foreground\":\"#d0679d\",\"notificationsInfoIcon.foreground\":\"#ADD7FF\",\"notificationsWarningIcon.foreground\":\"#fffac2\",\"panel.background\":\"#1b1e28\",\"panel.border\":\"#00000030\",\"panel.dropBorder\":\"#a6accd\",\"panelSection.border\":\"#1b1e28\",\"panelSection.dropBackground\":\"#7390AA80\",\"panelSectionHeader.background\":\"#303340\",\"panelTitle.activeBorder\":\"#a6accd\",\"panelTitle.activeForeground\":\"#a6accd\",\"panelTitle.inactiveForeground\":\"#a6accd99\",\"peekView.border\":\"#00000030\",\"peekViewEditor.background\":\"#a6accd05\",\"peekViewEditor.matchHighlightBackground\":\"#303340\",\"peekViewEditorGutter.background\":\"#a6accd05\",\"peekViewResult.background\":\"#a6accd05\",\"peekViewResult.fileForeground\":\"#ffffff\",\"peekViewResult.lineForeground\":\"#a6accd\",\"peekViewResult.matchHighlightBackground\":\"#303340\",\"peekViewResult.selectionBackground\":\"#717cb425\",\"peekViewResult.selectionForeground\":\"#ffffff\",\"peekViewTitle.background\":\"#a6accd05\",\"peekViewTitleDescription.foreground\":\"#a6accd60\",\"peekViewTitleLabel.foreground\":\"#ffffff\",\"pickerGroup.border\":\"#a6accd\",\"pickerGroup.foreground\":\"#89ddff\",\"problemsErrorIcon.foreground\":\"#d0679d\",\"problemsInfoIcon.foreground\":\"#ADD7FF\",\"problemsWarningIcon.foreground\":\"#fffac2\",\"progressBar.background\":\"#89ddff\",\"quickInput.background\":\"#1b1e28\",\"quickInput.foreground\":\"#a6accd\",\"quickInputList.focusBackground\":\"#a6accd10\",\"quickInputTitle.background\":\"#ffffff1b\",\"sash.hoverBorder\":\"#00000000\",\"scm.providerBorder\":\"#e4f0fb10\",\"scrollbar.shadow\":\"#00000000\",\"scrollbarSlider.activeBackground\":\"#a6accd25\",\"scrollbarSlider.background\":\"#00000080\",\"scrollbarSlider.hoverBackground\":\"#a6accd25\",\"searchEditor.findMatchBackground\":\"#ADD7FF50\",\"searchEditor.textInputBorder\":\"#ffffff10\",\"selection.background\":\"#a6accd\",\"settings.checkboxBackground\":\"#1b1e28\",\"settings.checkboxBorder\":\"#ffffff10\",\"settings.checkboxForeground\":\"#e4f0fb\",\"settings.dropdownBackground\":\"#1b1e28\",\"settings.dropdownBorder\":\"#ffffff10\",\"settings.dropdownForeground\":\"#e4f0fb\",\"settings.dropdownListBorder\":\"#e4f0fb10\",\"settings.focusedRowBackground\":\"#00000000\",\"settings.headerForeground\":\"#e4f0fb\",\"settings.modifiedItemIndicator\":\"#ADD7FF\",\"settings.numberInputBackground\":\"#ffffff05\",\"settings.numberInputBorder\":\"#ffffff10\",\"settings.numberInputForeground\":\"#e4f0fb\",\"settings.textInputBackground\":\"#ffffff05\",\"settings.textInputBorder\":\"#ffffff10\",\"settings.textInputForeground\":\"#e4f0fb\",\"sideBar.background\":\"#1b1e28\",\"sideBar.dropBackground\":\"#7390AA80\",\"sideBar.foreground\":\"#767c9d\",\"sideBarSectionHeader.background\":\"#1b1e28\",\"sideBarSectionHeader.foreground\":\"#a6accd\",\"sideBarTitle.foreground\":\"#a6accd\",\"statusBar.background\":\"#1b1e28\",\"statusBar.debuggingBackground\":\"#303340\",\"statusBar.debuggingForeground\":\"#ffffff\",\"statusBar.foreground\":\"#a6accd\",\"statusBar.noFolderBackground\":\"#1b1e28\",\"statusBar.noFolderForeground\":\"#a6accd\",\"statusBarItem.activeBackground\":\"#ffffff2e\",\"statusBarItem.errorBackground\":\"#d0679d\",\"statusBarItem.errorForeground\":\"#ffffff\",\"statusBarItem.hoverBackground\":\"#ffffff1f\",\"statusBarItem.prominentBackground\":\"#00000080\",\"statusBarItem.prominentForeground\":\"#a6accd\",\"statusBarItem.prominentHoverBackground\":\"#0000004d\",\"statusBarItem.remoteBackground\":\"#303340\",\"statusBarItem.remoteForeground\":\"#e4f0fb\",\"symbolIcon.arrayForeground\":\"#a6accd\",\"symbolIcon.booleanForeground\":\"#a6accd\",\"symbolIcon.classForeground\":\"#fffac2\",\"symbolIcon.colorForeground\":\"#a6accd\",\"symbolIcon.constantForeground\":\"#a6accd\",\"symbolIcon.constructorForeground\":\"#f087bd\",\"symbolIcon.enumeratorForeground\":\"#fffac2\",\"symbolIcon.enumeratorMemberForeground\":\"#ADD7FF\",\"symbolIcon.eventForeground\":\"#fffac2\",\"symbolIcon.fieldForeground\":\"#ADD7FF\",\"symbolIcon.fileForeground\":\"#a6accd\",\"symbolIcon.folderForeground\":\"#a6accd\",\"symbolIcon.functionForeground\":\"#f087bd\",\"symbolIcon.interfaceForeground\":\"#ADD7FF\",\"symbolIcon.keyForeground\":\"#a6accd\",\"symbolIcon.keywordForeground\":\"#a6accd\",\"symbolIcon.methodForeground\":\"#f087bd\",\"symbolIcon.moduleForeground\":\"#a6accd\",\"symbolIcon.namespaceForeground\":\"#a6accd\",\"symbolIcon.nullForeground\":\"#a6accd\",\"symbolIcon.numberForeground\":\"#a6accd\",\"symbolIcon.objectForeground\":\"#a6accd\",\"symbolIcon.operatorForeground\":\"#a6accd\",\"symbolIcon.packageForeground\":\"#a6accd\",\"symbolIcon.propertyForeground\":\"#a6accd\",\"symbolIcon.referenceForeground\":\"#a6accd\",\"symbolIcon.snippetForeground\":\"#a6accd\",\"symbolIcon.stringForeground\":\"#a6accd\",\"symbolIcon.structForeground\":\"#a6accd\",\"symbolIcon.textForeground\":\"#a6accd\",\"symbolIcon.typeParameterForeground\":\"#a6accd\",\"symbolIcon.unitForeground\":\"#a6accd\",\"symbolIcon.variableForeground\":\"#ADD7FF\",\"tab.activeBackground\":\"#30334080\",\"tab.activeForeground\":\"#e4f0fb\",\"tab.activeModifiedBorder\":\"#ADD7FF\",\"tab.border\":\"#00000000\",\"tab.inactiveBackground\":\"#1b1e28\",\"tab.inactiveForeground\":\"#767c9d\",\"tab.inactiveModifiedBorder\":\"#ADD7FF80\",\"tab.lastPinnedBorder\":\"#00000000\",\"tab.unfocusedActiveBackground\":\"#1b1e28\",\"tab.unfocusedActiveForeground\":\"#a6accd\",\"tab.unfocusedActiveModifiedBorder\":\"#ADD7FF40\",\"tab.unfocusedInactiveBackground\":\"#1b1e28\",\"tab.unfocusedInactiveForeground\":\"#a6accd80\",\"tab.unfocusedInactiveModifiedBorder\":\"#ADD7FF40\",\"terminal.ansiBlack\":\"#1b1e28\",\"terminal.ansiBlue\":\"#89ddff\",\"terminal.ansiBrightBlack\":\"#a6accd\",\"terminal.ansiBrightBlue\":\"#ADD7FF\",\"terminal.ansiBrightCyan\":\"#ADD7FF\",\"terminal.ansiBrightGreen\":\"#5DE4c7\",\"terminal.ansiBrightMagenta\":\"#f087bd\",\"terminal.ansiBrightRed\":\"#d0679d\",\"terminal.ansiBrightWhite\":\"#ffffff\",\"terminal.ansiBrightYellow\":\"#fffac2\",\"terminal.ansiCyan\":\"#89ddff\",\"terminal.ansiGreen\":\"#5DE4c7\",\"terminal.ansiMagenta\":\"#f087bd\",\"terminal.ansiRed\":\"#d0679d\",\"terminal.ansiWhite\":\"#ffffff\",\"terminal.ansiYellow\":\"#fffac2\",\"terminal.border\":\"#00000000\",\"terminal.foreground\":\"#a6accd\",\"terminal.selectionBackground\":\"#717cb425\",\"terminalCommandDecoration.defaultBackground\":\"#767c9d\",\"terminalCommandDecoration.errorBackground\":\"#d0679d\",\"terminalCommandDecoration.successBackground\":\"#5DE4c7\",\"testing.iconErrored\":\"#d0679d\",\"testing.iconFailed\":\"#d0679d\",\"testing.iconPassed\":\"#5DE4c7\",\"testing.iconQueued\":\"#fffac2\",\"testing.iconSkipped\":\"#7390AA\",\"testing.iconUnset\":\"#7390AA\",\"testing.message.error.decorationForeground\":\"#d0679d\",\"testing.message.error.lineBackground\":\"#d0679d33\",\"testing.message.hint.decorationForeground\":\"#7390AAb3\",\"testing.message.info.decorationForeground\":\"#ADD7FF\",\"testing.message.info.lineBackground\":\"#89ddff33\",\"testing.message.warning.decorationForeground\":\"#fffac2\",\"testing.message.warning.lineBackground\":\"#fffac233\",\"testing.peekBorder\":\"#d0679d\",\"testing.runAction\":\"#5DE4c7\",\"textBlockQuote.background\":\"#7390AA1a\",\"textBlockQuote.border\":\"#89ddff80\",\"textCodeBlock.background\":\"#00000050\",\"textLink.activeForeground\":\"#ADD7FF\",\"textLink.foreground\":\"#ADD7FF\",\"textPreformat.foreground\":\"#e4f0fb\",\"textSeparator.foreground\":\"#ffffff2e\",\"titleBar.activeBackground\":\"#1b1e28\",\"titleBar.activeForeground\":\"#a6accd\",\"titleBar.inactiveBackground\":\"#1b1e28\",\"titleBar.inactiveForeground\":\"#767c9d\",\"tree.indentGuidesStroke\":\"#303340\",\"tree.tableColumnsBorder\":\"#a6accd20\",\"welcomePage.progress.background\":\"#ffffff05\",\"welcomePage.progress.foreground\":\"#5fb3a1\",\"welcomePage.tileBackground\":\"#1b1e28\",\"welcomePage.tileHoverBackground\":\"#303340\",\"widget.shadow\":\"#00000030\"},\"displayName\":\"Poimandres\",\"name\":\"poimandres\",\"tokenColors\":[{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#767c9dB0\"}},{\"scope\":\"meta.parameters comment.block\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#a6accd\"}},{\"scope\":[\"variable.other.constant.object\",\"variable.other.readwrite.alias\",\"meta.import variable.other.readwrite\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"variable.other\",\"support.type.object\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"variable.other.object.property\",\"variable.other.property\",\"support.variable.property\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"entity.name.function.method\",\"string.unquoted\",\"meta.object.member\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"variable - meta.import\",\"constant.other.placeholder\",\"meta.object-literal.key-meta.object.member\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"keyword.control.flow\"],\"settings\":{\"foreground\":\"#5DE4c7c0\"}},{\"scope\":[\"keyword.operator.new\",\"keyword.control.new\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"variable.language.this\",\"storage.modifier.async\",\"storage.modifier\",\"variable.language.super\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"support.class.error\",\"keyword.control.trycatch\",\"keyword.operator.expression.delete\",\"keyword.operator.expression.void\",\"keyword.operator.void\",\"keyword.operator.delete\",\"constant.language.null\",\"constant.language.boolean.false\",\"constant.language.undefined\"],\"settings\":{\"foreground\":\"#d0679d\"}},{\"scope\":[\"variable.parameter\",\"variable.other.readwrite.js\",\"meta.definition.variable variable.other.constant\",\"meta.definition.variable variable.other.readwrite\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"constant.other.color\"],\"settings\":{\"foreground\":\"#ffffff\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#d0679d\"}},{\"scope\":[\"invalid.deprecated\"],\"settings\":{\"foreground\":\"#d0679d\"}},{\"scope\":[\"keyword.control\",\"keyword\"],\"settings\":{\"foreground\":\"#a6accd\"}},{\"scope\":[\"keyword.operator\",\"storage.type\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"keyword.control.module\",\"keyword.control.import\",\"keyword.control.export\",\"keyword.control.default\",\"meta.import\",\"meta.export\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"Keyword\",\"Storage\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"keyword-meta.export\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"meta.brace\",\"punctuation\",\"keyword.operator.existential\"],\"settings\":{\"foreground\":\"#a6accd\"}},{\"scope\":[\"constant.other.color\",\"meta.tag\",\"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\",\"meta.objectliteral\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"support.class.component\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"entity.name.tag\",\"entity.name.tag\",\"meta.tag.sgml\",\"markup.deleted.git_gutter\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":\"variable.function, source meta.function-call entity.name.function, source meta.function-call entity.name.function, source meta.method-call entity.name.function, meta.class meta.group.braces.curly meta.function-call variable.function, meta.class meta.field.declaration meta.function-call entity.name.function, variable.function.constructor, meta.block meta.var.expr meta.function-call entity.name.function, support.function.console, meta.function-call support.function, meta.property.class variable.other.class, punctuation.definition.entity.css\",\"settings\":{\"foreground\":\"#e4f0fbd0\"}},{\"scope\":\"entity.name.function, meta.class entity.name.class, meta.class entity.name.type.class, meta.class meta.function-call variable.function, keyword.other.important\",\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"source.cpp meta.block variable.other\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"support.other.variable\",\"string.other.link\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"constant.numeric\",\"support.constant\",\"constant.character\",\"constant.escape\",\"keyword.other.unit\",\"keyword.other\",\"string\",\"constant.language\",\"constant.other.symbol\",\"constant.other.key\",\"markup.heading\",\"markup.inserted.git_gutter\",\"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js\",\"text.html.derivative\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"entity.other.inherited-class\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"meta.type.declaration\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"entity.name.type.alias\"],\"settings\":{\"foreground\":\"#a6accd\"}},{\"scope\":[\"keyword.control.as\",\"entity.name.type\",\"support.type\"],\"settings\":{\"foreground\":\"#a6accdC0\"}},{\"scope\":[\"entity.name\",\"support.orther.namespace.use.php\",\"meta.use.php\",\"support.other.namespace.php\",\"markup.changed.git_gutter\",\"support.type.sys-types\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"support.class\",\"support.constant\",\"variable.other.constant.object\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"source.css support.type.property-name\",\"source.sass support.type.property-name\",\"source.scss support.type.property-name\",\"source.less support.type.property-name\",\"source.stylus support.type.property-name\",\"source.postcss support.type.property-name\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"entity.name.module.js\",\"variable.import.parameter.js\",\"variable.other.class.js\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"entity.name.method.js\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#91B4D5\"}},{\"scope\":[\"meta.class-method.js entity.name.function.js\",\"variable.function.constructor\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"entity.other.attribute-name\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#91B4D5\"}},{\"scope\":[\"text.html.basic entity.other.attribute-name.html\",\"text.html.basic entity.other.attribute-name\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#5fb3a1\"}},{\"scope\":[\"entity.other.attribute-name.class\"],\"settings\":{\"foreground\":\"#5fb3a1\"}},{\"scope\":[\"source.sass keyword.control\"],\"settings\":{\"foreground\":\"#42675A\"}},{\"scope\":[\"markup.inserted\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"markup.deleted\"],\"settings\":{\"foreground\":\"#506477\"}},{\"scope\":[\"markup.changed\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"string.regexp\"],\"settings\":{\"foreground\":\"#5fb3a1\"}},{\"scope\":[\"constant.character.escape\"],\"settings\":{\"foreground\":\"#5fb3a1\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"tag.decorator.js entity.name.tag.js\",\"tag.decorator.js punctuation.definition.tag.js\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#42675A\"}},{\"scope\":[\"source.js constant.other.object.key.js string.unquoted.label.js\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#5fb3a1\"}},{\"scope\":[\"source.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"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\":\"#91B4D5\"}},{\"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\":\"#7390AA\"}},{\"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\":\"#e4f0fb\"}},{\"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\":\"#ADD7FF\"}},{\"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\":\"#91B4D5\"}},{\"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\":\"#7390AA\"}},{\"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\":\"#e4f0fb\"}},{\"scope\":[\"text.html.markdown\",\"punctuation.definition.list_item.markdown\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"markdown.heading\",\"markup.heading | markup.heading entity.name\",\"markup.heading.markdown punctuation.definition.heading.markdown\"],\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"markup.italic\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#7390AA\"}},{\"scope\":[\"markup.bold\",\"markup.bold string\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7390AA\"}},{\"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\":\"#7390AA\"}},{\"scope\":[\"markup.underline\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#7390AA\"}},{\"scope\":[\"markup.strike\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"markup.quote punctuation.definition.blockquote.markdown\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"markup.quote\"],\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"string.other.link.title.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"constant.other.reference.link.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"markup.raw.block\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\"],\"settings\":{\"foreground\":\"#50647750\"}},{\"scope\":[\"punctuation.definition.fenced.markdown\"],\"settings\":{\"foreground\":\"#50647750\"}},{\"scope\":[\"markup.raw.block.fenced.markdown\",\"variable.language.fenced.markdown\",\"punctuation.section.class.end\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"variable.language.fenced.markdown\"],\"settings\":{\"foreground\":\"#91B4D5\"}},{\"scope\":[\"meta.separator\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#7390AA\"}},{\"scope\":[\"markup.table\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":\"token.info-token\",\"settings\":{\"foreground\":\"#89ddff\"}},{\"scope\":\"token.warn-token\",\"settings\":{\"foreground\":\"#fffac2\"}},{\"scope\":\"token.error-token\",\"settings\":{\"foreground\":\"#d0679d\"}},{\"scope\":\"token.debug-token\",\"settings\":{\"foreground\":\"#e4f0fb\"}},{\"scope\":[\"entity.name.section.markdown\",\"markup.heading.setext.1.markdown\",\"markup.heading.setext.2.markdown\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#e4f0fb\"}},{\"scope\":\"meta.paragraph.markdown\",\"settings\":{\"foreground\":\"#e4f0fbd0\"}},{\"scope\":[\"punctuation.definition.from-file.diff\",\"meta.diff.header.from-file\"],\"settings\":{\"foreground\":\"#506477\"}},{\"scope\":\"markup.inline.raw.string.markdown\",\"settings\":{\"foreground\":\"#7390AA\"}},{\"scope\":\"meta.separator.markdown\",\"settings\":{\"foreground\":\"#767c9d\"}},{\"scope\":\"markup.bold.markdown\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"markup.italic.markdown\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":[\"beginning.punctuation.definition.list.markdown\",\"punctuation.definition.list.begin.markdown\",\"markup.list.unnumbered.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"string.other.link.description.title.markdown punctuation.definition.string.markdown\",\"meta.link.inline.markdown string.other.link.description.title.markdown\",\"string.other.link.description.title.markdown punctuation.definition.string.begin.markdown\",\"string.other.link.description.title.markdown punctuation.definition.string.end.markdown\",\"meta.image.inline.markdown string.other.link.description.title.markdown\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"meta.link.inline.markdown string.other.link.title.markdown\",\"meta.link.reference.markdown string.other.link.title.markdown\",\"meta.link.reference.def.markdown markup.underline.link.markdown\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"markup.underline.link.markdown\",\"string.other.link.description.title.markdown\"],\"settings\":{\"foreground\":\"#5DE4c7\"}},{\"scope\":[\"fenced_code.block.language\",\"markup.inline.raw.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"punctuation.definition.markdown\",\"punctuation.definition.raw.markdown\",\"punctuation.definition.heading.markdown\",\"punctuation.definition.bold.markdown\",\"punctuation.definition.italic.markdown\"],\"settings\":{\"foreground\":\"#ADD7FF\"}},{\"scope\":[\"source.ignore\",\"log.error\",\"log.exception\"],\"settings\":{\"foreground\":\"#d0679d\"}},{\"scope\":[\"log.verbose\"],\"settings\":{\"foreground\":\"#a6accd\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { poimandres_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var red_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#580000\",\"badge.background\":\"#cc3333\",\"button.background\":\"#833\",\"debugToolBar.background\":\"#660000\",\"dropdown.background\":\"#580000\",\"editor.background\":\"#390000\",\"editor.foreground\":\"#F8F8F8\",\"editor.hoverHighlightBackground\":\"#ff000044\",\"editor.lineHighlightBackground\":\"#ff000033\",\"editor.selectionBackground\":\"#750000\",\"editor.selectionHighlightBackground\":\"#f5500039\",\"editorCursor.foreground\":\"#970000\",\"editorGroup.border\":\"#ff666633\",\"editorGroupHeader.tabsBackground\":\"#330000\",\"editorHoverWidget.background\":\"#300000\",\"editorLineNumber.activeForeground\":\"#ffbbbb88\",\"editorLineNumber.foreground\":\"#ff777788\",\"editorLink.activeForeground\":\"#FFD0AA\",\"editorSuggestWidget.background\":\"#300000\",\"editorSuggestWidget.border\":\"#220000\",\"editorWhitespace.foreground\":\"#c10000\",\"editorWidget.background\":\"#300000\",\"errorForeground\":\"#ffeaea\",\"extensionButton.prominentBackground\":\"#cc3333\",\"extensionButton.prominentHoverBackground\":\"#cc333388\",\"focusBorder\":\"#ff6666aa\",\"input.background\":\"#580000\",\"inputOption.activeBorder\":\"#cc0000\",\"inputValidation.infoBackground\":\"#550000\",\"inputValidation.infoBorder\":\"#DB7E58\",\"list.activeSelectionBackground\":\"#880000\",\"list.dropBackground\":\"#662222\",\"list.highlightForeground\":\"#ff4444\",\"list.hoverBackground\":\"#800000\",\"list.inactiveSelectionBackground\":\"#770000\",\"minimap.selectionHighlight\":\"#750000\",\"peekView.border\":\"#ff000044\",\"peekViewEditor.background\":\"#300000\",\"peekViewResult.background\":\"#400000\",\"peekViewTitle.background\":\"#550000\",\"pickerGroup.border\":\"#ff000033\",\"pickerGroup.foreground\":\"#cc9999\",\"ports.iconRunningProcessForeground\":\"#DB7E58\",\"progressBar.background\":\"#cc3333\",\"quickInputList.focusBackground\":\"#660000\",\"selection.background\":\"#ff777788\",\"sideBar.background\":\"#330000\",\"statusBar.background\":\"#700000\",\"statusBar.noFolderBackground\":\"#700000\",\"statusBarItem.remoteBackground\":\"#c33\",\"tab.activeBackground\":\"#490000\",\"tab.inactiveBackground\":\"#300a0a\",\"tab.lastPinnedBorder\":\"#ff000044\",\"titleBar.activeBackground\":\"#770000\",\"titleBar.inactiveBackground\":\"#772222\"},\"displayName\":\"Red\",\"name\":\"red\",\"semanticHighlighting\":true,\"tokenColors\":[{\"settings\":{\"foreground\":\"#F8F8F8\"}},{\"scope\":[\"meta.embedded\",\"source.groovy.embedded\",\"string meta.image.inline.markdown\",\"variable.legacy.builtin.python\"],\"settings\":{\"foreground\":\"#F8F8F8\"}},{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#e7c0c0ff\"}},{\"scope\":\"constant\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#994646ff\"}},{\"scope\":\"keyword\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#f12727ff\"}},{\"scope\":\"entity\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#fec758ff\"}},{\"scope\":\"storage\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#ff6262ff\"}},{\"scope\":\"string\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#cd8d8dff\"}},{\"scope\":\"support\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#9df39fff\"}},{\"scope\":\"variable\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#fb9a4bff\"}},{\"scope\":\"invalid\",\"settings\":{\"foreground\":\"#ffffffff\"}},{\"scope\":[\"entity.other.inherited-class\",\"punctuation.separator.namespace.ruby\"],\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#aa5507ff\"}},{\"scope\":\"constant.character\",\"settings\":{\"foreground\":\"#ec0d1e\"}},{\"scope\":[\"string constant\",\"constant.character.escape\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ffe862ff\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#ffb454ff\"}},{\"scope\":\"string variable\",\"settings\":{\"foreground\":\"#edef7dff\"}},{\"scope\":\"support.function\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ffb454ff\"}},{\"scope\":[\"support.constant\",\"support.variable\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#eb939aff\"}},{\"scope\":[\"declaration.sgml.html declaration.doctype\",\"declaration.sgml.html declaration.doctype entity\",\"declaration.sgml.html declaration.doctype string\",\"declaration.xml-processing\",\"declaration.xml-processing entity\",\"declaration.xml-processing string\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#73817dff\"}},{\"scope\":[\"declaration.tag\",\"declaration.tag entity\",\"meta.tag\",\"meta.tag entity\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ec0d1eff\"}},{\"scope\":\"meta.selector.css entity.name.tag\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#aa5507ff\"}},{\"scope\":\"meta.selector.css entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#fec758ff\"}},{\"scope\":\"meta.selector.css entity.other.attribute-name.class\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#41a83eff\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#96dd3bff\"}},{\"scope\":[\"meta.property-group support.constant.property-value.css\",\"meta.property-value support.constant.property-value.css\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#ffe862ff\"}},{\"scope\":[\"meta.property-value support.constant.named-color.css\",\"meta.property-value constant\"],\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ffe862ff\"}},{\"scope\":\"meta.preprocessor.at-rule keyword.control.at-rule\",\"settings\":{\"foreground\":\"#fd6209ff\"}},{\"scope\":\"meta.constructor.argument.css\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#ec9799ff\"}},{\"scope\":[\"meta.diff\",\"meta.diff.header\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#f8f8f8ff\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#ec9799ff\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#f8f8f8ff\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#41a83eff\"}},{\"scope\":\"markup.quote\",\"settings\":{\"foreground\":\"#f12727ff\"}},{\"scope\":\"markup.list\",\"settings\":{\"foreground\":\"#ff6262ff\"}},{\"scope\":[\"markup.bold\",\"markup.italic\"],\"settings\":{\"foreground\":\"#fb9a4bff\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.strikethrough\",\"settings\":{\"fontStyle\":\"strikethrough\"}},{\"scope\":\"markup.inline.raw\",\"settings\":{\"fontStyle\":\"\",\"foreground\":\"#cd8d8dff\"}},{\"scope\":[\"markup.heading\",\"markup.heading.setext\",\"punctuation.definition.heading\",\"entity.name.section\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fec758ff\"}},{\"scope\":[\"punctuation.definition.template-expression.begin\",\"punctuation.definition.template-expression.end\",\"punctuation.section.embedded\",\".format.placeholder\"],\"settings\":{\"foreground\":\"#ec0d1e\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { red_default as default };
|