@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 gruvbox_dark_hard_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#1d2021\",\"activityBar.border\":\"#3c3836\",\"activityBar.foreground\":\"#ebdbb2\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#1d2021\",\"activityBarTop.foreground\":\"#ebdbb2\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#ebdbb2\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#1d2021\",\"diffEditor.insertedTextBackground\":\"#b8bb2630\",\"diffEditor.removedTextBackground\":\"#fb493430\",\"dropdown.background\":\"#1d2021\",\"dropdown.border\":\"#3c3836\",\"dropdown.foreground\":\"#ebdbb2\",\"editor.background\":\"#1d2021\",\"editor.findMatchBackground\":\"#83a59870\",\"editor.findMatchHighlightBackground\":\"#fe801930\",\"editor.findRangeHighlightBackground\":\"#83a59870\",\"editor.foreground\":\"#ebdbb2\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#3c383660\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#fabd2f40\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#a8998490\",\"editorCursor.foreground\":\"#ebdbb2\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#665c5460\",\"editorGroup.border\":\"#3c3836\",\"editorGroup.dropBackground\":\"#3c383660\",\"editorGroupHeader.noTabsBackground\":\"#1d2021\",\"editorGroupHeader.tabsBackground\":\"#1d2021\",\"editorGroupHeader.tabsBorder\":\"#3c3836\",\"editorGutter.addedBackground\":\"#b8bb26\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#fb4934\",\"editorGutter.modifiedBackground\":\"#83a598\",\"editorHoverWidget.background\":\"#1d2021\",\"editorHoverWidget.border\":\"#3c3836\",\"editorIndentGuide.activeBackground\":\"#665c54\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#665c54\",\"editorLink.activeForeground\":\"#ebdbb2\",\"editorOverviewRuler.addedForeground\":\"#83a598\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#83a598\",\"editorOverviewRuler.errorForeground\":\"#fb4934\",\"editorOverviewRuler.findMatchForeground\":\"#bdae93\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#d3869b\",\"editorOverviewRuler.modifiedForeground\":\"#83a598\",\"editorOverviewRuler.rangeHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.selectionHighlightForeground\":\"#665c54\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#665c54\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#665c54\",\"editorRuler.foreground\":\"#a8998440\",\"editorStickyScroll.shadow\":\"#50494599\",\"editorStickyScrollHover.background\":\"#3c383660\",\"editorSuggestWidget.background\":\"#1d2021\",\"editorSuggestWidget.border\":\"#3c3836\",\"editorSuggestWidget.foreground\":\"#ebdbb2\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#3c383660\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#a8998420\",\"editorWidget.background\":\"#1d2021\",\"editorWidget.border\":\"#3c3836\",\"errorForeground\":\"#fb4934\",\"extensionButton.prominentBackground\":\"#b8bb2680\",\"extensionButton.prominentHoverBackground\":\"#b8bb2630\",\"focusBorder\":\"#3c3836\",\"foreground\":\"#ebdbb2\",\"gitDecoration.addedResourceForeground\":\"#ebdbb2\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#7c6f64\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#7c6f64\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#83a598\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#d3869b\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#8ec07c\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#fabd2f\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#b8bb26\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#b8bb26\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#b8bb26\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#8ec07c\",\"gitlens.gutterBackgroundColor\":\"#3c3836\",\"gitlens.gutterForegroundColor\":\"#ebdbb2\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#fabd2f\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#fb4934\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#b8bb26\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#3c3836\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#1d2021a0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#fe8019\",\"icon.foreground\":\"#ebdbb2\",\"input.background\":\"#1d2021\",\"input.border\":\"#3c3836\",\"input.foreground\":\"#ebdbb2\",\"input.placeholderForeground\":\"#ebdbb260\",\"inputOption.activeBorder\":\"#ebdbb260\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#fb4934\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#83a598\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#fabd2f\",\"list.activeSelectionBackground\":\"#3c383680\",\"list.activeSelectionForeground\":\"#8ec07c\",\"list.dropBackground\":\"#3c3836\",\"list.focusBackground\":\"#3c3836\",\"list.focusForeground\":\"#ebdbb2\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#3c383680\",\"list.hoverForeground\":\"#d5c4a1\",\"list.inactiveSelectionBackground\":\"#3c383680\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#3c3836\",\"menu.separatorBackground\":\"#3c3836\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#504945\",\"notebook.cellEditorBackground\":\"#3c3836\",\"notebook.focusedCellBorder\":\"#a89984\",\"notebook.focusedEditorBorder\":\"#504945\",\"panel.border\":\"#3c3836\",\"panelTitle.activeForeground\":\"#ebdbb2\",\"peekView.border\":\"#3c3836\",\"peekViewEditor.background\":\"#3c383670\",\"peekViewEditor.matchHighlightBackground\":\"#504945\",\"peekViewEditorGutter.background\":\"#3c383670\",\"peekViewResult.background\":\"#3c383670\",\"peekViewResult.fileForeground\":\"#ebdbb2\",\"peekViewResult.lineForeground\":\"#ebdbb2\",\"peekViewResult.matchHighlightBackground\":\"#504945\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#ebdbb2\",\"peekViewTitle.background\":\"#3c383670\",\"peekViewTitleDescription.foreground\":\"#bdae93\",\"peekViewTitleLabel.foreground\":\"#ebdbb2\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#1d2021\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#50494599\",\"scrollbarSlider.hoverBackground\":\"#665c54\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#1d2021\",\"sideBar.border\":\"#3c3836\",\"sideBar.foreground\":\"#d5c4a1\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#ebdbb2\",\"sideBarTitle.foreground\":\"#ebdbb2\",\"statusBar.background\":\"#1d2021\",\"statusBar.border\":\"#3c3836\",\"statusBar.debuggingBackground\":\"#fe8019\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#1d2021\",\"statusBar.foreground\":\"#ebdbb2\",\"statusBar.noFolderBackground\":\"#1d2021\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#3c3836\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#ebdbb2\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#1d2021\",\"tab.inactiveForeground\":\"#a89984\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#a89984\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#3c3836\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#83a598\",\"terminal.ansiBrightCyan\":\"#8ec07c\",\"terminal.ansiBrightGreen\":\"#b8bb26\",\"terminal.ansiBrightMagenta\":\"#d3869b\",\"terminal.ansiBrightRed\":\"#fb4934\",\"terminal.ansiBrightWhite\":\"#ebdbb2\",\"terminal.ansiBrightYellow\":\"#fabd2f\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#a89984\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#1d2021\",\"terminal.foreground\":\"#ebdbb2\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#83a598\",\"titleBar.activeBackground\":\"#1d2021\",\"titleBar.activeForeground\":\"#ebdbb2\",\"titleBar.inactiveBackground\":\"#1d2021\",\"widget.border\":\"#3c3836\",\"widget.shadow\":\"#1d202130\"},\"displayName\":\"Gruvbox Dark Hard\",\"name\":\"gruvbox-dark-hard\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#fe8019\",\"constant.builtin\":\"#d3869b\",\"function\":\"#8ec07c\",\"function.builtin\":\"#fe8019\",\"method\":\"#8ec07c\",\"parameter\":\"#83a598\",\"property\":\"#83a598\",\"property:python\":\"#ebdbb2\",\"variable\":\"#ebdbb2\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#a89984\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fb4934\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#8ec07c\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { gruvbox_dark_hard_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var gruvbox_dark_medium_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#282828\",\"activityBar.border\":\"#3c3836\",\"activityBar.foreground\":\"#ebdbb2\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#282828\",\"activityBarTop.foreground\":\"#ebdbb2\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#ebdbb2\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#282828\",\"diffEditor.insertedTextBackground\":\"#b8bb2630\",\"diffEditor.removedTextBackground\":\"#fb493430\",\"dropdown.background\":\"#282828\",\"dropdown.border\":\"#3c3836\",\"dropdown.foreground\":\"#ebdbb2\",\"editor.background\":\"#282828\",\"editor.findMatchBackground\":\"#83a59870\",\"editor.findMatchHighlightBackground\":\"#fe801930\",\"editor.findRangeHighlightBackground\":\"#83a59870\",\"editor.foreground\":\"#ebdbb2\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#3c383660\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#fabd2f40\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#a8998490\",\"editorCursor.foreground\":\"#ebdbb2\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#665c5460\",\"editorGroup.border\":\"#3c3836\",\"editorGroup.dropBackground\":\"#3c383660\",\"editorGroupHeader.noTabsBackground\":\"#282828\",\"editorGroupHeader.tabsBackground\":\"#282828\",\"editorGroupHeader.tabsBorder\":\"#3c3836\",\"editorGutter.addedBackground\":\"#b8bb26\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#fb4934\",\"editorGutter.modifiedBackground\":\"#83a598\",\"editorHoverWidget.background\":\"#282828\",\"editorHoverWidget.border\":\"#3c3836\",\"editorIndentGuide.activeBackground\":\"#665c54\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#665c54\",\"editorLink.activeForeground\":\"#ebdbb2\",\"editorOverviewRuler.addedForeground\":\"#83a598\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#83a598\",\"editorOverviewRuler.errorForeground\":\"#fb4934\",\"editorOverviewRuler.findMatchForeground\":\"#bdae93\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#d3869b\",\"editorOverviewRuler.modifiedForeground\":\"#83a598\",\"editorOverviewRuler.rangeHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.selectionHighlightForeground\":\"#665c54\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#665c54\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#665c54\",\"editorRuler.foreground\":\"#a8998440\",\"editorStickyScroll.shadow\":\"#50494599\",\"editorStickyScrollHover.background\":\"#3c383660\",\"editorSuggestWidget.background\":\"#282828\",\"editorSuggestWidget.border\":\"#3c3836\",\"editorSuggestWidget.foreground\":\"#ebdbb2\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#3c383660\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#a8998420\",\"editorWidget.background\":\"#282828\",\"editorWidget.border\":\"#3c3836\",\"errorForeground\":\"#fb4934\",\"extensionButton.prominentBackground\":\"#b8bb2680\",\"extensionButton.prominentHoverBackground\":\"#b8bb2630\",\"focusBorder\":\"#3c3836\",\"foreground\":\"#ebdbb2\",\"gitDecoration.addedResourceForeground\":\"#ebdbb2\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#7c6f64\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#7c6f64\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#83a598\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#d3869b\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#8ec07c\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#fabd2f\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#b8bb26\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#b8bb26\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#b8bb26\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#8ec07c\",\"gitlens.gutterBackgroundColor\":\"#3c3836\",\"gitlens.gutterForegroundColor\":\"#ebdbb2\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#fabd2f\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#fb4934\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#b8bb26\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#3c3836\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#282828a0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#fe8019\",\"icon.foreground\":\"#ebdbb2\",\"input.background\":\"#282828\",\"input.border\":\"#3c3836\",\"input.foreground\":\"#ebdbb2\",\"input.placeholderForeground\":\"#ebdbb260\",\"inputOption.activeBorder\":\"#ebdbb260\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#fb4934\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#83a598\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#fabd2f\",\"list.activeSelectionBackground\":\"#3c383680\",\"list.activeSelectionForeground\":\"#8ec07c\",\"list.dropBackground\":\"#3c3836\",\"list.focusBackground\":\"#3c3836\",\"list.focusForeground\":\"#ebdbb2\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#3c383680\",\"list.hoverForeground\":\"#d5c4a1\",\"list.inactiveSelectionBackground\":\"#3c383680\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#3c3836\",\"menu.separatorBackground\":\"#3c3836\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#504945\",\"notebook.cellEditorBackground\":\"#3c3836\",\"notebook.focusedCellBorder\":\"#a89984\",\"notebook.focusedEditorBorder\":\"#504945\",\"panel.border\":\"#3c3836\",\"panelTitle.activeForeground\":\"#ebdbb2\",\"peekView.border\":\"#3c3836\",\"peekViewEditor.background\":\"#3c383670\",\"peekViewEditor.matchHighlightBackground\":\"#504945\",\"peekViewEditorGutter.background\":\"#3c383670\",\"peekViewResult.background\":\"#3c383670\",\"peekViewResult.fileForeground\":\"#ebdbb2\",\"peekViewResult.lineForeground\":\"#ebdbb2\",\"peekViewResult.matchHighlightBackground\":\"#504945\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#ebdbb2\",\"peekViewTitle.background\":\"#3c383670\",\"peekViewTitleDescription.foreground\":\"#bdae93\",\"peekViewTitleLabel.foreground\":\"#ebdbb2\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#282828\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#50494599\",\"scrollbarSlider.hoverBackground\":\"#665c54\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#282828\",\"sideBar.border\":\"#3c3836\",\"sideBar.foreground\":\"#d5c4a1\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#ebdbb2\",\"sideBarTitle.foreground\":\"#ebdbb2\",\"statusBar.background\":\"#282828\",\"statusBar.border\":\"#3c3836\",\"statusBar.debuggingBackground\":\"#fe8019\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#282828\",\"statusBar.foreground\":\"#ebdbb2\",\"statusBar.noFolderBackground\":\"#282828\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#3c3836\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#ebdbb2\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#282828\",\"tab.inactiveForeground\":\"#a89984\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#a89984\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#3c3836\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#83a598\",\"terminal.ansiBrightCyan\":\"#8ec07c\",\"terminal.ansiBrightGreen\":\"#b8bb26\",\"terminal.ansiBrightMagenta\":\"#d3869b\",\"terminal.ansiBrightRed\":\"#fb4934\",\"terminal.ansiBrightWhite\":\"#ebdbb2\",\"terminal.ansiBrightYellow\":\"#fabd2f\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#a89984\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#282828\",\"terminal.foreground\":\"#ebdbb2\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#83a598\",\"titleBar.activeBackground\":\"#282828\",\"titleBar.activeForeground\":\"#ebdbb2\",\"titleBar.inactiveBackground\":\"#282828\",\"widget.border\":\"#3c3836\",\"widget.shadow\":\"#28282830\"},\"displayName\":\"Gruvbox Dark Medium\",\"name\":\"gruvbox-dark-medium\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#fe8019\",\"constant.builtin\":\"#d3869b\",\"function\":\"#8ec07c\",\"function.builtin\":\"#fe8019\",\"method\":\"#8ec07c\",\"parameter\":\"#83a598\",\"property\":\"#83a598\",\"property:python\":\"#ebdbb2\",\"variable\":\"#ebdbb2\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#a89984\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fb4934\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#8ec07c\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { gruvbox_dark_medium_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var gruvbox_dark_soft_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#32302f\",\"activityBar.border\":\"#3c3836\",\"activityBar.foreground\":\"#ebdbb2\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#32302f\",\"activityBarTop.foreground\":\"#ebdbb2\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#ebdbb2\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#32302f\",\"diffEditor.insertedTextBackground\":\"#b8bb2630\",\"diffEditor.removedTextBackground\":\"#fb493430\",\"dropdown.background\":\"#32302f\",\"dropdown.border\":\"#3c3836\",\"dropdown.foreground\":\"#ebdbb2\",\"editor.background\":\"#32302f\",\"editor.findMatchBackground\":\"#83a59870\",\"editor.findMatchHighlightBackground\":\"#fe801930\",\"editor.findRangeHighlightBackground\":\"#83a59870\",\"editor.foreground\":\"#ebdbb2\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#3c383660\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#fabd2f40\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#a8998490\",\"editorCursor.foreground\":\"#ebdbb2\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#665c5460\",\"editorGroup.border\":\"#3c3836\",\"editorGroup.dropBackground\":\"#3c383660\",\"editorGroupHeader.noTabsBackground\":\"#32302f\",\"editorGroupHeader.tabsBackground\":\"#32302f\",\"editorGroupHeader.tabsBorder\":\"#3c3836\",\"editorGutter.addedBackground\":\"#b8bb26\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#fb4934\",\"editorGutter.modifiedBackground\":\"#83a598\",\"editorHoverWidget.background\":\"#32302f\",\"editorHoverWidget.border\":\"#3c3836\",\"editorIndentGuide.activeBackground\":\"#665c54\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#665c54\",\"editorLink.activeForeground\":\"#ebdbb2\",\"editorOverviewRuler.addedForeground\":\"#83a598\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#83a598\",\"editorOverviewRuler.errorForeground\":\"#fb4934\",\"editorOverviewRuler.findMatchForeground\":\"#bdae93\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#d3869b\",\"editorOverviewRuler.modifiedForeground\":\"#83a598\",\"editorOverviewRuler.rangeHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.selectionHighlightForeground\":\"#665c54\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#665c54\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#665c54\",\"editorRuler.foreground\":\"#a8998440\",\"editorStickyScroll.shadow\":\"#50494599\",\"editorStickyScrollHover.background\":\"#3c383660\",\"editorSuggestWidget.background\":\"#32302f\",\"editorSuggestWidget.border\":\"#3c3836\",\"editorSuggestWidget.foreground\":\"#ebdbb2\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#3c383660\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#a8998420\",\"editorWidget.background\":\"#32302f\",\"editorWidget.border\":\"#3c3836\",\"errorForeground\":\"#fb4934\",\"extensionButton.prominentBackground\":\"#b8bb2680\",\"extensionButton.prominentHoverBackground\":\"#b8bb2630\",\"focusBorder\":\"#3c3836\",\"foreground\":\"#ebdbb2\",\"gitDecoration.addedResourceForeground\":\"#ebdbb2\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#7c6f64\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#7c6f64\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#83a598\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#d3869b\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#8ec07c\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#fabd2f\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#b8bb26\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#b8bb26\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#b8bb26\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#83a598\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#fe8019\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#7c6f64\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#8ec07c\",\"gitlens.gutterBackgroundColor\":\"#3c3836\",\"gitlens.gutterForegroundColor\":\"#ebdbb2\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#fabd2f\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#fb4934\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#b8bb26\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#3c3836\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#32302fa0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#fe8019\",\"icon.foreground\":\"#ebdbb2\",\"input.background\":\"#32302f\",\"input.border\":\"#3c3836\",\"input.foreground\":\"#ebdbb2\",\"input.placeholderForeground\":\"#ebdbb260\",\"inputOption.activeBorder\":\"#ebdbb260\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#fb4934\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#83a598\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#fabd2f\",\"list.activeSelectionBackground\":\"#3c383680\",\"list.activeSelectionForeground\":\"#8ec07c\",\"list.dropBackground\":\"#3c3836\",\"list.focusBackground\":\"#3c3836\",\"list.focusForeground\":\"#ebdbb2\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#3c383680\",\"list.hoverForeground\":\"#d5c4a1\",\"list.inactiveSelectionBackground\":\"#3c383680\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#3c3836\",\"menu.separatorBackground\":\"#3c3836\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#504945\",\"notebook.cellEditorBackground\":\"#3c3836\",\"notebook.focusedCellBorder\":\"#a89984\",\"notebook.focusedEditorBorder\":\"#504945\",\"panel.border\":\"#3c3836\",\"panelTitle.activeForeground\":\"#ebdbb2\",\"peekView.border\":\"#3c3836\",\"peekViewEditor.background\":\"#3c383670\",\"peekViewEditor.matchHighlightBackground\":\"#504945\",\"peekViewEditorGutter.background\":\"#3c383670\",\"peekViewResult.background\":\"#3c383670\",\"peekViewResult.fileForeground\":\"#ebdbb2\",\"peekViewResult.lineForeground\":\"#ebdbb2\",\"peekViewResult.matchHighlightBackground\":\"#504945\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#ebdbb2\",\"peekViewTitle.background\":\"#3c383670\",\"peekViewTitleDescription.foreground\":\"#bdae93\",\"peekViewTitleLabel.foreground\":\"#ebdbb2\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#32302f\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#50494599\",\"scrollbarSlider.hoverBackground\":\"#665c54\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#32302f\",\"sideBar.border\":\"#3c3836\",\"sideBar.foreground\":\"#d5c4a1\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#ebdbb2\",\"sideBarTitle.foreground\":\"#ebdbb2\",\"statusBar.background\":\"#32302f\",\"statusBar.border\":\"#3c3836\",\"statusBar.debuggingBackground\":\"#fe8019\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#32302f\",\"statusBar.foreground\":\"#ebdbb2\",\"statusBar.noFolderBackground\":\"#32302f\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#3c3836\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#ebdbb2\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#32302f\",\"tab.inactiveForeground\":\"#a89984\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#a89984\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#3c3836\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#83a598\",\"terminal.ansiBrightCyan\":\"#8ec07c\",\"terminal.ansiBrightGreen\":\"#b8bb26\",\"terminal.ansiBrightMagenta\":\"#d3869b\",\"terminal.ansiBrightRed\":\"#fb4934\",\"terminal.ansiBrightWhite\":\"#ebdbb2\",\"terminal.ansiBrightYellow\":\"#fabd2f\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#a89984\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#32302f\",\"terminal.foreground\":\"#ebdbb2\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#83a598\",\"titleBar.activeBackground\":\"#32302f\",\"titleBar.activeForeground\":\"#ebdbb2\",\"titleBar.inactiveBackground\":\"#32302f\",\"widget.border\":\"#3c3836\",\"widget.shadow\":\"#32302f30\"},\"displayName\":\"Gruvbox Dark Soft\",\"name\":\"gruvbox-dark-soft\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#fe8019\",\"constant.builtin\":\"#d3869b\",\"function\":\"#8ec07c\",\"function.builtin\":\"#fe8019\",\"method\":\"#8ec07c\",\"parameter\":\"#83a598\",\"property\":\"#83a598\",\"property:python\":\"#ebdbb2\",\"variable\":\"#ebdbb2\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#a89984\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#d5c4a1\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fb4934\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fe8019\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#fabd2f\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b8bb26\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#83a598\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#d3869b\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#ebdbb2\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#b8bb26\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#8ec07c\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#83a598\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#fabd2f\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#bdae93\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#fb4934\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#fe8019\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#d3869b\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#8ec07c\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { gruvbox_dark_soft_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var gruvbox_light_hard_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#f9f5d7\",\"activityBar.border\":\"#ebdbb2\",\"activityBar.foreground\":\"#3c3836\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#f9f5d7\",\"activityBarTop.foreground\":\"#3c3836\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#3c3836\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#f9f5d7\",\"diffEditor.insertedTextBackground\":\"#79740e30\",\"diffEditor.removedTextBackground\":\"#9d000630\",\"dropdown.background\":\"#f9f5d7\",\"dropdown.border\":\"#ebdbb2\",\"dropdown.foreground\":\"#3c3836\",\"editor.background\":\"#f9f5d7\",\"editor.findMatchBackground\":\"#07667870\",\"editor.findMatchHighlightBackground\":\"#af3a0330\",\"editor.findRangeHighlightBackground\":\"#07667870\",\"editor.foreground\":\"#3c3836\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#ebdbb260\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#b5761440\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#7c6f6490\",\"editorCursor.foreground\":\"#3c3836\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#bdae9360\",\"editorGroup.border\":\"#ebdbb2\",\"editorGroup.dropBackground\":\"#ebdbb260\",\"editorGroupHeader.noTabsBackground\":\"#f9f5d7\",\"editorGroupHeader.tabsBackground\":\"#f9f5d7\",\"editorGroupHeader.tabsBorder\":\"#ebdbb2\",\"editorGutter.addedBackground\":\"#79740e\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#9d0006\",\"editorGutter.modifiedBackground\":\"#076678\",\"editorHoverWidget.background\":\"#f9f5d7\",\"editorHoverWidget.border\":\"#ebdbb2\",\"editorIndentGuide.activeBackground\":\"#bdae93\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#bdae93\",\"editorLink.activeForeground\":\"#3c3836\",\"editorOverviewRuler.addedForeground\":\"#076678\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#076678\",\"editorOverviewRuler.errorForeground\":\"#9d0006\",\"editorOverviewRuler.findMatchForeground\":\"#665c54\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#8f3f71\",\"editorOverviewRuler.modifiedForeground\":\"#076678\",\"editorOverviewRuler.rangeHighlightForeground\":\"#665c54\",\"editorOverviewRuler.selectionHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#bdae93\",\"editorRuler.foreground\":\"#7c6f6440\",\"editorStickyScroll.shadow\":\"#d5c4a199\",\"editorStickyScrollHover.background\":\"#ebdbb260\",\"editorSuggestWidget.background\":\"#f9f5d7\",\"editorSuggestWidget.border\":\"#ebdbb2\",\"editorSuggestWidget.foreground\":\"#3c3836\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#ebdbb260\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#7c6f6420\",\"editorWidget.background\":\"#f9f5d7\",\"editorWidget.border\":\"#ebdbb2\",\"errorForeground\":\"#9d0006\",\"extensionButton.prominentBackground\":\"#79740e80\",\"extensionButton.prominentHoverBackground\":\"#79740e30\",\"focusBorder\":\"#ebdbb2\",\"foreground\":\"#3c3836\",\"gitDecoration.addedResourceForeground\":\"#3c3836\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#a89984\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#a89984\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#076678\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#8f3f71\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#427b58\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#b57614\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#79740e\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#79740e\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#a89984\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#79740e\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#a89984\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#427b58\",\"gitlens.gutterBackgroundColor\":\"#ebdbb2\",\"gitlens.gutterForegroundColor\":\"#3c3836\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#b57614\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#9d0006\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#79740e\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#ebdbb2\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#f9f5d7a0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#af3a03\",\"icon.foreground\":\"#3c3836\",\"input.background\":\"#f9f5d7\",\"input.border\":\"#ebdbb2\",\"input.foreground\":\"#3c3836\",\"input.placeholderForeground\":\"#3c383660\",\"inputOption.activeBorder\":\"#3c383660\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#9d0006\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#076678\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#b57614\",\"list.activeSelectionBackground\":\"#ebdbb280\",\"list.activeSelectionForeground\":\"#427b58\",\"list.dropBackground\":\"#ebdbb2\",\"list.focusBackground\":\"#ebdbb2\",\"list.focusForeground\":\"#3c3836\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#ebdbb280\",\"list.hoverForeground\":\"#504945\",\"list.inactiveSelectionBackground\":\"#ebdbb280\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#ebdbb2\",\"menu.separatorBackground\":\"#ebdbb2\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#d5c4a1\",\"notebook.cellEditorBackground\":\"#ebdbb2\",\"notebook.focusedCellBorder\":\"#7c6f64\",\"notebook.focusedEditorBorder\":\"#d5c4a1\",\"panel.border\":\"#ebdbb2\",\"panelTitle.activeForeground\":\"#3c3836\",\"peekView.border\":\"#ebdbb2\",\"peekViewEditor.background\":\"#ebdbb270\",\"peekViewEditor.matchHighlightBackground\":\"#d5c4a1\",\"peekViewEditorGutter.background\":\"#ebdbb270\",\"peekViewResult.background\":\"#ebdbb270\",\"peekViewResult.fileForeground\":\"#3c3836\",\"peekViewResult.lineForeground\":\"#3c3836\",\"peekViewResult.matchHighlightBackground\":\"#d5c4a1\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#3c3836\",\"peekViewTitle.background\":\"#ebdbb270\",\"peekViewTitleDescription.foreground\":\"#665c54\",\"peekViewTitleLabel.foreground\":\"#3c3836\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#f9f5d7\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#d5c4a199\",\"scrollbarSlider.hoverBackground\":\"#bdae93\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#f9f5d7\",\"sideBar.border\":\"#ebdbb2\",\"sideBar.foreground\":\"#504945\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#3c3836\",\"sideBarTitle.foreground\":\"#3c3836\",\"statusBar.background\":\"#f9f5d7\",\"statusBar.border\":\"#ebdbb2\",\"statusBar.debuggingBackground\":\"#af3a03\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#f9f5d7\",\"statusBar.foreground\":\"#3c3836\",\"statusBar.noFolderBackground\":\"#f9f5d7\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#ebdbb2\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#3c3836\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#f9f5d7\",\"tab.inactiveForeground\":\"#7c6f64\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#7c6f64\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#ebdbb2\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#076678\",\"terminal.ansiBrightCyan\":\"#427b58\",\"terminal.ansiBrightGreen\":\"#79740e\",\"terminal.ansiBrightMagenta\":\"#8f3f71\",\"terminal.ansiBrightRed\":\"#9d0006\",\"terminal.ansiBrightWhite\":\"#3c3836\",\"terminal.ansiBrightYellow\":\"#b57614\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#7c6f64\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#f9f5d7\",\"terminal.foreground\":\"#3c3836\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#076678\",\"titleBar.activeBackground\":\"#f9f5d7\",\"titleBar.activeForeground\":\"#3c3836\",\"titleBar.inactiveBackground\":\"#f9f5d7\",\"widget.border\":\"#ebdbb2\",\"widget.shadow\":\"#f9f5d730\"},\"displayName\":\"Gruvbox Light Hard\",\"name\":\"gruvbox-light-hard\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#af3a03\",\"constant.builtin\":\"#8f3f71\",\"function\":\"#427b58\",\"function.builtin\":\"#af3a03\",\"method\":\"#427b58\",\"parameter\":\"#076678\",\"property\":\"#076678\",\"property:python\":\"#3c3836\",\"variable\":\"#3c3836\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#7c6f64\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9d0006\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#427b58\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#427b58\"}}],\"type\":\"light\"}"));
|
|
2
|
+
export { gruvbox_light_hard_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var gruvbox_light_medium_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#fbf1c7\",\"activityBar.border\":\"#ebdbb2\",\"activityBar.foreground\":\"#3c3836\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#fbf1c7\",\"activityBarTop.foreground\":\"#3c3836\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#3c3836\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#fbf1c7\",\"diffEditor.insertedTextBackground\":\"#79740e30\",\"diffEditor.removedTextBackground\":\"#9d000630\",\"dropdown.background\":\"#fbf1c7\",\"dropdown.border\":\"#ebdbb2\",\"dropdown.foreground\":\"#3c3836\",\"editor.background\":\"#fbf1c7\",\"editor.findMatchBackground\":\"#07667870\",\"editor.findMatchHighlightBackground\":\"#af3a0330\",\"editor.findRangeHighlightBackground\":\"#07667870\",\"editor.foreground\":\"#3c3836\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#ebdbb260\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#b5761440\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#7c6f6490\",\"editorCursor.foreground\":\"#3c3836\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#bdae9360\",\"editorGroup.border\":\"#ebdbb2\",\"editorGroup.dropBackground\":\"#ebdbb260\",\"editorGroupHeader.noTabsBackground\":\"#fbf1c7\",\"editorGroupHeader.tabsBackground\":\"#fbf1c7\",\"editorGroupHeader.tabsBorder\":\"#ebdbb2\",\"editorGutter.addedBackground\":\"#79740e\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#9d0006\",\"editorGutter.modifiedBackground\":\"#076678\",\"editorHoverWidget.background\":\"#fbf1c7\",\"editorHoverWidget.border\":\"#ebdbb2\",\"editorIndentGuide.activeBackground\":\"#bdae93\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#bdae93\",\"editorLink.activeForeground\":\"#3c3836\",\"editorOverviewRuler.addedForeground\":\"#076678\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#076678\",\"editorOverviewRuler.errorForeground\":\"#9d0006\",\"editorOverviewRuler.findMatchForeground\":\"#665c54\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#8f3f71\",\"editorOverviewRuler.modifiedForeground\":\"#076678\",\"editorOverviewRuler.rangeHighlightForeground\":\"#665c54\",\"editorOverviewRuler.selectionHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#bdae93\",\"editorRuler.foreground\":\"#7c6f6440\",\"editorStickyScroll.shadow\":\"#d5c4a199\",\"editorStickyScrollHover.background\":\"#ebdbb260\",\"editorSuggestWidget.background\":\"#fbf1c7\",\"editorSuggestWidget.border\":\"#ebdbb2\",\"editorSuggestWidget.foreground\":\"#3c3836\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#ebdbb260\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#7c6f6420\",\"editorWidget.background\":\"#fbf1c7\",\"editorWidget.border\":\"#ebdbb2\",\"errorForeground\":\"#9d0006\",\"extensionButton.prominentBackground\":\"#79740e80\",\"extensionButton.prominentHoverBackground\":\"#79740e30\",\"focusBorder\":\"#ebdbb2\",\"foreground\":\"#3c3836\",\"gitDecoration.addedResourceForeground\":\"#3c3836\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#a89984\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#a89984\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#076678\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#8f3f71\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#427b58\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#b57614\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#79740e\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#79740e\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#a89984\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#79740e\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#a89984\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#427b58\",\"gitlens.gutterBackgroundColor\":\"#ebdbb2\",\"gitlens.gutterForegroundColor\":\"#3c3836\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#b57614\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#9d0006\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#79740e\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#ebdbb2\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#fbf1c7a0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#af3a03\",\"icon.foreground\":\"#3c3836\",\"input.background\":\"#fbf1c7\",\"input.border\":\"#ebdbb2\",\"input.foreground\":\"#3c3836\",\"input.placeholderForeground\":\"#3c383660\",\"inputOption.activeBorder\":\"#3c383660\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#9d0006\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#076678\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#b57614\",\"list.activeSelectionBackground\":\"#ebdbb280\",\"list.activeSelectionForeground\":\"#427b58\",\"list.dropBackground\":\"#ebdbb2\",\"list.focusBackground\":\"#ebdbb2\",\"list.focusForeground\":\"#3c3836\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#ebdbb280\",\"list.hoverForeground\":\"#504945\",\"list.inactiveSelectionBackground\":\"#ebdbb280\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#ebdbb2\",\"menu.separatorBackground\":\"#ebdbb2\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#d5c4a1\",\"notebook.cellEditorBackground\":\"#ebdbb2\",\"notebook.focusedCellBorder\":\"#7c6f64\",\"notebook.focusedEditorBorder\":\"#d5c4a1\",\"panel.border\":\"#ebdbb2\",\"panelTitle.activeForeground\":\"#3c3836\",\"peekView.border\":\"#ebdbb2\",\"peekViewEditor.background\":\"#ebdbb270\",\"peekViewEditor.matchHighlightBackground\":\"#d5c4a1\",\"peekViewEditorGutter.background\":\"#ebdbb270\",\"peekViewResult.background\":\"#ebdbb270\",\"peekViewResult.fileForeground\":\"#3c3836\",\"peekViewResult.lineForeground\":\"#3c3836\",\"peekViewResult.matchHighlightBackground\":\"#d5c4a1\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#3c3836\",\"peekViewTitle.background\":\"#ebdbb270\",\"peekViewTitleDescription.foreground\":\"#665c54\",\"peekViewTitleLabel.foreground\":\"#3c3836\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#fbf1c7\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#d5c4a199\",\"scrollbarSlider.hoverBackground\":\"#bdae93\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#fbf1c7\",\"sideBar.border\":\"#ebdbb2\",\"sideBar.foreground\":\"#504945\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#3c3836\",\"sideBarTitle.foreground\":\"#3c3836\",\"statusBar.background\":\"#fbf1c7\",\"statusBar.border\":\"#ebdbb2\",\"statusBar.debuggingBackground\":\"#af3a03\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#fbf1c7\",\"statusBar.foreground\":\"#3c3836\",\"statusBar.noFolderBackground\":\"#fbf1c7\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#ebdbb2\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#3c3836\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#fbf1c7\",\"tab.inactiveForeground\":\"#7c6f64\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#7c6f64\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#ebdbb2\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#076678\",\"terminal.ansiBrightCyan\":\"#427b58\",\"terminal.ansiBrightGreen\":\"#79740e\",\"terminal.ansiBrightMagenta\":\"#8f3f71\",\"terminal.ansiBrightRed\":\"#9d0006\",\"terminal.ansiBrightWhite\":\"#3c3836\",\"terminal.ansiBrightYellow\":\"#b57614\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#7c6f64\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#fbf1c7\",\"terminal.foreground\":\"#3c3836\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#076678\",\"titleBar.activeBackground\":\"#fbf1c7\",\"titleBar.activeForeground\":\"#3c3836\",\"titleBar.inactiveBackground\":\"#fbf1c7\",\"widget.border\":\"#ebdbb2\",\"widget.shadow\":\"#fbf1c730\"},\"displayName\":\"Gruvbox Light Medium\",\"name\":\"gruvbox-light-medium\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#af3a03\",\"constant.builtin\":\"#8f3f71\",\"function\":\"#427b58\",\"function.builtin\":\"#af3a03\",\"method\":\"#427b58\",\"parameter\":\"#076678\",\"property\":\"#076678\",\"property:python\":\"#3c3836\",\"variable\":\"#3c3836\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#7c6f64\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9d0006\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#427b58\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#427b58\"}}],\"type\":\"light\"}"));
|
|
2
|
+
export { gruvbox_light_medium_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var gruvbox_light_soft_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#f2e5bc\",\"activityBar.border\":\"#ebdbb2\",\"activityBar.foreground\":\"#3c3836\",\"activityBarBadge.background\":\"#458588\",\"activityBarBadge.foreground\":\"#ebdbb2\",\"activityBarTop.background\":\"#f2e5bc\",\"activityBarTop.foreground\":\"#3c3836\",\"badge.background\":\"#b16286\",\"badge.foreground\":\"#ebdbb2\",\"button.background\":\"#45858880\",\"button.foreground\":\"#3c3836\",\"button.hoverBackground\":\"#45858860\",\"debugToolBar.background\":\"#f2e5bc\",\"diffEditor.insertedTextBackground\":\"#79740e30\",\"diffEditor.removedTextBackground\":\"#9d000630\",\"dropdown.background\":\"#f2e5bc\",\"dropdown.border\":\"#ebdbb2\",\"dropdown.foreground\":\"#3c3836\",\"editor.background\":\"#f2e5bc\",\"editor.findMatchBackground\":\"#07667870\",\"editor.findMatchHighlightBackground\":\"#af3a0330\",\"editor.findRangeHighlightBackground\":\"#07667870\",\"editor.foreground\":\"#3c3836\",\"editor.hoverHighlightBackground\":\"#689d6a50\",\"editor.lineHighlightBackground\":\"#ebdbb260\",\"editor.lineHighlightBorder\":\"#0000\",\"editor.selectionBackground\":\"#689d6a40\",\"editor.selectionHighlightBackground\":\"#b5761440\",\"editorBracketHighlight.foreground1\":\"#b16286\",\"editorBracketHighlight.foreground2\":\"#458588\",\"editorBracketHighlight.foreground3\":\"#689d6a\",\"editorBracketHighlight.foreground4\":\"#98971a\",\"editorBracketHighlight.foreground5\":\"#d79921\",\"editorBracketHighlight.foreground6\":\"#d65d0e\",\"editorBracketHighlight.unexpectedBracket.foreground\":\"#cc241d\",\"editorBracketMatch.background\":\"#92837480\",\"editorBracketMatch.border\":\"#0000\",\"editorCodeLens.foreground\":\"#7c6f6490\",\"editorCursor.foreground\":\"#3c3836\",\"editorError.foreground\":\"#cc241d\",\"editorGhostText.background\":\"#bdae9360\",\"editorGroup.border\":\"#ebdbb2\",\"editorGroup.dropBackground\":\"#ebdbb260\",\"editorGroupHeader.noTabsBackground\":\"#f2e5bc\",\"editorGroupHeader.tabsBackground\":\"#f2e5bc\",\"editorGroupHeader.tabsBorder\":\"#ebdbb2\",\"editorGutter.addedBackground\":\"#79740e\",\"editorGutter.background\":\"#0000\",\"editorGutter.deletedBackground\":\"#9d0006\",\"editorGutter.modifiedBackground\":\"#076678\",\"editorHoverWidget.background\":\"#f2e5bc\",\"editorHoverWidget.border\":\"#ebdbb2\",\"editorIndentGuide.activeBackground\":\"#bdae93\",\"editorInfo.foreground\":\"#458588\",\"editorLineNumber.foreground\":\"#bdae93\",\"editorLink.activeForeground\":\"#3c3836\",\"editorOverviewRuler.addedForeground\":\"#076678\",\"editorOverviewRuler.border\":\"#0000\",\"editorOverviewRuler.commonContentForeground\":\"#928374\",\"editorOverviewRuler.currentContentForeground\":\"#458588\",\"editorOverviewRuler.deletedForeground\":\"#076678\",\"editorOverviewRuler.errorForeground\":\"#9d0006\",\"editorOverviewRuler.findMatchForeground\":\"#665c54\",\"editorOverviewRuler.incomingContentForeground\":\"#689d6a\",\"editorOverviewRuler.infoForeground\":\"#8f3f71\",\"editorOverviewRuler.modifiedForeground\":\"#076678\",\"editorOverviewRuler.rangeHighlightForeground\":\"#665c54\",\"editorOverviewRuler.selectionHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.warningForeground\":\"#d79921\",\"editorOverviewRuler.wordHighlightForeground\":\"#bdae93\",\"editorOverviewRuler.wordHighlightStrongForeground\":\"#bdae93\",\"editorRuler.foreground\":\"#7c6f6440\",\"editorStickyScroll.shadow\":\"#d5c4a199\",\"editorStickyScrollHover.background\":\"#ebdbb260\",\"editorSuggestWidget.background\":\"#f2e5bc\",\"editorSuggestWidget.border\":\"#ebdbb2\",\"editorSuggestWidget.foreground\":\"#3c3836\",\"editorSuggestWidget.highlightForeground\":\"#689d6a\",\"editorSuggestWidget.selectedBackground\":\"#ebdbb260\",\"editorWarning.foreground\":\"#d79921\",\"editorWhitespace.foreground\":\"#7c6f6420\",\"editorWidget.background\":\"#f2e5bc\",\"editorWidget.border\":\"#ebdbb2\",\"errorForeground\":\"#9d0006\",\"extensionButton.prominentBackground\":\"#79740e80\",\"extensionButton.prominentHoverBackground\":\"#79740e30\",\"focusBorder\":\"#ebdbb2\",\"foreground\":\"#3c3836\",\"gitDecoration.addedResourceForeground\":\"#3c3836\",\"gitDecoration.conflictingResourceForeground\":\"#b16286\",\"gitDecoration.deletedResourceForeground\":\"#cc241d\",\"gitDecoration.ignoredResourceForeground\":\"#a89984\",\"gitDecoration.modifiedResourceForeground\":\"#d79921\",\"gitDecoration.untrackedResourceForeground\":\"#98971a\",\"gitlens.closedAutolinkedIssueIconColor\":\"#b16286\",\"gitlens.closedPullRequestIconColor\":\"#cc241d\",\"gitlens.decorations.branchAheadForegroundColor\":\"#98971a\",\"gitlens.decorations.branchBehindForegroundColor\":\"#d65d0e\",\"gitlens.decorations.branchDivergedForegroundColor\":\"#d79921\",\"gitlens.decorations.branchMissingUpstreamForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\":\"#cc241d\",\"gitlens.decorations.statusMergingOrRebasingForegroundColor\":\"#d79921\",\"gitlens.decorations.workspaceCurrentForegroundColor\":\"#98971a\",\"gitlens.decorations.workspaceRepoMissingForegroundColor\":\"#a89984\",\"gitlens.decorations.workspaceRepoOpenForegroundColor\":\"#98971a\",\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\":\"#928374\",\"gitlens.decorations.worktreeMissingForegroundColor\":\"#cc241d\",\"gitlens.graphChangesColumnAddedColor\":\"#98971a\",\"gitlens.graphChangesColumnDeletedColor\":\"#cc241d\",\"gitlens.graphLane10Color\":\"#98971a\",\"gitlens.graphLane1Color\":\"#076678\",\"gitlens.graphLane2Color\":\"#458588\",\"gitlens.graphLane3Color\":\"#8f3f71\",\"gitlens.graphLane4Color\":\"#b16286\",\"gitlens.graphLane5Color\":\"#427b58\",\"gitlens.graphLane6Color\":\"#689d6a\",\"gitlens.graphLane7Color\":\"#b57614\",\"gitlens.graphLane8Color\":\"#d79921\",\"gitlens.graphLane9Color\":\"#79740e\",\"gitlens.graphMinimapMarkerHeadColor\":\"#98971a\",\"gitlens.graphMinimapMarkerHighlightsColor\":\"#79740e\",\"gitlens.graphMinimapMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphMinimapMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphMinimapMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphMinimapMarkerStashesColor\":\"#b16286\",\"gitlens.graphMinimapMarkerTagsColor\":\"#a89984\",\"gitlens.graphMinimapMarkerUpstreamColor\":\"#689d6a\",\"gitlens.graphScrollMarkerHeadColor\":\"#79740e\",\"gitlens.graphScrollMarkerHighlightsColor\":\"#d79921\",\"gitlens.graphScrollMarkerLocalBranchesColor\":\"#076678\",\"gitlens.graphScrollMarkerPullRequestsColor\":\"#af3a03\",\"gitlens.graphScrollMarkerRemoteBranchesColor\":\"#458588\",\"gitlens.graphScrollMarkerStashesColor\":\"#b16286\",\"gitlens.graphScrollMarkerTagsColor\":\"#a89984\",\"gitlens.graphScrollMarkerUpstreamColor\":\"#427b58\",\"gitlens.gutterBackgroundColor\":\"#ebdbb2\",\"gitlens.gutterForegroundColor\":\"#3c3836\",\"gitlens.gutterUncommittedForegroundColor\":\"#458588\",\"gitlens.launchpadIndicatorAttentionColor\":\"#b57614\",\"gitlens.launchpadIndicatorAttentionHoverColor\":\"#d79921\",\"gitlens.launchpadIndicatorBlockedColor\":\"#9d0006\",\"gitlens.launchpadIndicatorBlockedHoverColor\":\"#cc241d\",\"gitlens.launchpadIndicatorMergeableColor\":\"#79740e\",\"gitlens.launchpadIndicatorMergeableHoverColor\":\"#98971a\",\"gitlens.lineHighlightBackgroundColor\":\"#ebdbb2\",\"gitlens.lineHighlightOverviewRulerColor\":\"#458588\",\"gitlens.mergedPullRequestIconColor\":\"#b16286\",\"gitlens.openAutolinkedIssueIconColor\":\"#98971a\",\"gitlens.openPullRequestIconColor\":\"#98971a\",\"gitlens.trailingLineBackgroundColor\":\"#f2e5bca0\",\"gitlens.trailingLineForegroundColor\":\"#928374a0\",\"gitlens.unpublishedChangesIconColor\":\"#98971a\",\"gitlens.unpublishedCommitIconColor\":\"#98971a\",\"gitlens.unpulledChangesIconColor\":\"#af3a03\",\"icon.foreground\":\"#3c3836\",\"input.background\":\"#f2e5bc\",\"input.border\":\"#ebdbb2\",\"input.foreground\":\"#3c3836\",\"input.placeholderForeground\":\"#3c383660\",\"inputOption.activeBorder\":\"#3c383660\",\"inputValidation.errorBackground\":\"#cc241d\",\"inputValidation.errorBorder\":\"#9d0006\",\"inputValidation.infoBackground\":\"#45858880\",\"inputValidation.infoBorder\":\"#076678\",\"inputValidation.warningBackground\":\"#d79921\",\"inputValidation.warningBorder\":\"#b57614\",\"list.activeSelectionBackground\":\"#ebdbb280\",\"list.activeSelectionForeground\":\"#427b58\",\"list.dropBackground\":\"#ebdbb2\",\"list.focusBackground\":\"#ebdbb2\",\"list.focusForeground\":\"#3c3836\",\"list.highlightForeground\":\"#689d6a\",\"list.hoverBackground\":\"#ebdbb280\",\"list.hoverForeground\":\"#504945\",\"list.inactiveSelectionBackground\":\"#ebdbb280\",\"list.inactiveSelectionForeground\":\"#689d6a\",\"menu.border\":\"#ebdbb2\",\"menu.separatorBackground\":\"#ebdbb2\",\"merge.border\":\"#0000\",\"merge.currentContentBackground\":\"#45858820\",\"merge.currentHeaderBackground\":\"#45858840\",\"merge.incomingContentBackground\":\"#689d6a20\",\"merge.incomingHeaderBackground\":\"#689d6a40\",\"notebook.cellBorderColor\":\"#d5c4a1\",\"notebook.cellEditorBackground\":\"#ebdbb2\",\"notebook.focusedCellBorder\":\"#7c6f64\",\"notebook.focusedEditorBorder\":\"#d5c4a1\",\"panel.border\":\"#ebdbb2\",\"panelTitle.activeForeground\":\"#3c3836\",\"peekView.border\":\"#ebdbb2\",\"peekViewEditor.background\":\"#ebdbb270\",\"peekViewEditor.matchHighlightBackground\":\"#d5c4a1\",\"peekViewEditorGutter.background\":\"#ebdbb270\",\"peekViewResult.background\":\"#ebdbb270\",\"peekViewResult.fileForeground\":\"#3c3836\",\"peekViewResult.lineForeground\":\"#3c3836\",\"peekViewResult.matchHighlightBackground\":\"#d5c4a1\",\"peekViewResult.selectionBackground\":\"#45858820\",\"peekViewResult.selectionForeground\":\"#3c3836\",\"peekViewTitle.background\":\"#ebdbb270\",\"peekViewTitleDescription.foreground\":\"#665c54\",\"peekViewTitleLabel.foreground\":\"#3c3836\",\"progressBar.background\":\"#689d6a\",\"scmGraph.historyItemHoverDefaultLabelForeground\":\"#ebdbb2\",\"scmGraph.historyItemHoverLabelForeground\":\"#ebdbb2\",\"scrollbar.shadow\":\"#f2e5bc\",\"scrollbarSlider.activeBackground\":\"#689d6a\",\"scrollbarSlider.background\":\"#d5c4a199\",\"scrollbarSlider.hoverBackground\":\"#bdae93\",\"selection.background\":\"#689d6a80\",\"sideBar.background\":\"#f2e5bc\",\"sideBar.border\":\"#ebdbb2\",\"sideBar.foreground\":\"#504945\",\"sideBarSectionHeader.background\":\"#0000\",\"sideBarSectionHeader.foreground\":\"#3c3836\",\"sideBarTitle.foreground\":\"#3c3836\",\"statusBar.background\":\"#f2e5bc\",\"statusBar.border\":\"#ebdbb2\",\"statusBar.debuggingBackground\":\"#af3a03\",\"statusBar.debuggingBorder\":\"#0000\",\"statusBar.debuggingForeground\":\"#f2e5bc\",\"statusBar.foreground\":\"#3c3836\",\"statusBar.noFolderBackground\":\"#f2e5bc\",\"statusBar.noFolderBorder\":\"#0000\",\"tab.activeBackground\":\"#ebdbb2\",\"tab.activeBorder\":\"#689d6a\",\"tab.activeForeground\":\"#3c3836\",\"tab.border\":\"#0000\",\"tab.inactiveBackground\":\"#f2e5bc\",\"tab.inactiveForeground\":\"#7c6f64\",\"tab.unfocusedActiveBorder\":\"#0000\",\"tab.unfocusedActiveForeground\":\"#7c6f64\",\"tab.unfocusedInactiveForeground\":\"#928374\",\"terminal.ansiBlack\":\"#ebdbb2\",\"terminal.ansiBlue\":\"#458588\",\"terminal.ansiBrightBlack\":\"#928374\",\"terminal.ansiBrightBlue\":\"#076678\",\"terminal.ansiBrightCyan\":\"#427b58\",\"terminal.ansiBrightGreen\":\"#79740e\",\"terminal.ansiBrightMagenta\":\"#8f3f71\",\"terminal.ansiBrightRed\":\"#9d0006\",\"terminal.ansiBrightWhite\":\"#3c3836\",\"terminal.ansiBrightYellow\":\"#b57614\",\"terminal.ansiCyan\":\"#689d6a\",\"terminal.ansiGreen\":\"#98971a\",\"terminal.ansiMagenta\":\"#b16286\",\"terminal.ansiRed\":\"#cc241d\",\"terminal.ansiWhite\":\"#7c6f64\",\"terminal.ansiYellow\":\"#d79921\",\"terminal.background\":\"#f2e5bc\",\"terminal.foreground\":\"#3c3836\",\"textLink.activeForeground\":\"#458588\",\"textLink.foreground\":\"#076678\",\"titleBar.activeBackground\":\"#f2e5bc\",\"titleBar.activeForeground\":\"#3c3836\",\"titleBar.inactiveBackground\":\"#f2e5bc\",\"widget.border\":\"#ebdbb2\",\"widget.shadow\":\"#f2e5bc30\"},\"displayName\":\"Gruvbox Light Soft\",\"name\":\"gruvbox-light-soft\",\"semanticHighlighting\":true,\"semanticTokenColors\":{\"component\":\"#af3a03\",\"constant.builtin\":\"#8f3f71\",\"function\":\"#427b58\",\"function.builtin\":\"#af3a03\",\"method\":\"#427b58\",\"parameter\":\"#076678\",\"property\":\"#076678\",\"property:python\":\"#3c3836\",\"variable\":\"#3c3836\"},\"tokenColors\":[{\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"emphasis\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"strong\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"header\",\"settings\":{\"foreground\":\"#458588\"}},{\"scope\":[\"comment\",\"punctuation.definition.comment\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#928374\"}},{\"scope\":[\"constant\",\"support.constant\",\"variable.arguments\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"constant.rgb-value\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"entity.name.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.name.tag\",\"punctuation.tag\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"invalid\",\"invalid.illegal\"],\"settings\":{\"foreground\":\"#cc241d\"}},{\"scope\":\"invalid.deprecated\",\"settings\":{\"foreground\":\"#b16286\"}},{\"scope\":\"meta.selector\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"meta.preprocessor\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"meta.preprocessor.string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.preprocessor.numeric\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"meta.header.diff\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"storage\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type\",\"storage.modifier\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.tag\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.value\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"string.escape\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"string.quasi\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.entity\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"object\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"module.node\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"support.type.property-name\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"keyword\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"keyword.control.module\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.less\",\"settings\":{\"foreground\":\"#d79921\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.operator.new\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"metatag.php\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"support.function.git-rebase\",\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"constant.sha.git-rebase\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"meta.type.name\",\"meta.return.type\",\"meta.return-type\",\"meta.cast\",\"meta.type.annotation\",\"support.type\",\"storage.type.cs\",\"variable.class\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"variable.this\",\"support.variable\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"entity.name\",\"entity.static\",\"entity.name.class.static.function\",\"entity.name.function\",\"entity.name.class\",\"entity.name.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"entity.function\",\"entity.name.function.static\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"entity.name.function.function-call\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.builtin\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"entity.name.method\",\"entity.name.method.function-call\",\"entity.name.static.function-call\"],\"settings\":{\"foreground\":\"#689d6a\"}},{\"scope\":\"brace\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":[\"meta.parameter.type.variable\",\"variable.parameter\",\"variable.name\",\"variable.other\",\"variable\",\"string.constant.other.placeholder\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"prototype\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"punctuation\"],\"settings\":{\"foreground\":\"#7c6f64\"}},{\"scope\":\"punctuation.quoted\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"punctuation.quasi\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"*url*\",\"*link*\",\"*uri*\"],\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":[\"meta.function.python\",\"entity.name.function.python\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"storage.type.function.python\",\"storage.modifier.declaration\",\"storage.type.class.python\",\"storage.type.string.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"storage.type.function.async.python\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"meta.function-call.generic\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"meta.function-call.arguments\",\"settings\":{\"foreground\":\"#504945\"}},{\"scope\":\"entity.name.function.decorator\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"constant.other.caps\",\"settings\":{\"fontStyle\":\"bold\"}},{\"scope\":\"keyword.operator.logical\",\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":\"punctuation.definition.logical-expression\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"string.interpolated.dollar.shell\",\"string.interpolated.backtick.shell\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"keyword.control.directive\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"support.function.C99\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"meta.function.cs\",\"entity.name.function.cs\",\"entity.name.type.namespace.cs\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"keyword.other.using.cs\",\"entity.name.variable.field.cs\",\"entity.name.variable.local.cs\",\"variable.other.readwrite.cs\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"keyword.other.this.cs\",\"keyword.other.base.cs\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"meta.scope.prerequisites\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"entity.name.function.target\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"storage.modifier.import.java\",\"storage.modifier.package.java\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"keyword.other.import.java\",\"keyword.other.package.java\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"storage.type.java\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"storage.type.annotation\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"keyword.other.documentation.javadoc\",\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"comment.block.javadoc variable.parameter.java\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":[\"source.java variable.other.object\",\"source.java variable.other.definition.java\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"meta.function-parameters.lisp\",\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":\"markup.underline\",\"settings\":{\"fontStyle\":\"underline\"}},{\"scope\":\"string.other.link.title.markdown\",\"settings\":{\"fontStyle\":\"underline\",\"foreground\":\"#928374\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.heading\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.1.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#9d0006\"}},{\"scope\":\"heading.2.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#af3a03\"}},{\"scope\":\"heading.3.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#b57614\"}},{\"scope\":\"heading.4.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#79740e\"}},{\"scope\":\"heading.5.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#076678\"}},{\"scope\":\"heading.6.markdown entity.name.section.markdown\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8f3f71\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"markup.inserted\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":\"markup.deleted\",\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":\"markup.changed\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"markup.punctuation.quote.beginning\",\"settings\":{\"foreground\":\"#98971a\"}},{\"scope\":\"markup.punctuation.list.beginning\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":\"string.quoted.double.json\",\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":\"entity.other.attribute-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"source.css meta.selector\",\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":\"entity.other.attribute-name.class\",\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.css support.function.transform\",\"source.css support.function.timing-function\",\"source.css support.function.misc\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.property-value\",\"constant.rgb-value\",\"support.property-value.scss\",\"constant.rgb-value.scss\"],\"settings\":{\"foreground\":\"#d65d0e\"}},{\"scope\":[\"entity.name.tag.css\"],\"settings\":{\"fontStyle\":\"\"}},{\"scope\":[\"punctuation.definition.tag\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"text.html entity.name.tag\",\"text.html punctuation.tag\"],\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#427b58\"}},{\"scope\":[\"source.js variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.ts variable.language\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.go storage.type\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.go entity.name.import\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.go keyword.package\",\"source.go keyword.import\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.go keyword.interface\",\"source.go keyword.struct\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.go entity.name.type\"],\"settings\":{\"foreground\":\"#3c3836\"}},{\"scope\":[\"source.go entity.name.function\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"keyword.control.cucumber.table\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason string.double\",\"source.reason string.regexp\"],\"settings\":{\"foreground\":\"#79740e\"}},{\"scope\":[\"source.reason keyword.control.less\"],\"settings\":{\"foreground\":\"#427b58\"}},{\"scope\":[\"source.reason entity.name.function\"],\"settings\":{\"foreground\":\"#076678\"}},{\"scope\":[\"source.reason support.property-value\",\"source.reason entity.name.filename\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell variable.other.member.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"source.powershell support.function.powershell\"],\"settings\":{\"foreground\":\"#b57614\"}},{\"scope\":[\"source.powershell support.function.attribute.powershell\"],\"settings\":{\"foreground\":\"#665c54\"}},{\"scope\":[\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"support.function.be.latex\",\"support.function.general.tex\",\"support.function.section.latex\",\"support.function.textbf.latex\",\"support.function.textit.latex\",\"support.function.texttt.latex\",\"support.function.emph.latex\",\"support.function.url.latex\"],\"settings\":{\"foreground\":\"#9d0006\"}},{\"scope\":[\"support.class.math.block.tex\",\"support.class.math.block.environment.latex\"],\"settings\":{\"foreground\":\"#af3a03\"}},{\"scope\":[\"keyword.control.preamble.latex\",\"keyword.control.include.latex\"],\"settings\":{\"foreground\":\"#8f3f71\"}},{\"scope\":[\"support.class.latex\"],\"settings\":{\"foreground\":\"#427b58\"}}],\"type\":\"light\"}"));
|
|
2
|
+
export { gruvbox_light_soft_default as default };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var horizon_bright_default = Object.freeze(JSON.parse("{\"colors\":{\"activityBar.background\":\"#FDF0ED\",\"activityBar.dropBackground\":\"#F9CEC380\",\"activityBar.foreground\":\"#06060CE6\",\"activityBarBadge.background\":\"#E84A72\",\"activityBarBadge.foreground\":\"#06060C\",\"badge.background\":\"#F9CBBE\",\"badge.foreground\":\"#06060C\",\"breadcrumbPicker.background\":\"#FADAD1\",\"button.background\":\"#F9CBBE\",\"button.foreground\":\"#06060C\",\"debugToolBar.background\":\"#FDF0ED\",\"diffEditor.insertedTextBackground\":\"#07DA8C1A\",\"diffEditor.removedTextBackground\":\"#F43E5C1A\",\"dropdown.background\":\"#FADAD1\",\"dropdown.listBackground\":\"#F9CBBE\",\"editor.background\":\"#FDF0ED\",\"editor.findMatchBackground\":\"#F9CEC380\",\"editor.findMatchHighlightBackground\":\"#F9CEC34D\",\"editor.findRangeHighlightBackground\":\"#F9CEC31A\",\"editor.hoverHighlightBackground\":\"#F9CEC34D\",\"editor.lineHighlightBackground\":\"#F9CBBE4D\",\"editor.rangeHighlightBackground\":\"#F9CBBE80\",\"editor.selectionBackground\":\"#F9CBBE80\",\"editor.selectionHighlightBackground\":\"#F9CEC380\",\"editor.wordHighlightBackground\":\"#F9CEC380\",\"editor.wordHighlightStrongBackground\":\"#F9CEC380\",\"editorBracketMatch.background\":\"#F9CEC380\",\"editorBracketMatch.border\":\"#F9CEC300\",\"editorCodeLens.foreground\":\"#F9CEC380\",\"editorCursor.background\":\"#FDF0ED\",\"editorCursor.foreground\":\"#E84A72\",\"editorError.foreground\":\"#F43E5C\",\"editorGroup.border\":\"#1A1C231A\",\"editorGroup.dropBackground\":\"#F9CEC34D\",\"editorGroupHeader.tabsBackground\":\"#FDF0ED\",\"editorGutter.addedBackground\":\"#07DA8CB3\",\"editorGutter.deletedBackground\":\"#F43E5CB3\",\"editorGutter.modifiedBackground\":\"#1EAEAEB3\",\"editorIndentGuide.activeBackground\":\"#F9CBBE\",\"editorIndentGuide.background\":\"#F9CBBE80\",\"editorLineNumber.activeForeground\":\"#06060C80\",\"editorLineNumber.foreground\":\"#06060C1A\",\"editorOverviewRuler.addedForeground\":\"#07DA8CB3\",\"editorOverviewRuler.border\":\"#F9CBBE1A\",\"editorOverviewRuler.bracketMatchForeground\":\"#06060CB3\",\"editorOverviewRuler.deletedForeground\":\"#F43E5CB3\",\"editorOverviewRuler.errorForeground\":\"#F43E5CE6\",\"editorOverviewRuler.findMatchForeground\":\"#F9CEC3\",\"editorOverviewRuler.modifiedForeground\":\"#1EAEAEB3\",\"editorOverviewRuler.warningForeground\":\"#1EB980B3\",\"editorRuler.foreground\":\"#F9CEC34D\",\"editorSuggestWidget.highlightForeground\":\"#E84A72\",\"editorUnnecessaryCode.opacity\":\"#000000B3\",\"editorWarning.foreground\":\"#1EB980B3\",\"editorWidget.background\":\"#FADAD1\",\"editorWidget.border\":\"#FADAD1\",\"errorForeground\":\"#F43E5C\",\"extensionButton.prominentBackground\":\"#E84A72\",\"extensionButton.prominentHoverBackground\":\"#E73665\",\"focusBorder\":\"#1A1C231A\",\"foreground\":\"#06060C\",\"gitDecoration.addedResourceForeground\":\"#1EB980B3\",\"gitDecoration.deletedResourceForeground\":\"#F43E5C\",\"gitDecoration.ignoredResourceForeground\":\"#06060C4D\",\"gitDecoration.modifiedResourceForeground\":\"#AF5427\",\"gitDecoration.untrackedResourceForeground\":\"#1EB980\",\"input.background\":\"#F9CBBE\",\"inputOption.activeBorder\":\"#E7366580\",\"inputValidation.errorBackground\":\"#F43E5C80\",\"inputValidation.errorBorder\":\"#F43E5C00\",\"list.activeSelectionBackground\":\"#F9CBBE80\",\"list.activeSelectionForeground\":\"#06060C\",\"list.dropBackground\":\"#F9CEC380\",\"list.errorForeground\":\"#F43E5CE6\",\"list.focusBackground\":\"#F9CBBE80\",\"list.focusForeground\":\"#06060C\",\"list.highlightForeground\":\"#E84A72\",\"list.hoverBackground\":\"#F9CBBE80\",\"list.hoverForeground\":\"#06060C\",\"list.inactiveFocusBackground\":\"#F9CBBE80\",\"list.inactiveSelectionBackground\":\"#F9CBBE4D\",\"list.inactiveSelectionForeground\":\"#06060C\",\"list.warningForeground\":\"#1EB980B3\",\"panelTitle.activeBorder\":\"#E84A72\",\"peekView.border\":\"#1A1C231A\",\"peekViewEditor.background\":\"#FADAD1\",\"peekViewEditor.matchHighlightBackground\":\"#F9CEC380\",\"peekViewResult.background\":\"#FADAD1\",\"peekViewResult.matchHighlightBackground\":\"#F9CEC380\",\"peekViewResult.selectionBackground\":\"#F9CBBE80\",\"peekViewTitle.background\":\"#FADAD1\",\"pickerGroup.foreground\":\"#E84A72E6\",\"progressBar.background\":\"#E84A72\",\"scrollbar.shadow\":\"#16161C4D\",\"scrollbarSlider.activeBackground\":\"#F9CEC3E6\",\"scrollbarSlider.background\":\"#F9CEC380\",\"scrollbarSlider.hoverBackground\":\"#F9CEC3B3\",\"selection.background\":\"#AF542780\",\"sideBar.background\":\"#FDF0ED\",\"sideBar.dropBackground\":\"#F9CEC34D\",\"sideBar.foreground\":\"#06060CB3\",\"sideBarSectionHeader.background\":\"#FDF0ED\",\"sideBarSectionHeader.foreground\":\"#06060CB3\",\"statusBar.background\":\"#FDF0ED\",\"statusBar.debuggingBackground\":\"#AF5427\",\"statusBar.debuggingForeground\":\"#06060C\",\"statusBar.foreground\":\"#06060CB3\",\"statusBar.noFolderBackground\":\"#FDF0ED\",\"statusBarItem.hoverBackground\":\"#F9CBBE\",\"statusBarItem.prominentBackground\":\"#F9CBBE\",\"statusBarItem.prominentHoverBackground\":\"#F9CEC3\",\"tab.activeBorder\":\"#E84A72\",\"tab.border\":\"#FDF0ED00\",\"tab.inactiveBackground\":\"#FDF0ED\",\"terminal.ansiBlue\":\"#26BBD9\",\"terminal.ansiBrightBlue\":\"#3FC4DE\",\"terminal.ansiBrightCyan\":\"#6BE4E6\",\"terminal.ansiBrightGreen\":\"#3FDAA4\",\"terminal.ansiBrightMagenta\":\"#F075B5\",\"terminal.ansiBrightRed\":\"#EC6A88\",\"terminal.ansiBrightYellow\":\"#FBC3A7\",\"terminal.ansiCyan\":\"#59E1E3\",\"terminal.ansiGreen\":\"#29D398\",\"terminal.ansiMagenta\":\"#EE64AC\",\"terminal.ansiRed\":\"#E95678\",\"terminal.ansiYellow\":\"#FAB795\",\"terminal.foreground\":\"#06060C\",\"terminal.selectionBackground\":\"#F9CEC380\",\"terminalCursor.background\":\"#06060C\",\"terminalCursor.foreground\":\"#F9CEC3B3\",\"textLink.activeForeground\":\"#E73665\",\"textLink.foreground\":\"#E84A72\",\"titleBar.activeBackground\":\"#FDF0ED\",\"titleBar.inactiveBackground\":\"#FDF0ED\",\"walkThrough.embeddedEditorBackground\":\"#FADAD1\",\"widget.shadow\":\"#16161C4D\"},\"displayName\":\"Horizon Bright\",\"name\":\"horizon-bright\",\"semanticHighlighting\":true,\"tokenColors\":[{\"scope\":\"comment\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#33333380\"}},{\"scope\":\"constant\",\"settings\":{\"foreground\":\"#DC3318\"}},{\"scope\":\"constant.character.escape\",\"settings\":{\"foreground\":\"#1D8991\"}},{\"scope\":\"entity.name\",\"settings\":{\"foreground\":\"#F77D26\"}},{\"scope\":\"entity.name.function\",\"settings\":{\"foreground\":\"#1D8991\"}},{\"scope\":\"entity.name.tag\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#DA103F\"}},{\"scope\":[\"entity.name.type\",\"storage.type.cs\"],\"settings\":{\"foreground\":\"#F77D26\"}},{\"scope\":\"entity.other.attribute-name\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#DC3318\"}},{\"scope\":\"entity.other.inherited-class\",\"settings\":{\"foreground\":\"#F6661E\"}},{\"scope\":\"entity.other.attribute-name.id\",\"settings\":{\"foreground\":\"#1D8991\"}},{\"scope\":[\"entity.other.attribute-name.pseudo-element\",\"entity.other.attribute-name.pseudo-class\"],\"settings\":{\"foreground\":\"#F6661E\"}},{\"scope\":[\"entity.name.variable\",\"variable\"],\"settings\":{\"foreground\":\"#DA103F\"}},{\"scope\":\"keyword\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#8A31B9\"}},{\"scope\":\"keyword.operator\",\"settings\":{\"foreground\":\"#333333\"}},{\"scope\":[\"keyword.operator.new\",\"keyword.operator.expression\",\"keyword.operator.logical\",\"keyword.operator.delete\"],\"settings\":{\"foreground\":\"#8A31B9\"}},{\"scope\":\"keyword.other.unit\",\"settings\":{\"foreground\":\"#DC3318\"}},{\"scope\":\"markup.quote\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#F6661EB3\"}},{\"scope\":[\"markup.heading\",\"entity.name.section\"],\"settings\":{\"foreground\":\"#DA103F\"}},{\"scope\":\"markup.bold\",\"settings\":{\"fontStyle\":\"bold\",\"foreground\":\"#8A31B9\"}},{\"scope\":\"markup.italic\",\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#1D8991\"}},{\"scope\":[\"markup.inline.raw\",\"markup.fenced_code.block\"],\"settings\":{\"foreground\":\"#DC3318\"}},{\"scope\":\"markup.underline.link\",\"settings\":{\"foreground\":\"#F6661E\"}},{\"scope\":\"storage\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#8A31B9\"}},{\"scope\":[\"string.quoted\",\"string.template\"],\"settings\":{\"foreground\":\"#F6661E\"}},{\"scope\":\"string.regexp\",\"settings\":{\"foreground\":\"#DC3318\"}},{\"scope\":\"string.other.link\",\"settings\":{\"foreground\":\"#DC3318\"}},{\"scope\":\"support\",\"settings\":{\"foreground\":\"#F77D26\"}},{\"scope\":\"support.function\",\"settings\":{\"foreground\":\"#1D8991\"}},{\"scope\":\"support.variable\",\"settings\":{\"foreground\":\"#DA103F\"}},{\"scope\":[\"support.type.property-name\",\"meta.object-literal.key\"],\"settings\":{\"foreground\":\"#DA103F\"}},{\"scope\":\"support.type.property-name.css\",\"settings\":{\"foreground\":\"#333333\"}},{\"scope\":[\"variable.language\"],\"settings\":{\"fontStyle\":\"italic\",\"foreground\":\"#F77D26\"}},{\"scope\":\"variable.parameter\",\"settings\":{\"fontStyle\":\"italic\"}},{\"scope\":\"string.template meta.embedded\",\"settings\":{\"foreground\":\"#333333\"}},{\"scope\":\"punctuation.definition.tag\",\"settings\":{\"fontStyle\":\"normal\",\"foreground\":\"#DA103FB3\"}},{\"scope\":\"punctuation.separator\",\"settings\":{\"foreground\":\"#333333\"}},{\"scope\":\"punctuation.definition.template-expression\",\"settings\":{\"foreground\":\"#8A31B9\"}},{\"scope\":\"punctuation.section.embedded\",\"settings\":{\"foreground\":\"#8A31B9\"}},{\"scope\":\"punctuation.definition.list\",\"settings\":{\"foreground\":\"#DC3318\"}}],\"type\":\"dark\"}"));
|
|
2
|
+
export { horizon_bright_default as default };
|