@heal-dev/heal-playwright-tracer 1.0.0 → 1.0.8
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/README.md +94 -116
- package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
- package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
- package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
- package/dist/application/heal-config/index.d.ts +1 -1
- package/dist/application/heal-config/registry.js +2 -1
- package/dist/application/heal-config/types.d.ts +187 -6
- package/dist/application/playwright-fixture/index.js +247 -48
- package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
- package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
- package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
- package/dist/application/trace-event-recorder-runtime/index.js +11 -1
- package/dist/bin/heal-tracer.d.ts +7 -0
- package/dist/bin/heal-tracer.js +16 -0
- package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
- package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
- package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
- package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
- package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
- package/dist/domain/persistence/execution-history-schema.js +10 -0
- package/dist/domain/persistence/index.d.ts +7 -0
- package/dist/domain/persistence/index.js +10 -0
- package/dist/domain/persistence/test-status.d.ts +6 -0
- package/dist/domain/persistence/test-status.js +7 -0
- package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
- package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
- package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
- package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
- package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
- package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
- package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
- package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
- package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
- package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
- package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
- package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
- package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
- package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
- package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
- package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
- package/dist/index.d.ts +1 -1
- package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
- package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
- package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
- package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
- package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
- package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
- package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
- package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
- package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
- package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
- package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
- package/dist/infrastructure/heal-reporter/index.js +23 -0
- package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
- package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
- package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
- package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
- package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
- package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
- package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
- package/dist/infrastructure/heal-traces-layout/index.js +14 -0
- package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
- package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
- package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
- package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
- package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
- package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
- package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
- package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
- package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
- package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
- package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
- package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
- package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
- package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
- package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
- package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
- package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
- package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
- package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
- package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
- package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
- package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
- package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
- package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
- package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
- package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
- package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
- package/dist/util/logger.d.ts +17 -0
- package/dist/util/logger.js +60 -0
- package/dist/util/with-timeout.d.ts +6 -0
- package/dist/util/with-timeout.js +33 -0
- package/package.json +20 -3
- package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
- package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
- package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
- package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
- package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
- package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
- package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
- package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
- package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
- package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
- package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
- package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
- package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
- package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
- package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
- package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
- package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
- package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
- package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
- package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
- package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
- package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
- package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
- package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
- package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
- package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
- package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
- package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
- package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
- package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
- package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
- package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
- package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
- package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
- package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
- package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
- package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
- package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
- package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
- package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
- package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
- package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
- package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
- package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
- package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
- package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
- package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
- package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
- package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
- package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
- package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
- package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
- package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
- package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
- package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
- package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
- package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
- package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
- package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
- package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
- package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
- package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
- package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
- package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
- package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
- package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
- package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
- package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
- package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
- package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
- package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
- package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
- package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
- package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
- package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
- package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
- package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
- package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
- package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
- package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
- package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
- package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
- package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
- package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
- package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
- package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
- package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
- package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
- package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
- package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
- package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
- package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
- package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
- package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
- package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
- package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
- package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
- package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
- package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
- package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
- package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
- package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
- package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
- package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
- package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
- package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
- package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
- package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
- package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
- package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
- package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
- package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
- package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
- package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
- package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
- package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
- package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
- package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
- package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
- package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
- package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
- package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
- package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
- package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
- package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
- package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
- package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
- package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
- package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
- package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
- package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
- package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
- package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
- package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
- package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
- package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
- package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
- package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
- package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
- package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
- package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
- package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
- package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
- package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
- package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
- package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
- package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
- package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
- package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
- package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
- package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
- package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
- package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
- package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
- package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
- package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
- package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
- package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
- package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
- package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
- package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
- package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
- package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
- package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
- package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
- package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
- package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
- package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
- package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
- package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
- package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
- package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
- package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
- package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
- package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
- package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
- package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
- package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
- package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
- package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
- package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
- package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
- package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
- package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
- package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
- package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
- package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
- package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
- package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
- package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
- package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
- package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
- package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
- package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
- package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
- package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
- package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
- package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
- package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
- package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
- package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
- package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
- package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
- package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
- package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
- package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
- package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
- package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
- package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
- package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
- package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
- package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
- package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
- package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
- package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
- package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
- package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
- package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
- package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
- package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
- package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
- package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
- package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
- package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
- package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
- package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
- package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
- package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
- package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
- package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
- package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
- package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
- package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
- package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
- package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
- package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
- package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
- package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
- package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
- package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
- package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
- package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
- package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
- package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
- package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
- package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
- package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
- package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
- package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
- package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
- package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
- package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
- package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
- package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
- package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
- package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
- package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
- package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
- package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
- package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
- package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
- package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
- package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
- package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
- package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
- package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
- package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
- package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
- package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
- package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
- package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
- package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
- package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
- package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
- package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
- package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
- package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
- package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
- package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
- package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
- package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
- package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
- package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
- package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
- package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
- package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
- package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
- package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
- package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
- package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
- package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
- package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
- package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
- package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
- package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
- package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
- package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
- package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
- package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
- package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
- package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
- package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
- package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
- package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
- package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
- package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
- package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
- package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
- package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
- package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
- package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
- package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
- package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
- package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
- package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
- package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
- package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
- package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
- package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
- package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
- package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
- package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
- package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
- package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
- package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
- package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
- package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
- package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
- package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
- package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
- package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
- package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
- package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
- package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
- package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
- package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
- package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
- package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
- package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
- package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
- package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
- package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
- package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
- package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
- package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
- package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
- package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
- package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
- package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
- package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
- package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
- package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
- package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
- package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
- package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
- package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
- package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
- package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
- package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
- package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
- package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
- package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
- package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
- package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
- package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
- package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
- package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
- package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
- package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
- package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
- package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
- package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
- package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
- package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
- package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
- package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
- package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
- package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
- package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
- package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
- package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
- package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
- package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
- package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
- package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
- package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
- package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
- package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
- package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
- package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
- package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
- package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
- package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
- package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
- package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
- package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
- package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
- package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
- package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
- package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
- package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
- package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
- package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
- package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
- package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
- package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
- package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
- package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
- package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
- package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
- package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
- package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
- package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
- package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
- package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
- package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
- package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
- package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
- package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
- package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
- package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
- package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
- package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
- package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
- package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
- package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
- package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
- package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
- package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
- package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
- package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
- package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
- package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
- package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
- package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
- package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
- package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
- package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
- package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
- package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
- package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
- package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
- package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
- package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
- package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
- package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
- package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
- package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
- package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
- package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
- package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
- package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
- package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
- package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
- package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
- package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
- package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
- package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
- package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
- package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
- package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
- package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
- package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
- package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
- package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
- package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
- package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
- package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
- package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
- package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
- package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
- package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
- package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
- package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
- package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
- package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
- package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
- package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
- package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
- package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
- package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
- package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
- package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
- package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
- package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
- package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
- package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
- package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
- package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
- package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
- package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
- package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
- package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
- package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
- package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
- package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
- package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
- package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
- package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
- package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
- package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
- package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
- package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
- package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
- package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
- package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
- package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
- package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
- package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
- package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
- package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
- package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
- package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
- package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
- package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
- package/tracer-viewer-bundle/index.html +25 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marko-DjSrsDqO.js","sources":["../../../../node_modules/@shikijs/langs/dist/marko.mjs"],"sourcesContent":["import css from './css.mjs'\nimport less from './less.mjs'\nimport scss from './scss.mjs'\nimport typescript from './typescript.mjs'\n\nconst lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Marko\\\",\\\"fileTypes\\\":[\\\"marko\\\"],\\\"name\\\":\\\"marko\\\",\\\"patterns\\\":[{\\\"begin\\\":\\\"^\\\\\\\\s*(style)(\\\\\\\\b\\\\\\\\S*\\\\\\\\.css)?\\\\\\\\s+(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.builtin.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.modifier.marko.css\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko.css\\\"}},\\\"contentName\\\":\\\"source.css\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko.css\\\"}},\\\"name\\\":\\\"meta.embedded.css\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.css\\\"}]},{\\\"begin\\\":\\\"^\\\\\\\\s*(style)\\\\\\\\b(\\\\\\\\S*\\\\\\\\.less)\\\\\\\\s+(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.builtin.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.modifier.marko.css\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko.css\\\"}},\\\"contentName\\\":\\\"source.less\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko.css\\\"}},\\\"name\\\":\\\"meta.embedded.less\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.css.less\\\"}]},{\\\"begin\\\":\\\"^\\\\\\\\s*(style)\\\\\\\\b(\\\\\\\\S*\\\\\\\\.scss)\\\\\\\\s+(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.builtin.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.modifier.marko.css\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko.css\\\"}},\\\"contentName\\\":\\\"source.scss\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko.css\\\"}},\\\"name\\\":\\\"meta.embedded.scss\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.css.scss\\\"}]},{\\\"begin\\\":\\\"^\\\\\\\\s*(style)\\\\\\\\b(\\\\\\\\S*\\\\\\\\.[jt]s)\\\\\\\\s+(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.builtin.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.modifier.marko.css\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko.css\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko.css\\\"}},\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},{\\\"begin\\\":\\\"^\\\\\\\\s*(?:((?:static|server|client)(?![-$0-9@-Z_a-z]))|(?=(?:class|import|export)[^-$0-9@-Z_a-z]))\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.static.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?=\\\\\\\\n|$)\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},{\\\"include\\\":\\\"#content-concise-mode\\\"}],\\\"repository\\\":{\\\"attr-value\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(:?=)\\\\\\\\s*\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?=[],;]|/>|(?<=[^=>])>|(?<!^|[!%\\\\\\\\&*:?^|~]|[-!%\\\\\\\\&*+/<-?^|~]=|[=>]>|[^.]\\\\\\\\.|[^-]-|[^+]\\\\\\\\+|[]%).0-9<A-Za-z}]\\\\\\\\s/|[^$.\\\\\\\\w]await|[^$.\\\\\\\\w]async|[^$.\\\\\\\\w]class|[^$.\\\\\\\\w]function|[^$.\\\\\\\\w]keyof|[^$.\\\\\\\\w]new|[^$.\\\\\\\\w]readonly|[^$.\\\\\\\\w]infer|[^$.\\\\\\\\w]typeof|[^$.\\\\\\\\w]void)\\\\\\\\s+(?![\\\\\\\\n!%\\\\\\\\&(*+:?^{|~]|[-/<=>]=|[=>]>|\\\\\\\\.[^.]|-[^-]|/[^>]|(?:in|instanceof|satisfies|as|extends)\\\\\\\\s+[^,/:;=>]))\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-expression\\\"}]},\\\"attrs\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-comments\\\"},{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"(?:(key|on[-$0-9A-Z_a-z]+|[$0-9A-Z_a-z]+Change|no-update(?:-body)?(?:-if)?)|([$0-9A-Z_a-z][-$0-9A-Z_a-z]*)|(#[$0-9A-Z_a-z][-$0-9A-Z_a-z]*))(:[$0-9A-Z_a-z][-$0-9A-Z_a-z]*)?\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.attribute-name.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.other.attribute-name.marko\\\"},\\\"3\\\":{\\\"name\\\":\\\"support.function.attribute-name.marko\\\"},\\\"4\\\":{\\\"name\\\":\\\"support.function.attribute-name.marko\\\"}},\\\"end\\\":\\\"(?=.|$)\\\",\\\"name\\\":\\\"meta.marko-attribute\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#html-args-or-method\\\"},{\\\"include\\\":\\\"#attr-value\\\"}]},{\\\"begin\\\":\\\"(\\\\\\\\.\\\\\\\\.\\\\\\\\.)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.spread.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?=[],;]|/>|(?<=[^=>])>|(?<!^|[!%\\\\\\\\&*:?^|~]|[-!%\\\\\\\\&*+/<-?^|~]=|[=>]>|[^.]\\\\\\\\.|[^-]-|[^+]\\\\\\\\+|[]%).0-9<A-Za-z}]\\\\\\\\s/|[^$.\\\\\\\\w]await|[^$.\\\\\\\\w]async|[^$.\\\\\\\\w]class|[^$.\\\\\\\\w]function|[^$.\\\\\\\\w]keyof|[^$.\\\\\\\\w]new|[^$.\\\\\\\\w]readonly|[^$.\\\\\\\\w]infer|[^$.\\\\\\\\w]typeof|[^$.\\\\\\\\w]void)\\\\\\\\s+(?![\\\\\\\\n!%\\\\\\\\&(*+:?^{|~]|[-/<=>]=|[=>]>|\\\\\\\\.[^.]|-[^-]|/[^>]|(?:in|instanceof|satisfies|as|extends)\\\\\\\\s+[^,/:;=>]))\\\",\\\"name\\\":\\\"meta.marko-spread-attribute\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-expression\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\s*(,(?!,))\\\",\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.separator.comma.marko\\\"}},\\\"end\\\":\\\"(?=\\\\\\\\S)\\\"},{\\\"include\\\":\\\"#invalid\\\"}]},\\\"cdata\\\":{\\\"begin\\\":\\\"\\\\\\\\s*<!\\\\\\\\[CDATA\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"contentName\\\":\\\"string.other.inline-data.marko\\\",\\\"end\\\":\\\"]]>\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"name\\\":\\\"meta.tag.metadata.cdata.marko\\\"},\\\"concise-attr-group\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-attr-group\\\"},{\\\"begin\\\":\\\"\\\\\\\\s+\\\",\\\"end\\\":\\\"(?=\\\\\\\\S)\\\"},{\\\"include\\\":\\\"#attrs\\\"},{\\\"include\\\":\\\"#invalid\\\"}]},\\\"concise-comment-block\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-comment-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-comment\\\"}]},\\\"concise-comment-line\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"end\\\":\\\"$\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-comment-line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-comment\\\"}]},\\\"concise-html-block\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-html-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-html-mode\\\"}]},\\\"concise-html-line\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#cdata\\\"},{\\\"include\\\":\\\"#doctype\\\"},{\\\"include\\\":\\\"#declaration\\\"},{\\\"include\\\":\\\"#javascript-comments-after-whitespace\\\"},{\\\"include\\\":\\\"#html-comment\\\"},{\\\"include\\\":\\\"#tag-html\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"text.marko\\\"},{\\\"include\\\":\\\"#placeholder\\\"},{\\\"match\\\":\\\".+?\\\",\\\"name\\\":\\\"text.marko\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"match\\\":\\\"\\\\\\\\s*(--+)(?=\\\\\\\\s+\\\\\\\\S)(.*)$()\\\",\\\"name\\\":\\\"meta.section.marko-html-line\\\"},\\\"concise-open-tag-content\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#invalid-close-tag\\\"},{\\\"include\\\":\\\"#tag-before-attrs\\\"},{\\\"include\\\":\\\"#concise-semi-eol\\\"},{\\\"begin\\\":\\\"(?!^)[\\\\\\\\t ,]\\\",\\\"end\\\":\\\"(?=--)|(?=\\\\\\\\n)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-semi-eol\\\"},{\\\"include\\\":\\\"#concise-attr-group\\\"},{\\\"begin\\\":\\\"[\\\\\\\\t ]+\\\",\\\"end\\\":\\\"(?=[\\\\\\\\n\\\\\\\\S])\\\"},{\\\"include\\\":\\\"#attrs\\\"},{\\\"include\\\":\\\"#invalid\\\"}]}]},\\\"concise-script-block\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-script-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-script\\\"}]},\\\"concise-script-line\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"end\\\":\\\"$\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-script-line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-script\\\"}]},\\\"concise-semi-eol\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(;)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.terminator.marko\\\"}},\\\"end\\\":\\\"$\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-comments\\\"},{\\\"include\\\":\\\"#html-comment\\\"},{\\\"include\\\":\\\"#invalid\\\"}]},\\\"concise-style-block\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.css\\\",\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style\\\"}]},\\\"concise-style-block-less\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.less\\\",\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-less\\\"}]},\\\"concise-style-block-scss\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\\\\\\s*$\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.scss\\\",\\\"end\\\":\\\"\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-block\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-scss\\\"}]},\\\"concise-style-line\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.css\\\",\\\"end\\\":\\\"$\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style\\\"}]},\\\"concise-style-line-less\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.less\\\",\\\"end\\\":\\\"$\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-less\\\"}]},\\\"concise-style-line-scss\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\s*(--+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.scss\\\",\\\"end\\\":\\\"$\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.embedded.scope.end.marko\\\"}},\\\"name\\\":\\\"meta.section.marko-style-line\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-scss\\\"}]},\\\"content-concise-mode\\\":{\\\"name\\\":\\\"meta.marko-concise-content\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#scriptlet\\\"},{\\\"include\\\":\\\"#javascript-comments\\\"},{\\\"include\\\":\\\"#cdata\\\"},{\\\"include\\\":\\\"#doctype\\\"},{\\\"include\\\":\\\"#declaration\\\"},{\\\"include\\\":\\\"#html-comment\\\"},{\\\"include\\\":\\\"#concise-html-block\\\"},{\\\"include\\\":\\\"#concise-html-line\\\"},{\\\"include\\\":\\\"#invalid-close-tag\\\"},{\\\"include\\\":\\\"#tag-html\\\"},{\\\"patterns\\\":[{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=html-comment[^-$0-9@-Z_a-z])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-comment-block\\\"},{\\\"include\\\":\\\"#concise-comment-line\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=style\\\\\\\\b\\\\\\\\S*\\\\\\\\.less\\\\\\\\b)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-style-block-less\\\"},{\\\"include\\\":\\\"#concise-style-line-less\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=style\\\\\\\\b\\\\\\\\S*\\\\\\\\.scss\\\\\\\\b)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-style-block-scss\\\"},{\\\"include\\\":\\\"#concise-style-line-scss\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=style\\\\\\\\b\\\\\\\\S*\\\\\\\\.[jt]s\\\\\\\\b)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-script-block\\\"},{\\\"include\\\":\\\"#concise-script-line\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=(?:html-)?style[^-$0-9@-Z_a-z])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-style-block\\\"},{\\\"include\\\":\\\"#concise-style-line\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^(\\\\\\\\s*)(?=(?:html-)?script[^-$0-9@-Z_a-z])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#concise-script-block\\\"},{\\\"include\\\":\\\"#concise-script-line\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"},{\\\"begin\\\":\\\"^([\\\\\\\\t ]*)(?=[#$.0-9@-Z_a-z])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#concise-open-tag-content\\\"},{\\\"include\\\":\\\"#content-concise-mode\\\"}],\\\"while\\\":\\\"(?=^(?:\\\\\\\\s*[])`}]|\\\\\\\\*/|\\\\\\\\s*$|\\\\\\\\1\\\\\\\\s+(\\\\\\\\S|$)))\\\"}]}]},\\\"content-embedded-comment\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#placeholder\\\"},{\\\"match\\\":\\\".\\\",\\\"name\\\":\\\"comment.block.marko\\\"}]},\\\"content-embedded-script\\\":{\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeholder\\\"},{\\\"include\\\":\\\"source.ts\\\"}]},\\\"content-embedded-style\\\":{\\\"name\\\":\\\"meta.embedded.css\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeholder\\\"},{\\\"include\\\":\\\"source.css\\\"}]},\\\"content-embedded-style-less\\\":{\\\"name\\\":\\\"meta.embedded.css.less\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeholder\\\"},{\\\"include\\\":\\\"source.css.less\\\"}]},\\\"content-embedded-style-scss\\\":{\\\"name\\\":\\\"meta.embedded.css.scss\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeholder\\\"},{\\\"include\\\":\\\"source.css.scss\\\"}]},\\\"content-html-mode\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#scriptlet\\\"},{\\\"include\\\":\\\"#cdata\\\"},{\\\"include\\\":\\\"#doctype\\\"},{\\\"include\\\":\\\"#declaration\\\"},{\\\"include\\\":\\\"#javascript-comments-after-whitespace\\\"},{\\\"include\\\":\\\"#html-comment\\\"},{\\\"include\\\":\\\"#invalid-close-tag\\\"},{\\\"include\\\":\\\"#tag-html\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"text.marko\\\"},{\\\"include\\\":\\\"#placeholder\\\"},{\\\"match\\\":\\\".+?\\\",\\\"name\\\":\\\"text.marko\\\"}]},\\\"declaration\\\":{\\\"begin\\\":\\\"(<\\\\\\\\?)\\\\\\\\s*([-$0-9A-Z_a-z]*)\\\",\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.tag.marko\\\"}},\\\"end\\\":\\\"(\\\\\\\\??>)\\\",\\\"name\\\":\\\"meta.tag.metadata.processing.xml.marko\\\",\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.other.attribute-name.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.separator.key-value.html\\\"},\\\"3\\\":{\\\"name\\\":\\\"string.quoted.double.marko\\\"},\\\"4\\\":{\\\"name\\\":\\\"string.quoted.single.marko\\\"},\\\"5\\\":{\\\"name\\\":\\\"string.unquoted.marko\\\"}},\\\"match\\\":\\\"((?:[^=>?\\\\\\\\s]|\\\\\\\\?(?!>))+)(=)(?:(\\\\\\\"(?:[^\\\\\\\"\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.)*\\\\\\\")|('(?:[^'\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.)*')|((?:[^>?\\\\\\\\s]|\\\\\\\\?(?!>))+))\\\"}]},\\\"doctype\\\":{\\\"begin\\\":\\\"\\\\\\\\s*<!(?=(?i:DOCTYPE\\\\\\\\s))\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\">\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"name\\\":\\\"meta.tag.metadata.doctype.marko\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\G(?i:DOCTYPE)\\\",\\\"name\\\":\\\"entity.name.tag.marko\\\"},{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"end\\\":\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double.marko\\\"},{\\\"match\\\":\\\"[^>\\\\\\\\s]+\\\",\\\"name\\\":\\\"entity.other.attribute-name.marko\\\"}]},\\\"html-args-or-method\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-type-params\\\"},{\\\"begin\\\":\\\"\\\\\\\\s*(?=\\\\\\\\()\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=\\\\\\\\))\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#paren-expression\\\"}]},{\\\"begin\\\":\\\"(?<=\\\\\\\\))\\\\\\\\s*(?=\\\\\\\\{)\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=})\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]}]},\\\"html-comment\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(<!(--)?)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.comment.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\2>\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.marko\\\"}},\\\"name\\\":\\\"comment.block.marko\\\"},\\\"invalid\\\":{\\\"match\\\":\\\"\\\\\\\\S\\\",\\\"name\\\":\\\"invalid.illegal.character-not-allowed-here.marko\\\"},\\\"invalid-close-tag\\\":{\\\"begin\\\":\\\"\\\\\\\\s*</[^>]*\\\",\\\"end\\\":\\\">\\\",\\\"name\\\":\\\"invalid.illegal.character-not-allowed-here.marko\\\"},\\\"javascript-comments\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\s*(?=/\\\\\\\\*)\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=\\\\\\\\*/)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},{\\\"captures\\\":{\\\"0\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]}},\\\"contentName\\\":\\\"source.ts\\\",\\\"match\\\":\\\"\\\\\\\\s*//.*$\\\"}]},\\\"javascript-comments-after-whitespace\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"(?:^|\\\\\\\\s+)(?=/\\\\\\\\*)\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=\\\\\\\\*/)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},{\\\"captures\\\":{\\\"0\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]}},\\\"contentName\\\":\\\"source.ts\\\",\\\"match\\\":\\\"(?:^|\\\\\\\\s+)//.*$\\\"}]},\\\"javascript-expression\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-comments\\\"},{\\\"captures\\\":{\\\"0\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]}},\\\"contentName\\\":\\\"source.ts\\\",\\\"match\\\":\\\"(?:\\\\\\\\s*\\\\\\\\b(?:as|await|extends|in|instanceof|satisfies|keyof|new|typeof|void))+\\\\\\\\s+(?![,/:;=>])[#$0-9@-Z_a-z]*\\\"},{\\\"applyEndPatternLast\\\":1,\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"string.regexp.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#regexp\\\"},{\\\"include\\\":\\\"source.ts\\\"}]}},\\\"contentName\\\":\\\"source.ts\\\",\\\"match\\\":\\\"(?<![]%).0-9<A-Za-z}])\\\\\\\\s*/(?:[^/\\\\\\\\[\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.|\\\\\\\\[(?:[^]\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.)*])*/[A-Za-z]*\\\"},{\\\"include\\\":\\\"source.ts\\\"}]},\\\"javascript-placeholder\\\":{\\\"begin\\\":\\\"\\\\\\\\$\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.begin.ts\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.end.ts\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},\\\"open-tag-content\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#invalid-close-tag\\\"},{\\\"include\\\":\\\"#tag-before-attrs\\\"},{\\\"begin\\\":\\\"(?!/?>)\\\",\\\"end\\\":\\\"(?=/?>)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#attrs\\\"}]}]},\\\"placeholder\\\":{\\\"begin\\\":\\\"\\\\\\\\$!?\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.begin.ts\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.template-expression.end.ts\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},\\\"scriptlet\\\":{\\\"begin\\\":\\\"^\\\\\\\\s*(\\\\\\\\$)\\\\\\\\s+\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.scriptlet.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts\\\"}]},\\\"tag-before-attrs\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"},{\\\"include\\\":\\\"#tag-shorthand-class-or-id\\\"},{\\\"begin\\\":\\\"/(?![*/])\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.separator.tag-variable.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?=[(,/;<>|]|:?=|\\\\\\\\s+[^:]|$)\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"[$A-Z_a-z][$0-9A-Z_a-z]*\\\",\\\"name\\\":\\\"variable.other.constant.object.ts\\\"},{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.binding-pattern.object.ts\\\"}},\\\"end\\\":\\\"}\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#object-binding-element\\\"},{\\\"include\\\":\\\"#javascript-expression\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.binding-pattern.array.ts\\\"}},\\\"end\\\":\\\"]\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#array-binding-element\\\"},{\\\"include\\\":\\\"#javascript-expression\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\s*(:)(?!=)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.type.annotation.ts\\\"}},\\\"end\\\":\\\"(?=[](,;]|/>|(?<=[^=>])>|(?<!^|[!%\\\\\\\\&*:?^|~]|[-!%\\\\\\\\&*+/<-?^|~]=|[=>]>|[^.]\\\\\\\\.|[^-]-|[^+]\\\\\\\\+|[]%).0-9<A-Za-z}]\\\\\\\\s/|[^$.\\\\\\\\w]await|[^$.\\\\\\\\w]async|[^$.\\\\\\\\w]class|[^$.\\\\\\\\w]function|[^$.\\\\\\\\w]keyof|[^$.\\\\\\\\w]new|[^$.\\\\\\\\w]readonly|[^$.\\\\\\\\w]infer|[^$.\\\\\\\\w]typeof|[^$.\\\\\\\\w]void)\\\\\\\\s+(?![\\\\\\\\n!%\\\\\\\\&*+:?^{|~]|[-/<=>]=|[=>]>|\\\\\\\\.[^.]|-[^-]|/[^>]|(?:in|instanceof|satisfies|as|extends)\\\\\\\\s+[^,/:;=>]))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#type\\\"},{\\\"include\\\":\\\"#javascript-expression\\\"}]},{\\\"include\\\":\\\"#javascript-expression\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\s*\\\\\\\\|\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.begin.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"\\\\\\\\|\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.scope.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#comment\\\"},{\\\"include\\\":\\\"source.ts#string\\\"},{\\\"include\\\":\\\"source.ts#decorator\\\"},{\\\"include\\\":\\\"source.ts#destructuring-parameter\\\"},{\\\"include\\\":\\\"source.ts#parameter-name\\\"},{\\\"begin\\\":\\\"(:)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.type.annotation.ts\\\"}},\\\"end\\\":\\\"(?=[,|])|(?==[^>])\\\",\\\"name\\\":\\\"meta.type.annotation.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#type\\\"}]},{\\\"include\\\":\\\"source.ts#variable-initializer\\\"},{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"punctuation.separator.parameter.ts\\\"},{\\\"include\\\":\\\"source.ts\\\"}]},{\\\"include\\\":\\\"#html-args-or-method\\\"},{\\\"include\\\":\\\"#attr-value\\\"}]},\\\"tag-html\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=(area|base|br|col|embed|hr|img|input|link|meta|param|source|track|wbr|const|debug|id|let|lifecycle|log|return)[^-$0-9@-Z_a-z])\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/?>\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=html-comment[^-$0-9@-Z_a-z])\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</(?:>|html-comment>))\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\s*</(?:>|html-comment>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-comment\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=style\\\\\\\\S*\\\\\\\\.less\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</style>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"contentName\\\":\\\"source.less\\\",\\\"end\\\":\\\"\\\\\\\\s*(</)(style)?(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-less\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=style\\\\\\\\S*\\\\\\\\.scss\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</style>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"contentName\\\":\\\"source.scss\\\",\\\"end\\\":\\\"\\\\\\\\s*(</)(style)?(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style-scss\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=style\\\\\\\\S*\\\\\\\\.[jt]s\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</style>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"\\\\\\\\s*(</)((?:html-)?style)?(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-script\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=((?:html-)?style)[^-$0-9@-Z_a-z])\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</\\\\\\\\2>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"contentName\\\":\\\"source.css\\\",\\\"end\\\":\\\"\\\\\\\\s*(</)((?:html-)?style)?(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-style\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=((?:html-)?script)[^-$0-9@-Z_a-z])\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</\\\\\\\\2>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"\\\\\\\\s*(</)((?:html-)?script)?(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-embedded-script\\\"}]}]},{\\\"begin\\\":\\\"\\\\\\\\s*(<)(?=[#$.]|([-$0-9@-Z_a-z]+))\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"}},\\\"end\\\":\\\"/>|(?<=</>)|(?<=</\\\\\\\\2>)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#open-tag-content\\\"},{\\\"begin\\\":\\\">\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"end\\\":\\\"\\\\\\\\s*(</)([-#$.0-:@-Z_a-z]+)?([^>]*)(>)\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.tag.begin.marko\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-name\\\"},{\\\"include\\\":\\\"#tag-shorthand-class-or-id\\\"}]},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#invalid\\\"}]},\\\"4\\\":{\\\"name\\\":\\\"punctuation.definition.tag.end.marko\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#content-html-mode\\\"}]}]}]},\\\"tag-name\\\":{\\\"patterns\\\":[{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"\\\\\\\\G(style)\\\\\\\\b(\\\\\\\\.[-$0-9A-Z_a-z]+(?:\\\\\\\\.[-$0-9A-Z_a-z]+)*)|([0-9@-Z_a-z](?:[-0-9@-Z_a-z]|:(?!=))*)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.type.builtin.marko\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.type.marko.css\\\"},\\\"3\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"(script|style|html-script|html-style|html-comment)(?![-$0-9@-Z_a-z])\\\",\\\"name\\\":\\\"support.type.builtin.marko\\\"},{\\\"match\\\":\\\"(for|if|while|else-if|else|try|await|return)(?![-$0-9@-Z_a-z])\\\",\\\"name\\\":\\\"keyword.control.flow.marko\\\"},{\\\"match\\\":\\\"(const|context|debug|define|id|let|log|lifecycle)(?![-$0-9@-Z_a-z])\\\",\\\"name\\\":\\\"support.function.marko\\\"},{\\\"match\\\":\\\"@.+\\\",\\\"name\\\":\\\"entity.other.attribute-name.marko\\\"},{\\\"match\\\":\\\".+\\\",\\\"name\\\":\\\"entity.name.tag.marko\\\"}]}},\\\"end\\\":\\\"(?=.)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-type-args\\\"}]},{\\\"begin\\\":\\\"(?=[$0-9A-Z_a-z]|-[^-])\\\",\\\"end\\\":\\\"(?=[^-$0-9A-Z_a-z]|$)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-placeholder\\\"},{\\\"match\\\":\\\"(?:[-0-9A-Z_a-z]|\\\\\\\\$(?!\\\\\\\\{))+\\\",\\\"name\\\":\\\"entity.name.tag.marko\\\"}]}]},\\\"tag-shorthand-class-or-id\\\":{\\\"begin\\\":\\\"(?=[#.])\\\",\\\"end\\\":\\\"$|(?=--|[^-#$.0-9A-Z_a-z])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#javascript-placeholder\\\"},{\\\"match\\\":\\\"(?:[-#.0-9A-Z_a-z]|\\\\\\\\$(?!\\\\\\\\{))+\\\",\\\"name\\\":\\\"entity.other.attribute-name.marko\\\"}]},\\\"tag-type-args\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"(?=<)\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=>)\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"(?<=>)(?=[\\\\\\\\t ]*<)\\\",\\\"end\\\":\\\"(?=.)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#tag-type-params\\\"}]},{\\\"include\\\":\\\"source.ts#type-arguments\\\"}]},\\\"tag-type-params\\\":{\\\"applyEndPatternLast\\\":1,\\\"begin\\\":\\\"(?!^)[\\\\\\\\t ]*(?=<)\\\",\\\"contentName\\\":\\\"source.ts\\\",\\\"end\\\":\\\"(?<=>)\\\",\\\"name\\\":\\\"meta.embedded.ts\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.ts#type-parameters\\\"}]}},\\\"scopeName\\\":\\\"text.marko\\\",\\\"embeddedLangs\\\":[\\\"css\\\",\\\"less\\\",\\\"scss\\\",\\\"typescript\\\"]}\"))\n\nexport default [\n...css,\n...less,\n...scss,\n...typescript,\nlang\n]\n"],"names":["lang","marko","css","less","scss","typescript"],"mappings":"6IAKA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,sqxBAAwg3B,CAAC,EAE/i3BC,EAAe,CACf,GAAGC,EACH,GAAGC,EACH,GAAGC,EACH,GAAGC,EACHL,CACA","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright: (c) Myia SAS 2026.
|
|
3
|
+
* This file and its contents are licensed under the AGPLv3 License.
|
|
4
|
+
* Please see the LICENSE file at the root of this repository
|
|
5
|
+
*/
|
|
6
|
+
const e = Object.freeze(
|
|
7
|
+
JSON.parse(
|
|
8
|
+
'{"colors":{"activityBar.activeBorder":"#80CBC4","activityBar.background":"#263238","activityBar.border":"#26323860","activityBar.dropBackground":"#f0717880","activityBar.foreground":"#EEFFFF","activityBarBadge.background":"#80CBC4","activityBarBadge.foreground":"#000000","badge.background":"#00000030","badge.foreground":"#546E7A","breadcrumb.activeSelectionForeground":"#80CBC4","breadcrumb.background":"#263238","breadcrumb.focusForeground":"#EEFFFF","breadcrumb.foreground":"#6c8692","breadcrumbPicker.background":"#263238","button.background":"#80CBC420","button.foreground":"#ffffff","debugConsole.errorForeground":"#f07178","debugConsole.infoForeground":"#89DDFF","debugConsole.warningForeground":"#FFCB6B","debugToolBar.background":"#263238","diffEditor.insertedTextBackground":"#89DDFF20","diffEditor.removedTextBackground":"#ff9cac20","dropdown.background":"#263238","dropdown.border":"#FFFFFF10","editor.background":"#263238","editor.findMatchBackground":"#000000","editor.findMatchBorder":"#80CBC4","editor.findMatchHighlight":"#EEFFFF","editor.findMatchHighlightBackground":"#00000050","editor.findMatchHighlightBorder":"#ffffff30","editor.findRangeHighlightBackground":"#FFCB6B30","editor.foreground":"#EEFFFF","editor.lineHighlightBackground":"#00000050","editor.lineHighlightBorder":"#00000000","editor.rangeHighlightBackground":"#FFFFFF0d","editor.selectionBackground":"#80CBC420","editor.selectionHighlightBackground":"#FFCC0020","editor.wordHighlightBackground":"#ff9cac30","editor.wordHighlightStrongBackground":"#C3E88D30","editorBracketMatch.background":"#263238","editorBracketMatch.border":"#FFCC0050","editorCursor.foreground":"#FFCC00","editorError.foreground":"#f0717870","editorGroup.border":"#00000030","editorGroup.dropBackground":"#f0717880","editorGroup.focusedEmptyBorder":"#f07178","editorGroupHeader.tabsBackground":"#263238","editorGutter.addedBackground":"#C3E88D60","editorGutter.deletedBackground":"#f0717860","editorGutter.modifiedBackground":"#82AAFF60","editorHoverWidget.background":"#263238","editorHoverWidget.border":"#FFFFFF10","editorIndentGuide.activeBackground":"#37474F","editorIndentGuide.background":"#37474F70","editorInfo.foreground":"#82AAFF70","editorLineNumber.activeForeground":"#6c8692","editorLineNumber.foreground":"#465A64","editorLink.activeForeground":"#EEFFFF","editorMarkerNavigation.background":"#EEFFFF05","editorOverviewRuler.border":"#263238","editorOverviewRuler.errorForeground":"#f0717840","editorOverviewRuler.findMatchForeground":"#80CBC4","editorOverviewRuler.infoForeground":"#82AAFF40","editorOverviewRuler.warningForeground":"#FFCB6B40","editorRuler.foreground":"#37474F","editorSuggestWidget.background":"#263238","editorSuggestWidget.border":"#FFFFFF10","editorSuggestWidget.foreground":"#EEFFFF","editorSuggestWidget.highlightForeground":"#80CBC4","editorSuggestWidget.selectedBackground":"#00000050","editorWarning.foreground":"#FFCB6B70","editorWhitespace.foreground":"#EEFFFF40","editorWidget.background":"#263238","editorWidget.border":"#80CBC4","editorWidget.resizeBorder":"#80CBC4","extensionBadge.remoteForeground":"#EEFFFF","extensionButton.prominentBackground":"#C3E88D90","extensionButton.prominentForeground":"#EEFFFF","extensionButton.prominentHoverBackground":"#C3E88D","focusBorder":"#FFFFFF00","foreground":"#EEFFFF","gitDecoration.conflictingResourceForeground":"#FFCB6B90","gitDecoration.deletedResourceForeground":"#f0717890","gitDecoration.ignoredResourceForeground":"#6c869290","gitDecoration.modifiedResourceForeground":"#82AAFF90","gitDecoration.untrackedResourceForeground":"#C3E88D90","input.background":"#303C41","input.border":"#FFFFFF10","input.foreground":"#EEFFFF","input.placeholderForeground":"#EEFFFF60","inputOption.activeBackground":"#EEFFFF30","inputOption.activeBorder":"#EEFFFF30","inputValidation.errorBorder":"#f07178","inputValidation.infoBorder":"#82AAFF","inputValidation.warningBorder":"#FFCB6B","list.activeSelectionBackground":"#263238","list.activeSelectionForeground":"#80CBC4","list.dropBackground":"#f0717880","list.focusBackground":"#EEFFFF20","list.focusForeground":"#EEFFFF","list.highlightForeground":"#80CBC4","list.hoverBackground":"#263238","list.hoverForeground":"#FFFFFF","list.inactiveSelectionBackground":"#00000030","list.inactiveSelectionForeground":"#80CBC4","listFilterWidget.background":"#00000030","listFilterWidget.noMatchesOutline":"#00000030","listFilterWidget.outline":"#00000030","menu.background":"#263238","menu.foreground":"#EEFFFF","menu.selectionBackground":"#00000050","menu.selectionBorder":"#00000030","menu.selectionForeground":"#80CBC4","menu.separatorBackground":"#EEFFFF","menubar.selectionBackground":"#00000030","menubar.selectionBorder":"#00000030","menubar.selectionForeground":"#80CBC4","notebook.focusedCellBorder":"#80CBC4","notebook.inactiveFocusedCellBorder":"#80CBC450","notificationLink.foreground":"#80CBC4","notifications.background":"#263238","notifications.foreground":"#EEFFFF","panel.background":"#263238","panel.border":"#26323860","panel.dropBackground":"#EEFFFF","panelTitle.activeBorder":"#80CBC4","panelTitle.activeForeground":"#FFFFFF","panelTitle.inactiveForeground":"#EEFFFF","peekView.border":"#00000030","peekViewEditor.background":"#303C41","peekViewEditor.matchHighlightBackground":"#80CBC420","peekViewEditorGutter.background":"#303C41","peekViewResult.background":"#303C41","peekViewResult.matchHighlightBackground":"#80CBC420","peekViewResult.selectionBackground":"#6c869270","peekViewTitle.background":"#303C41","peekViewTitleDescription.foreground":"#EEFFFF60","pickerGroup.border":"#FFFFFF1a","pickerGroup.foreground":"#80CBC4","progressBar.background":"#80CBC4","quickInput.background":"#263238","quickInput.foreground":"#6c8692","quickInput.list.focusBackground":"#EEFFFF20","sash.hoverBorder":"#80CBC450","scrollbar.shadow":"#00000030","scrollbarSlider.activeBackground":"#80CBC4","scrollbarSlider.background":"#EEFFFF20","scrollbarSlider.hoverBackground":"#EEFFFF10","selection.background":"#00000080","settings.checkboxBackground":"#263238","settings.checkboxForeground":"#EEFFFF","settings.dropdownBackground":"#263238","settings.dropdownForeground":"#EEFFFF","settings.headerForeground":"#80CBC4","settings.modifiedItemIndicator":"#80CBC4","settings.numberInputBackground":"#263238","settings.numberInputForeground":"#EEFFFF","settings.textInputBackground":"#263238","settings.textInputForeground":"#EEFFFF","sideBar.background":"#263238","sideBar.border":"#26323860","sideBar.foreground":"#6c8692","sideBarSectionHeader.background":"#263238","sideBarSectionHeader.border":"#26323860","sideBarTitle.foreground":"#EEFFFF","statusBar.background":"#263238","statusBar.border":"#26323860","statusBar.debuggingBackground":"#C792EA","statusBar.debuggingForeground":"#ffffff","statusBar.foreground":"#546E7A","statusBar.noFolderBackground":"#263238","statusBarItem.activeBackground":"#f0717880","statusBarItem.hoverBackground":"#546E7A20","statusBarItem.remoteBackground":"#80CBC4","statusBarItem.remoteForeground":"#000000","tab.activeBackground":"#263238","tab.activeBorder":"#80CBC4","tab.activeForeground":"#FFFFFF","tab.activeModifiedBorder":"#6c8692","tab.border":"#263238","tab.inactiveBackground":"#263238","tab.inactiveForeground":"#6c8692","tab.inactiveModifiedBorder":"#904348","tab.unfocusedActiveBorder":"#546E7A","tab.unfocusedActiveForeground":"#EEFFFF","tab.unfocusedActiveModifiedBorder":"#c05a60","tab.unfocusedInactiveModifiedBorder":"#904348","terminal.ansiBlack":"#000000","terminal.ansiBlue":"#82AAFF","terminal.ansiBrightBlack":"#546E7A","terminal.ansiBrightBlue":"#82AAFF","terminal.ansiBrightCyan":"#89DDFF","terminal.ansiBrightGreen":"#C3E88D","terminal.ansiBrightMagenta":"#C792EA","terminal.ansiBrightRed":"#f07178","terminal.ansiBrightWhite":"#ffffff","terminal.ansiBrightYellow":"#FFCB6B","terminal.ansiCyan":"#89DDFF","terminal.ansiGreen":"#C3E88D","terminal.ansiMagenta":"#C792EA","terminal.ansiRed":"#f07178","terminal.ansiWhite":"#ffffff","terminal.ansiYellow":"#FFCB6B","terminalCursor.background":"#000000","terminalCursor.foreground":"#FFCB6B","textLink.activeForeground":"#EEFFFF","textLink.foreground":"#80CBC4","titleBar.activeBackground":"#263238","titleBar.activeForeground":"#EEFFFF","titleBar.border":"#26323860","titleBar.inactiveBackground":"#263238","titleBar.inactiveForeground":"#6c8692","tree.indentGuidesStroke":"#37474F","widget.shadow":"#00000030"},"displayName":"Material Theme","name":"material-theme","semanticHighlighting":true,"tokenColors":[{"settings":{"background":"#263238","foreground":"#EEFFFF"}},{"scope":"string","settings":{"foreground":"#C3E88D"}},{"scope":"punctuation, constant.other.symbol","settings":{"foreground":"#89DDFF"}},{"scope":"constant.character.escape, text.html constant.character.entity.named","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.language.boolean","settings":{"foreground":"#ff9cac"}},{"scope":"constant.numeric","settings":{"foreground":"#F78C6C"}},{"scope":"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments","settings":{"foreground":"#EEFFFF"}},{"scope":"keyword.other","settings":{"foreground":"#F78C6C"}},{"scope":"keyword, modifier, variable.language.this, support.type.object, constant.language","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.function, support.function","settings":{"foreground":"#82AAFF"}},{"scope":"storage.type, storage.modifier, storage.control","settings":{"foreground":"#C792EA"}},{"scope":"support.module, support.node","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"support.type, constant.other.key","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.name.type, entity.other.inherited-class, entity.other","settings":{"foreground":"#FFCB6B"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#546E7A"}},{"scope":"comment punctuation.definition.comment, string.quoted.docstring","settings":{"fontStyle":"italic","foreground":"#546E7A"}},{"scope":"punctuation","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name, entity.name.type.class, support.type, support.class, meta.use","settings":{"foreground":"#FFCB6B"}},{"scope":"variable.object.property, meta.field.declaration entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.definition.method entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.function entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end","settings":{"foreground":"#89DDFF"}},{"scope":"meta.embedded, source.groovy.embedded, meta.template.expression","settings":{"foreground":"#EEFFFF"}},{"scope":"entity.name.tag.yaml","settings":{"foreground":"#f07178"}},{"scope":"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json","settings":{"foreground":"#f07178"}},{"scope":"constant.language.json","settings":{"foreground":"#89DDFF"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#F78C6C"}},{"scope":"source.css entity.name.tag","settings":{"foreground":"#FFCB6B"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#B2CCD6"}},{"scope":"meta.tag, punctuation.definition.tag","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.tag","settings":{"foreground":"#f07178"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#C792EA"}},{"scope":"punctuation.definition.entity.html","settings":{"foreground":"#EEFFFF"}},{"scope":"markup.heading","settings":{"foreground":"#89DDFF"}},{"scope":"text.html.markdown meta.link.inline, meta.link.reference","settings":{"foreground":"#f07178"}},{"scope":"text.html.markdown beginning.punctuation.definition.list","settings":{"foreground":"#89DDFF"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#f07178"}},{"scope":"markup.bold markup.italic, markup.italic markup.bold","settings":{"fontStyle":"italic bold","foreground":"#f07178"}},{"scope":"markup.fenced_code.block.markdown punctuation.definition.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"markup.inline.raw.string.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"keyword.other.definition.ini","settings":{"foreground":"#f07178"}},{"scope":"entity.name.section.group-title.ini","settings":{"foreground":"#89DDFF"}},{"scope":"source.cs meta.class.identifier storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.identifier entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"source.cs meta.method-call meta.method, source.cs entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"source.cs storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.return-type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.preprocessor","settings":{"foreground":"#546E7A"}},{"scope":"source.cs entity.name.type.namespace","settings":{"foreground":"#EEFFFF"}},{"scope":"meta.jsx.children, SXNested","settings":{"foreground":"#EEFFFF"}},{"scope":"support.class.component","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cpp meta.block variable.other","settings":{"foreground":"#EEFFFF"}},{"scope":"source.python meta.member.access.python","settings":{"foreground":"#f07178"}},{"scope":"source.python meta.function-call.python, meta.function-call.arguments","settings":{"foreground":"#82AAFF"}},{"scope":"meta.block","settings":{"foreground":"#f07178"}},{"scope":"entity.name.function.call","settings":{"foreground":"#82AAFF"}},{"scope":"source.php support.other.namespace, source.php meta.use support.class","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.keyword","settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":"entity.name.function","settings":{"foreground":"#82AAFF"}},{"settings":{"background":"#263238","foreground":"#EEFFFF"}},{"scope":["constant.other.placeholder"],"settings":{"foreground":"#f07178"}},{"scope":["markup.deleted"],"settings":{"foreground":"#f07178"}},{"scope":["markup.inserted"],"settings":{"foreground":"#C3E88D"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["keyword.control"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["variable.parameter"],"settings":{"fontStyle":"italic"}},{"scope":["variable.parameter.function.language.special.self.python"],"settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":["constant.character.format.placeholder.other.python"],"settings":{"foreground":"#F78C6C"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["markup.fenced_code.block"],"settings":{"foreground":"#EEFFFF90"}},{"scope":["punctuation.definition.quote"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FFCB6B"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#F78C6C"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#f07178"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#916b53"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#82AAFF"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C3E88D"}}],"type":"dark"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=material-theme-D5KoaKCx.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"material-theme-D5KoaKCx.js","sources":["../../../../node_modules/@shikijs/themes/dist/material-theme.mjs"],"sourcesContent":["/* Theme: material-theme */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBorder\\\":\\\"#80CBC4\\\",\\\"activityBar.background\\\":\\\"#263238\\\",\\\"activityBar.border\\\":\\\"#26323860\\\",\\\"activityBar.dropBackground\\\":\\\"#f0717880\\\",\\\"activityBar.foreground\\\":\\\"#EEFFFF\\\",\\\"activityBarBadge.background\\\":\\\"#80CBC4\\\",\\\"activityBarBadge.foreground\\\":\\\"#000000\\\",\\\"badge.background\\\":\\\"#00000030\\\",\\\"badge.foreground\\\":\\\"#546E7A\\\",\\\"breadcrumb.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"breadcrumb.background\\\":\\\"#263238\\\",\\\"breadcrumb.focusForeground\\\":\\\"#EEFFFF\\\",\\\"breadcrumb.foreground\\\":\\\"#6c8692\\\",\\\"breadcrumbPicker.background\\\":\\\"#263238\\\",\\\"button.background\\\":\\\"#80CBC420\\\",\\\"button.foreground\\\":\\\"#ffffff\\\",\\\"debugConsole.errorForeground\\\":\\\"#f07178\\\",\\\"debugConsole.infoForeground\\\":\\\"#89DDFF\\\",\\\"debugConsole.warningForeground\\\":\\\"#FFCB6B\\\",\\\"debugToolBar.background\\\":\\\"#263238\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#89DDFF20\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#ff9cac20\\\",\\\"dropdown.background\\\":\\\"#263238\\\",\\\"dropdown.border\\\":\\\"#FFFFFF10\\\",\\\"editor.background\\\":\\\"#263238\\\",\\\"editor.findMatchBackground\\\":\\\"#000000\\\",\\\"editor.findMatchBorder\\\":\\\"#80CBC4\\\",\\\"editor.findMatchHighlight\\\":\\\"#EEFFFF\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#00000050\\\",\\\"editor.findMatchHighlightBorder\\\":\\\"#ffffff30\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#FFCB6B30\\\",\\\"editor.foreground\\\":\\\"#EEFFFF\\\",\\\"editor.lineHighlightBackground\\\":\\\"#00000050\\\",\\\"editor.lineHighlightBorder\\\":\\\"#00000000\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#FFFFFF0d\\\",\\\"editor.selectionBackground\\\":\\\"#80CBC420\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#FFCC0020\\\",\\\"editor.wordHighlightBackground\\\":\\\"#ff9cac30\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#C3E88D30\\\",\\\"editorBracketMatch.background\\\":\\\"#263238\\\",\\\"editorBracketMatch.border\\\":\\\"#FFCC0050\\\",\\\"editorCursor.foreground\\\":\\\"#FFCC00\\\",\\\"editorError.foreground\\\":\\\"#f0717870\\\",\\\"editorGroup.border\\\":\\\"#00000030\\\",\\\"editorGroup.dropBackground\\\":\\\"#f0717880\\\",\\\"editorGroup.focusedEmptyBorder\\\":\\\"#f07178\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#263238\\\",\\\"editorGutter.addedBackground\\\":\\\"#C3E88D60\\\",\\\"editorGutter.deletedBackground\\\":\\\"#f0717860\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#82AAFF60\\\",\\\"editorHoverWidget.background\\\":\\\"#263238\\\",\\\"editorHoverWidget.border\\\":\\\"#FFFFFF10\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#37474F\\\",\\\"editorIndentGuide.background\\\":\\\"#37474F70\\\",\\\"editorInfo.foreground\\\":\\\"#82AAFF70\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#6c8692\\\",\\\"editorLineNumber.foreground\\\":\\\"#465A64\\\",\\\"editorLink.activeForeground\\\":\\\"#EEFFFF\\\",\\\"editorMarkerNavigation.background\\\":\\\"#EEFFFF05\\\",\\\"editorOverviewRuler.border\\\":\\\"#263238\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#f0717840\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#80CBC4\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#82AAFF40\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#FFCB6B40\\\",\\\"editorRuler.foreground\\\":\\\"#37474F\\\",\\\"editorSuggestWidget.background\\\":\\\"#263238\\\",\\\"editorSuggestWidget.border\\\":\\\"#FFFFFF10\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#EEFFFF\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#80CBC4\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#00000050\\\",\\\"editorWarning.foreground\\\":\\\"#FFCB6B70\\\",\\\"editorWhitespace.foreground\\\":\\\"#EEFFFF40\\\",\\\"editorWidget.background\\\":\\\"#263238\\\",\\\"editorWidget.border\\\":\\\"#80CBC4\\\",\\\"editorWidget.resizeBorder\\\":\\\"#80CBC4\\\",\\\"extensionBadge.remoteForeground\\\":\\\"#EEFFFF\\\",\\\"extensionButton.prominentBackground\\\":\\\"#C3E88D90\\\",\\\"extensionButton.prominentForeground\\\":\\\"#EEFFFF\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#C3E88D\\\",\\\"focusBorder\\\":\\\"#FFFFFF00\\\",\\\"foreground\\\":\\\"#EEFFFF\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#FFCB6B90\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#f0717890\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#6c869290\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#82AAFF90\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#C3E88D90\\\",\\\"input.background\\\":\\\"#303C41\\\",\\\"input.border\\\":\\\"#FFFFFF10\\\",\\\"input.foreground\\\":\\\"#EEFFFF\\\",\\\"input.placeholderForeground\\\":\\\"#EEFFFF60\\\",\\\"inputOption.activeBackground\\\":\\\"#EEFFFF30\\\",\\\"inputOption.activeBorder\\\":\\\"#EEFFFF30\\\",\\\"inputValidation.errorBorder\\\":\\\"#f07178\\\",\\\"inputValidation.infoBorder\\\":\\\"#82AAFF\\\",\\\"inputValidation.warningBorder\\\":\\\"#FFCB6B\\\",\\\"list.activeSelectionBackground\\\":\\\"#263238\\\",\\\"list.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"list.dropBackground\\\":\\\"#f0717880\\\",\\\"list.focusBackground\\\":\\\"#EEFFFF20\\\",\\\"list.focusForeground\\\":\\\"#EEFFFF\\\",\\\"list.highlightForeground\\\":\\\"#80CBC4\\\",\\\"list.hoverBackground\\\":\\\"#263238\\\",\\\"list.hoverForeground\\\":\\\"#FFFFFF\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#00000030\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#80CBC4\\\",\\\"listFilterWidget.background\\\":\\\"#00000030\\\",\\\"listFilterWidget.noMatchesOutline\\\":\\\"#00000030\\\",\\\"listFilterWidget.outline\\\":\\\"#00000030\\\",\\\"menu.background\\\":\\\"#263238\\\",\\\"menu.foreground\\\":\\\"#EEFFFF\\\",\\\"menu.selectionBackground\\\":\\\"#00000050\\\",\\\"menu.selectionBorder\\\":\\\"#00000030\\\",\\\"menu.selectionForeground\\\":\\\"#80CBC4\\\",\\\"menu.separatorBackground\\\":\\\"#EEFFFF\\\",\\\"menubar.selectionBackground\\\":\\\"#00000030\\\",\\\"menubar.selectionBorder\\\":\\\"#00000030\\\",\\\"menubar.selectionForeground\\\":\\\"#80CBC4\\\",\\\"notebook.focusedCellBorder\\\":\\\"#80CBC4\\\",\\\"notebook.inactiveFocusedCellBorder\\\":\\\"#80CBC450\\\",\\\"notificationLink.foreground\\\":\\\"#80CBC4\\\",\\\"notifications.background\\\":\\\"#263238\\\",\\\"notifications.foreground\\\":\\\"#EEFFFF\\\",\\\"panel.background\\\":\\\"#263238\\\",\\\"panel.border\\\":\\\"#26323860\\\",\\\"panel.dropBackground\\\":\\\"#EEFFFF\\\",\\\"panelTitle.activeBorder\\\":\\\"#80CBC4\\\",\\\"panelTitle.activeForeground\\\":\\\"#FFFFFF\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#EEFFFF\\\",\\\"peekView.border\\\":\\\"#00000030\\\",\\\"peekViewEditor.background\\\":\\\"#303C41\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#80CBC420\\\",\\\"peekViewEditorGutter.background\\\":\\\"#303C41\\\",\\\"peekViewResult.background\\\":\\\"#303C41\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#80CBC420\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#6c869270\\\",\\\"peekViewTitle.background\\\":\\\"#303C41\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#EEFFFF60\\\",\\\"pickerGroup.border\\\":\\\"#FFFFFF1a\\\",\\\"pickerGroup.foreground\\\":\\\"#80CBC4\\\",\\\"progressBar.background\\\":\\\"#80CBC4\\\",\\\"quickInput.background\\\":\\\"#263238\\\",\\\"quickInput.foreground\\\":\\\"#6c8692\\\",\\\"quickInput.list.focusBackground\\\":\\\"#EEFFFF20\\\",\\\"sash.hoverBorder\\\":\\\"#80CBC450\\\",\\\"scrollbar.shadow\\\":\\\"#00000030\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#80CBC4\\\",\\\"scrollbarSlider.background\\\":\\\"#EEFFFF20\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#EEFFFF10\\\",\\\"selection.background\\\":\\\"#00000080\\\",\\\"settings.checkboxBackground\\\":\\\"#263238\\\",\\\"settings.checkboxForeground\\\":\\\"#EEFFFF\\\",\\\"settings.dropdownBackground\\\":\\\"#263238\\\",\\\"settings.dropdownForeground\\\":\\\"#EEFFFF\\\",\\\"settings.headerForeground\\\":\\\"#80CBC4\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#80CBC4\\\",\\\"settings.numberInputBackground\\\":\\\"#263238\\\",\\\"settings.numberInputForeground\\\":\\\"#EEFFFF\\\",\\\"settings.textInputBackground\\\":\\\"#263238\\\",\\\"settings.textInputForeground\\\":\\\"#EEFFFF\\\",\\\"sideBar.background\\\":\\\"#263238\\\",\\\"sideBar.border\\\":\\\"#26323860\\\",\\\"sideBar.foreground\\\":\\\"#6c8692\\\",\\\"sideBarSectionHeader.background\\\":\\\"#263238\\\",\\\"sideBarSectionHeader.border\\\":\\\"#26323860\\\",\\\"sideBarTitle.foreground\\\":\\\"#EEFFFF\\\",\\\"statusBar.background\\\":\\\"#263238\\\",\\\"statusBar.border\\\":\\\"#26323860\\\",\\\"statusBar.debuggingBackground\\\":\\\"#C792EA\\\",\\\"statusBar.debuggingForeground\\\":\\\"#ffffff\\\",\\\"statusBar.foreground\\\":\\\"#546E7A\\\",\\\"statusBar.noFolderBackground\\\":\\\"#263238\\\",\\\"statusBarItem.activeBackground\\\":\\\"#f0717880\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#546E7A20\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#80CBC4\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#000000\\\",\\\"tab.activeBackground\\\":\\\"#263238\\\",\\\"tab.activeBorder\\\":\\\"#80CBC4\\\",\\\"tab.activeForeground\\\":\\\"#FFFFFF\\\",\\\"tab.activeModifiedBorder\\\":\\\"#6c8692\\\",\\\"tab.border\\\":\\\"#263238\\\",\\\"tab.inactiveBackground\\\":\\\"#263238\\\",\\\"tab.inactiveForeground\\\":\\\"#6c8692\\\",\\\"tab.inactiveModifiedBorder\\\":\\\"#904348\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#546E7A\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#EEFFFF\\\",\\\"tab.unfocusedActiveModifiedBorder\\\":\\\"#c05a60\\\",\\\"tab.unfocusedInactiveModifiedBorder\\\":\\\"#904348\\\",\\\"terminal.ansiBlack\\\":\\\"#000000\\\",\\\"terminal.ansiBlue\\\":\\\"#82AAFF\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#546E7A\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#82AAFF\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#89DDFF\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#C3E88D\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#C792EA\\\",\\\"terminal.ansiBrightRed\\\":\\\"#f07178\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#FFCB6B\\\",\\\"terminal.ansiCyan\\\":\\\"#89DDFF\\\",\\\"terminal.ansiGreen\\\":\\\"#C3E88D\\\",\\\"terminal.ansiMagenta\\\":\\\"#C792EA\\\",\\\"terminal.ansiRed\\\":\\\"#f07178\\\",\\\"terminal.ansiWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiYellow\\\":\\\"#FFCB6B\\\",\\\"terminalCursor.background\\\":\\\"#000000\\\",\\\"terminalCursor.foreground\\\":\\\"#FFCB6B\\\",\\\"textLink.activeForeground\\\":\\\"#EEFFFF\\\",\\\"textLink.foreground\\\":\\\"#80CBC4\\\",\\\"titleBar.activeBackground\\\":\\\"#263238\\\",\\\"titleBar.activeForeground\\\":\\\"#EEFFFF\\\",\\\"titleBar.border\\\":\\\"#26323860\\\",\\\"titleBar.inactiveBackground\\\":\\\"#263238\\\",\\\"titleBar.inactiveForeground\\\":\\\"#6c8692\\\",\\\"tree.indentGuidesStroke\\\":\\\"#37474F\\\",\\\"widget.shadow\\\":\\\"#00000030\\\"},\\\"displayName\\\":\\\"Material Theme\\\",\\\"name\\\":\\\"material-theme\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"background\\\":\\\"#263238\\\",\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"punctuation, constant.other.symbol\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"constant.character.escape, text.html constant.character.entity.named\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"constant.language.boolean\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"keyword.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"keyword, modifier, variable.language.this, support.type.object, constant.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.function, support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"storage.type, storage.modifier, storage.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":\\\"support.module, support.node\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"support.type, constant.other.key\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"entity.name.type, entity.other.inherited-class, entity.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#546E7A\\\"}},{\\\"scope\\\":\\\"comment punctuation.definition.comment, string.quoted.docstring\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#546E7A\\\"}},{\\\"scope\\\":\\\"punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name, entity.name.type.class, support.type, support.class, meta.use\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"variable.object.property, meta.field.declaration entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.definition.method entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.function entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"meta.embedded, source.groovy.embedded, meta.template.expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"entity.name.tag.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"constant.language.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.id\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"source.css entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B2CCD6\\\"}},{\\\"scope\\\":\\\"meta.tag, punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":\\\"punctuation.definition.entity.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"text.html.markdown meta.link.inline, meta.link.reference\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"text.html.markdown beginning.punctuation.definition.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.bold markup.italic, markup.italic markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic bold\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.fenced_code.block.markdown punctuation.definition.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.string.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"keyword.other.definition.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.name.section.group-title.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"source.cs meta.class.identifier storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.identifier entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"source.cs meta.method-call meta.method, source.cs entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"source.cs storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.return-type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#546E7A\\\"}},{\\\"scope\\\":\\\"source.cs entity.name.type.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"meta.jsx.children, SXNested\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"support.class.component\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cpp meta.block variable.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"source.python meta.member.access.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"source.python meta.function-call.python, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"meta.block\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.name.function.call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"source.php support.other.namespace, source.php meta.use support.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"constant.keyword\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"settings\\\":{\\\"background\\\":\\\"#263238\\\",\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":[\\\"constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":[\\\"markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":[\\\"variable.parameter\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.language.special.self.python\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"constant.character.format.placeholder.other.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":[\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF90\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.quote\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#916b53\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["materialTheme"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,6nkBAAm0nB,CAAC","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright: (c) Myia SAS 2026.
|
|
3
|
+
* This file and its contents are licensed under the AGPLv3 License.
|
|
4
|
+
* Please see the LICENSE file at the root of this repository
|
|
5
|
+
*/
|
|
6
|
+
const e = Object.freeze(
|
|
7
|
+
JSON.parse(
|
|
8
|
+
'{"colors":{"activityBar.activeBorder":"#80CBC4","activityBar.background":"#212121","activityBar.border":"#21212160","activityBar.dropBackground":"#f0717880","activityBar.foreground":"#EEFFFF","activityBarBadge.background":"#80CBC4","activityBarBadge.foreground":"#000000","badge.background":"#00000030","badge.foreground":"#545454","breadcrumb.activeSelectionForeground":"#80CBC4","breadcrumb.background":"#212121","breadcrumb.focusForeground":"#EEFFFF","breadcrumb.foreground":"#676767","breadcrumbPicker.background":"#212121","button.background":"#61616150","button.foreground":"#ffffff","debugConsole.errorForeground":"#f07178","debugConsole.infoForeground":"#89DDFF","debugConsole.warningForeground":"#FFCB6B","debugToolBar.background":"#212121","diffEditor.insertedTextBackground":"#89DDFF20","diffEditor.removedTextBackground":"#ff9cac20","dropdown.background":"#212121","dropdown.border":"#FFFFFF10","editor.background":"#212121","editor.findMatchBackground":"#000000","editor.findMatchBorder":"#80CBC4","editor.findMatchHighlight":"#EEFFFF","editor.findMatchHighlightBackground":"#00000050","editor.findMatchHighlightBorder":"#ffffff30","editor.findRangeHighlightBackground":"#FFCB6B30","editor.foreground":"#EEFFFF","editor.lineHighlightBackground":"#00000050","editor.lineHighlightBorder":"#00000000","editor.rangeHighlightBackground":"#FFFFFF0d","editor.selectionBackground":"#61616150","editor.selectionHighlightBackground":"#FFCC0020","editor.wordHighlightBackground":"#ff9cac30","editor.wordHighlightStrongBackground":"#C3E88D30","editorBracketMatch.background":"#212121","editorBracketMatch.border":"#FFCC0050","editorCursor.foreground":"#FFCC00","editorError.foreground":"#f0717870","editorGroup.border":"#00000030","editorGroup.dropBackground":"#f0717880","editorGroup.focusedEmptyBorder":"#f07178","editorGroupHeader.tabsBackground":"#212121","editorGutter.addedBackground":"#C3E88D60","editorGutter.deletedBackground":"#f0717860","editorGutter.modifiedBackground":"#82AAFF60","editorHoverWidget.background":"#212121","editorHoverWidget.border":"#FFFFFF10","editorIndentGuide.activeBackground":"#424242","editorIndentGuide.background":"#42424270","editorInfo.foreground":"#82AAFF70","editorLineNumber.activeForeground":"#676767","editorLineNumber.foreground":"#424242","editorLink.activeForeground":"#EEFFFF","editorMarkerNavigation.background":"#EEFFFF05","editorOverviewRuler.border":"#212121","editorOverviewRuler.errorForeground":"#f0717840","editorOverviewRuler.findMatchForeground":"#80CBC4","editorOverviewRuler.infoForeground":"#82AAFF40","editorOverviewRuler.warningForeground":"#FFCB6B40","editorRuler.foreground":"#424242","editorSuggestWidget.background":"#212121","editorSuggestWidget.border":"#FFFFFF10","editorSuggestWidget.foreground":"#EEFFFF","editorSuggestWidget.highlightForeground":"#80CBC4","editorSuggestWidget.selectedBackground":"#00000050","editorWarning.foreground":"#FFCB6B70","editorWhitespace.foreground":"#EEFFFF40","editorWidget.background":"#212121","editorWidget.border":"#80CBC4","editorWidget.resizeBorder":"#80CBC4","extensionBadge.remoteForeground":"#EEFFFF","extensionButton.prominentBackground":"#C3E88D90","extensionButton.prominentForeground":"#EEFFFF","extensionButton.prominentHoverBackground":"#C3E88D","focusBorder":"#FFFFFF00","foreground":"#EEFFFF","gitDecoration.conflictingResourceForeground":"#FFCB6B90","gitDecoration.deletedResourceForeground":"#f0717890","gitDecoration.ignoredResourceForeground":"#67676790","gitDecoration.modifiedResourceForeground":"#82AAFF90","gitDecoration.untrackedResourceForeground":"#C3E88D90","input.background":"#2B2B2B","input.border":"#FFFFFF10","input.foreground":"#EEFFFF","input.placeholderForeground":"#EEFFFF60","inputOption.activeBackground":"#EEFFFF30","inputOption.activeBorder":"#EEFFFF30","inputValidation.errorBorder":"#f07178","inputValidation.infoBorder":"#82AAFF","inputValidation.warningBorder":"#FFCB6B","list.activeSelectionBackground":"#212121","list.activeSelectionForeground":"#80CBC4","list.dropBackground":"#f0717880","list.focusBackground":"#EEFFFF20","list.focusForeground":"#EEFFFF","list.highlightForeground":"#80CBC4","list.hoverBackground":"#212121","list.hoverForeground":"#FFFFFF","list.inactiveSelectionBackground":"#00000030","list.inactiveSelectionForeground":"#80CBC4","listFilterWidget.background":"#00000030","listFilterWidget.noMatchesOutline":"#00000030","listFilterWidget.outline":"#00000030","menu.background":"#212121","menu.foreground":"#EEFFFF","menu.selectionBackground":"#00000050","menu.selectionBorder":"#00000030","menu.selectionForeground":"#80CBC4","menu.separatorBackground":"#EEFFFF","menubar.selectionBackground":"#00000030","menubar.selectionBorder":"#00000030","menubar.selectionForeground":"#80CBC4","notebook.focusedCellBorder":"#80CBC4","notebook.inactiveFocusedCellBorder":"#80CBC450","notificationLink.foreground":"#80CBC4","notifications.background":"#212121","notifications.foreground":"#EEFFFF","panel.background":"#212121","panel.border":"#21212160","panel.dropBackground":"#EEFFFF","panelTitle.activeBorder":"#80CBC4","panelTitle.activeForeground":"#FFFFFF","panelTitle.inactiveForeground":"#EEFFFF","peekView.border":"#00000030","peekViewEditor.background":"#2B2B2B","peekViewEditor.matchHighlightBackground":"#61616150","peekViewEditorGutter.background":"#2B2B2B","peekViewResult.background":"#2B2B2B","peekViewResult.matchHighlightBackground":"#61616150","peekViewResult.selectionBackground":"#67676770","peekViewTitle.background":"#2B2B2B","peekViewTitleDescription.foreground":"#EEFFFF60","pickerGroup.border":"#FFFFFF1a","pickerGroup.foreground":"#80CBC4","progressBar.background":"#80CBC4","quickInput.background":"#212121","quickInput.foreground":"#676767","quickInput.list.focusBackground":"#EEFFFF20","sash.hoverBorder":"#80CBC450","scrollbar.shadow":"#00000030","scrollbarSlider.activeBackground":"#80CBC4","scrollbarSlider.background":"#EEFFFF20","scrollbarSlider.hoverBackground":"#EEFFFF10","selection.background":"#00000080","settings.checkboxBackground":"#212121","settings.checkboxForeground":"#EEFFFF","settings.dropdownBackground":"#212121","settings.dropdownForeground":"#EEFFFF","settings.headerForeground":"#80CBC4","settings.modifiedItemIndicator":"#80CBC4","settings.numberInputBackground":"#212121","settings.numberInputForeground":"#EEFFFF","settings.textInputBackground":"#212121","settings.textInputForeground":"#EEFFFF","sideBar.background":"#212121","sideBar.border":"#21212160","sideBar.foreground":"#676767","sideBarSectionHeader.background":"#212121","sideBarSectionHeader.border":"#21212160","sideBarTitle.foreground":"#EEFFFF","statusBar.background":"#212121","statusBar.border":"#21212160","statusBar.debuggingBackground":"#C792EA","statusBar.debuggingForeground":"#ffffff","statusBar.foreground":"#616161","statusBar.noFolderBackground":"#212121","statusBarItem.activeBackground":"#f0717880","statusBarItem.hoverBackground":"#54545420","statusBarItem.remoteBackground":"#80CBC4","statusBarItem.remoteForeground":"#000000","tab.activeBackground":"#212121","tab.activeBorder":"#80CBC4","tab.activeForeground":"#FFFFFF","tab.activeModifiedBorder":"#676767","tab.border":"#212121","tab.inactiveBackground":"#212121","tab.inactiveForeground":"#676767","tab.inactiveModifiedBorder":"#904348","tab.unfocusedActiveBorder":"#545454","tab.unfocusedActiveForeground":"#EEFFFF","tab.unfocusedActiveModifiedBorder":"#c05a60","tab.unfocusedInactiveModifiedBorder":"#904348","terminal.ansiBlack":"#000000","terminal.ansiBlue":"#82AAFF","terminal.ansiBrightBlack":"#545454","terminal.ansiBrightBlue":"#82AAFF","terminal.ansiBrightCyan":"#89DDFF","terminal.ansiBrightGreen":"#C3E88D","terminal.ansiBrightMagenta":"#C792EA","terminal.ansiBrightRed":"#f07178","terminal.ansiBrightWhite":"#ffffff","terminal.ansiBrightYellow":"#FFCB6B","terminal.ansiCyan":"#89DDFF","terminal.ansiGreen":"#C3E88D","terminal.ansiMagenta":"#C792EA","terminal.ansiRed":"#f07178","terminal.ansiWhite":"#ffffff","terminal.ansiYellow":"#FFCB6B","terminalCursor.background":"#000000","terminalCursor.foreground":"#FFCB6B","textLink.activeForeground":"#EEFFFF","textLink.foreground":"#80CBC4","titleBar.activeBackground":"#212121","titleBar.activeForeground":"#EEFFFF","titleBar.border":"#21212160","titleBar.inactiveBackground":"#212121","titleBar.inactiveForeground":"#676767","tree.indentGuidesStroke":"#424242","widget.shadow":"#00000030"},"displayName":"Material Theme Darker","name":"material-theme-darker","semanticHighlighting":true,"tokenColors":[{"settings":{"background":"#212121","foreground":"#EEFFFF"}},{"scope":"string","settings":{"foreground":"#C3E88D"}},{"scope":"punctuation, constant.other.symbol","settings":{"foreground":"#89DDFF"}},{"scope":"constant.character.escape, text.html constant.character.entity.named","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.language.boolean","settings":{"foreground":"#ff9cac"}},{"scope":"constant.numeric","settings":{"foreground":"#F78C6C"}},{"scope":"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments","settings":{"foreground":"#EEFFFF"}},{"scope":"keyword.other","settings":{"foreground":"#F78C6C"}},{"scope":"keyword, modifier, variable.language.this, support.type.object, constant.language","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.function, support.function","settings":{"foreground":"#82AAFF"}},{"scope":"storage.type, storage.modifier, storage.control","settings":{"foreground":"#C792EA"}},{"scope":"support.module, support.node","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"support.type, constant.other.key","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.name.type, entity.other.inherited-class, entity.other","settings":{"foreground":"#FFCB6B"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#545454"}},{"scope":"comment punctuation.definition.comment, string.quoted.docstring","settings":{"fontStyle":"italic","foreground":"#545454"}},{"scope":"punctuation","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name, entity.name.type.class, support.type, support.class, meta.use","settings":{"foreground":"#FFCB6B"}},{"scope":"variable.object.property, meta.field.declaration entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.definition.method entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.function entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end","settings":{"foreground":"#89DDFF"}},{"scope":"meta.embedded, source.groovy.embedded, meta.template.expression","settings":{"foreground":"#EEFFFF"}},{"scope":"entity.name.tag.yaml","settings":{"foreground":"#f07178"}},{"scope":"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json","settings":{"foreground":"#f07178"}},{"scope":"constant.language.json","settings":{"foreground":"#89DDFF"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#F78C6C"}},{"scope":"source.css entity.name.tag","settings":{"foreground":"#FFCB6B"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#B2CCD6"}},{"scope":"meta.tag, punctuation.definition.tag","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.tag","settings":{"foreground":"#f07178"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#C792EA"}},{"scope":"punctuation.definition.entity.html","settings":{"foreground":"#EEFFFF"}},{"scope":"markup.heading","settings":{"foreground":"#89DDFF"}},{"scope":"text.html.markdown meta.link.inline, meta.link.reference","settings":{"foreground":"#f07178"}},{"scope":"text.html.markdown beginning.punctuation.definition.list","settings":{"foreground":"#89DDFF"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#f07178"}},{"scope":"markup.bold markup.italic, markup.italic markup.bold","settings":{"fontStyle":"italic bold","foreground":"#f07178"}},{"scope":"markup.fenced_code.block.markdown punctuation.definition.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"markup.inline.raw.string.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"keyword.other.definition.ini","settings":{"foreground":"#f07178"}},{"scope":"entity.name.section.group-title.ini","settings":{"foreground":"#89DDFF"}},{"scope":"source.cs meta.class.identifier storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.identifier entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"source.cs meta.method-call meta.method, source.cs entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"source.cs storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.return-type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.preprocessor","settings":{"foreground":"#545454"}},{"scope":"source.cs entity.name.type.namespace","settings":{"foreground":"#EEFFFF"}},{"scope":"meta.jsx.children, SXNested","settings":{"foreground":"#EEFFFF"}},{"scope":"support.class.component","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cpp meta.block variable.other","settings":{"foreground":"#EEFFFF"}},{"scope":"source.python meta.member.access.python","settings":{"foreground":"#f07178"}},{"scope":"source.python meta.function-call.python, meta.function-call.arguments","settings":{"foreground":"#82AAFF"}},{"scope":"meta.block","settings":{"foreground":"#f07178"}},{"scope":"entity.name.function.call","settings":{"foreground":"#82AAFF"}},{"scope":"source.php support.other.namespace, source.php meta.use support.class","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.keyword","settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":"entity.name.function","settings":{"foreground":"#82AAFF"}},{"settings":{"background":"#212121","foreground":"#EEFFFF"}},{"scope":["constant.other.placeholder"],"settings":{"foreground":"#f07178"}},{"scope":["markup.deleted"],"settings":{"foreground":"#f07178"}},{"scope":["markup.inserted"],"settings":{"foreground":"#C3E88D"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["keyword.control"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["variable.parameter"],"settings":{"fontStyle":"italic"}},{"scope":["variable.parameter.function.language.special.self.python"],"settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":["constant.character.format.placeholder.other.python"],"settings":{"foreground":"#F78C6C"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["markup.fenced_code.block"],"settings":{"foreground":"#EEFFFF90"}},{"scope":["punctuation.definition.quote"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FFCB6B"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#F78C6C"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#f07178"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#916b53"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#82AAFF"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C3E88D"}}],"type":"dark"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=material-theme-darker-BfHTSMKl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"material-theme-darker-BfHTSMKl.js","sources":["../../../../node_modules/@shikijs/themes/dist/material-theme-darker.mjs"],"sourcesContent":["/* Theme: material-theme-darker */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBorder\\\":\\\"#80CBC4\\\",\\\"activityBar.background\\\":\\\"#212121\\\",\\\"activityBar.border\\\":\\\"#21212160\\\",\\\"activityBar.dropBackground\\\":\\\"#f0717880\\\",\\\"activityBar.foreground\\\":\\\"#EEFFFF\\\",\\\"activityBarBadge.background\\\":\\\"#80CBC4\\\",\\\"activityBarBadge.foreground\\\":\\\"#000000\\\",\\\"badge.background\\\":\\\"#00000030\\\",\\\"badge.foreground\\\":\\\"#545454\\\",\\\"breadcrumb.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"breadcrumb.background\\\":\\\"#212121\\\",\\\"breadcrumb.focusForeground\\\":\\\"#EEFFFF\\\",\\\"breadcrumb.foreground\\\":\\\"#676767\\\",\\\"breadcrumbPicker.background\\\":\\\"#212121\\\",\\\"button.background\\\":\\\"#61616150\\\",\\\"button.foreground\\\":\\\"#ffffff\\\",\\\"debugConsole.errorForeground\\\":\\\"#f07178\\\",\\\"debugConsole.infoForeground\\\":\\\"#89DDFF\\\",\\\"debugConsole.warningForeground\\\":\\\"#FFCB6B\\\",\\\"debugToolBar.background\\\":\\\"#212121\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#89DDFF20\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#ff9cac20\\\",\\\"dropdown.background\\\":\\\"#212121\\\",\\\"dropdown.border\\\":\\\"#FFFFFF10\\\",\\\"editor.background\\\":\\\"#212121\\\",\\\"editor.findMatchBackground\\\":\\\"#000000\\\",\\\"editor.findMatchBorder\\\":\\\"#80CBC4\\\",\\\"editor.findMatchHighlight\\\":\\\"#EEFFFF\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#00000050\\\",\\\"editor.findMatchHighlightBorder\\\":\\\"#ffffff30\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#FFCB6B30\\\",\\\"editor.foreground\\\":\\\"#EEFFFF\\\",\\\"editor.lineHighlightBackground\\\":\\\"#00000050\\\",\\\"editor.lineHighlightBorder\\\":\\\"#00000000\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#FFFFFF0d\\\",\\\"editor.selectionBackground\\\":\\\"#61616150\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#FFCC0020\\\",\\\"editor.wordHighlightBackground\\\":\\\"#ff9cac30\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#C3E88D30\\\",\\\"editorBracketMatch.background\\\":\\\"#212121\\\",\\\"editorBracketMatch.border\\\":\\\"#FFCC0050\\\",\\\"editorCursor.foreground\\\":\\\"#FFCC00\\\",\\\"editorError.foreground\\\":\\\"#f0717870\\\",\\\"editorGroup.border\\\":\\\"#00000030\\\",\\\"editorGroup.dropBackground\\\":\\\"#f0717880\\\",\\\"editorGroup.focusedEmptyBorder\\\":\\\"#f07178\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#212121\\\",\\\"editorGutter.addedBackground\\\":\\\"#C3E88D60\\\",\\\"editorGutter.deletedBackground\\\":\\\"#f0717860\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#82AAFF60\\\",\\\"editorHoverWidget.background\\\":\\\"#212121\\\",\\\"editorHoverWidget.border\\\":\\\"#FFFFFF10\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#424242\\\",\\\"editorIndentGuide.background\\\":\\\"#42424270\\\",\\\"editorInfo.foreground\\\":\\\"#82AAFF70\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#676767\\\",\\\"editorLineNumber.foreground\\\":\\\"#424242\\\",\\\"editorLink.activeForeground\\\":\\\"#EEFFFF\\\",\\\"editorMarkerNavigation.background\\\":\\\"#EEFFFF05\\\",\\\"editorOverviewRuler.border\\\":\\\"#212121\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#f0717840\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#80CBC4\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#82AAFF40\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#FFCB6B40\\\",\\\"editorRuler.foreground\\\":\\\"#424242\\\",\\\"editorSuggestWidget.background\\\":\\\"#212121\\\",\\\"editorSuggestWidget.border\\\":\\\"#FFFFFF10\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#EEFFFF\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#80CBC4\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#00000050\\\",\\\"editorWarning.foreground\\\":\\\"#FFCB6B70\\\",\\\"editorWhitespace.foreground\\\":\\\"#EEFFFF40\\\",\\\"editorWidget.background\\\":\\\"#212121\\\",\\\"editorWidget.border\\\":\\\"#80CBC4\\\",\\\"editorWidget.resizeBorder\\\":\\\"#80CBC4\\\",\\\"extensionBadge.remoteForeground\\\":\\\"#EEFFFF\\\",\\\"extensionButton.prominentBackground\\\":\\\"#C3E88D90\\\",\\\"extensionButton.prominentForeground\\\":\\\"#EEFFFF\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#C3E88D\\\",\\\"focusBorder\\\":\\\"#FFFFFF00\\\",\\\"foreground\\\":\\\"#EEFFFF\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#FFCB6B90\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#f0717890\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#67676790\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#82AAFF90\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#C3E88D90\\\",\\\"input.background\\\":\\\"#2B2B2B\\\",\\\"input.border\\\":\\\"#FFFFFF10\\\",\\\"input.foreground\\\":\\\"#EEFFFF\\\",\\\"input.placeholderForeground\\\":\\\"#EEFFFF60\\\",\\\"inputOption.activeBackground\\\":\\\"#EEFFFF30\\\",\\\"inputOption.activeBorder\\\":\\\"#EEFFFF30\\\",\\\"inputValidation.errorBorder\\\":\\\"#f07178\\\",\\\"inputValidation.infoBorder\\\":\\\"#82AAFF\\\",\\\"inputValidation.warningBorder\\\":\\\"#FFCB6B\\\",\\\"list.activeSelectionBackground\\\":\\\"#212121\\\",\\\"list.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"list.dropBackground\\\":\\\"#f0717880\\\",\\\"list.focusBackground\\\":\\\"#EEFFFF20\\\",\\\"list.focusForeground\\\":\\\"#EEFFFF\\\",\\\"list.highlightForeground\\\":\\\"#80CBC4\\\",\\\"list.hoverBackground\\\":\\\"#212121\\\",\\\"list.hoverForeground\\\":\\\"#FFFFFF\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#00000030\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#80CBC4\\\",\\\"listFilterWidget.background\\\":\\\"#00000030\\\",\\\"listFilterWidget.noMatchesOutline\\\":\\\"#00000030\\\",\\\"listFilterWidget.outline\\\":\\\"#00000030\\\",\\\"menu.background\\\":\\\"#212121\\\",\\\"menu.foreground\\\":\\\"#EEFFFF\\\",\\\"menu.selectionBackground\\\":\\\"#00000050\\\",\\\"menu.selectionBorder\\\":\\\"#00000030\\\",\\\"menu.selectionForeground\\\":\\\"#80CBC4\\\",\\\"menu.separatorBackground\\\":\\\"#EEFFFF\\\",\\\"menubar.selectionBackground\\\":\\\"#00000030\\\",\\\"menubar.selectionBorder\\\":\\\"#00000030\\\",\\\"menubar.selectionForeground\\\":\\\"#80CBC4\\\",\\\"notebook.focusedCellBorder\\\":\\\"#80CBC4\\\",\\\"notebook.inactiveFocusedCellBorder\\\":\\\"#80CBC450\\\",\\\"notificationLink.foreground\\\":\\\"#80CBC4\\\",\\\"notifications.background\\\":\\\"#212121\\\",\\\"notifications.foreground\\\":\\\"#EEFFFF\\\",\\\"panel.background\\\":\\\"#212121\\\",\\\"panel.border\\\":\\\"#21212160\\\",\\\"panel.dropBackground\\\":\\\"#EEFFFF\\\",\\\"panelTitle.activeBorder\\\":\\\"#80CBC4\\\",\\\"panelTitle.activeForeground\\\":\\\"#FFFFFF\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#EEFFFF\\\",\\\"peekView.border\\\":\\\"#00000030\\\",\\\"peekViewEditor.background\\\":\\\"#2B2B2B\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#61616150\\\",\\\"peekViewEditorGutter.background\\\":\\\"#2B2B2B\\\",\\\"peekViewResult.background\\\":\\\"#2B2B2B\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#61616150\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#67676770\\\",\\\"peekViewTitle.background\\\":\\\"#2B2B2B\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#EEFFFF60\\\",\\\"pickerGroup.border\\\":\\\"#FFFFFF1a\\\",\\\"pickerGroup.foreground\\\":\\\"#80CBC4\\\",\\\"progressBar.background\\\":\\\"#80CBC4\\\",\\\"quickInput.background\\\":\\\"#212121\\\",\\\"quickInput.foreground\\\":\\\"#676767\\\",\\\"quickInput.list.focusBackground\\\":\\\"#EEFFFF20\\\",\\\"sash.hoverBorder\\\":\\\"#80CBC450\\\",\\\"scrollbar.shadow\\\":\\\"#00000030\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#80CBC4\\\",\\\"scrollbarSlider.background\\\":\\\"#EEFFFF20\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#EEFFFF10\\\",\\\"selection.background\\\":\\\"#00000080\\\",\\\"settings.checkboxBackground\\\":\\\"#212121\\\",\\\"settings.checkboxForeground\\\":\\\"#EEFFFF\\\",\\\"settings.dropdownBackground\\\":\\\"#212121\\\",\\\"settings.dropdownForeground\\\":\\\"#EEFFFF\\\",\\\"settings.headerForeground\\\":\\\"#80CBC4\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#80CBC4\\\",\\\"settings.numberInputBackground\\\":\\\"#212121\\\",\\\"settings.numberInputForeground\\\":\\\"#EEFFFF\\\",\\\"settings.textInputBackground\\\":\\\"#212121\\\",\\\"settings.textInputForeground\\\":\\\"#EEFFFF\\\",\\\"sideBar.background\\\":\\\"#212121\\\",\\\"sideBar.border\\\":\\\"#21212160\\\",\\\"sideBar.foreground\\\":\\\"#676767\\\",\\\"sideBarSectionHeader.background\\\":\\\"#212121\\\",\\\"sideBarSectionHeader.border\\\":\\\"#21212160\\\",\\\"sideBarTitle.foreground\\\":\\\"#EEFFFF\\\",\\\"statusBar.background\\\":\\\"#212121\\\",\\\"statusBar.border\\\":\\\"#21212160\\\",\\\"statusBar.debuggingBackground\\\":\\\"#C792EA\\\",\\\"statusBar.debuggingForeground\\\":\\\"#ffffff\\\",\\\"statusBar.foreground\\\":\\\"#616161\\\",\\\"statusBar.noFolderBackground\\\":\\\"#212121\\\",\\\"statusBarItem.activeBackground\\\":\\\"#f0717880\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#54545420\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#80CBC4\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#000000\\\",\\\"tab.activeBackground\\\":\\\"#212121\\\",\\\"tab.activeBorder\\\":\\\"#80CBC4\\\",\\\"tab.activeForeground\\\":\\\"#FFFFFF\\\",\\\"tab.activeModifiedBorder\\\":\\\"#676767\\\",\\\"tab.border\\\":\\\"#212121\\\",\\\"tab.inactiveBackground\\\":\\\"#212121\\\",\\\"tab.inactiveForeground\\\":\\\"#676767\\\",\\\"tab.inactiveModifiedBorder\\\":\\\"#904348\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#545454\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#EEFFFF\\\",\\\"tab.unfocusedActiveModifiedBorder\\\":\\\"#c05a60\\\",\\\"tab.unfocusedInactiveModifiedBorder\\\":\\\"#904348\\\",\\\"terminal.ansiBlack\\\":\\\"#000000\\\",\\\"terminal.ansiBlue\\\":\\\"#82AAFF\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#545454\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#82AAFF\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#89DDFF\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#C3E88D\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#C792EA\\\",\\\"terminal.ansiBrightRed\\\":\\\"#f07178\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#FFCB6B\\\",\\\"terminal.ansiCyan\\\":\\\"#89DDFF\\\",\\\"terminal.ansiGreen\\\":\\\"#C3E88D\\\",\\\"terminal.ansiMagenta\\\":\\\"#C792EA\\\",\\\"terminal.ansiRed\\\":\\\"#f07178\\\",\\\"terminal.ansiWhite\\\":\\\"#ffffff\\\",\\\"terminal.ansiYellow\\\":\\\"#FFCB6B\\\",\\\"terminalCursor.background\\\":\\\"#000000\\\",\\\"terminalCursor.foreground\\\":\\\"#FFCB6B\\\",\\\"textLink.activeForeground\\\":\\\"#EEFFFF\\\",\\\"textLink.foreground\\\":\\\"#80CBC4\\\",\\\"titleBar.activeBackground\\\":\\\"#212121\\\",\\\"titleBar.activeForeground\\\":\\\"#EEFFFF\\\",\\\"titleBar.border\\\":\\\"#21212160\\\",\\\"titleBar.inactiveBackground\\\":\\\"#212121\\\",\\\"titleBar.inactiveForeground\\\":\\\"#676767\\\",\\\"tree.indentGuidesStroke\\\":\\\"#424242\\\",\\\"widget.shadow\\\":\\\"#00000030\\\"},\\\"displayName\\\":\\\"Material Theme Darker\\\",\\\"name\\\":\\\"material-theme-darker\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"background\\\":\\\"#212121\\\",\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"punctuation, constant.other.symbol\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"constant.character.escape, text.html constant.character.entity.named\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"constant.language.boolean\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"keyword.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"keyword, modifier, variable.language.this, support.type.object, constant.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.function, support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"storage.type, storage.modifier, storage.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":\\\"support.module, support.node\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"support.type, constant.other.key\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"entity.name.type, entity.other.inherited-class, entity.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#545454\\\"}},{\\\"scope\\\":\\\"comment punctuation.definition.comment, string.quoted.docstring\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#545454\\\"}},{\\\"scope\\\":\\\"punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name, entity.name.type.class, support.type, support.class, meta.use\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"variable.object.property, meta.field.declaration entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.definition.method entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.function entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"meta.embedded, source.groovy.embedded, meta.template.expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"entity.name.tag.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"constant.language.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.id\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":\\\"source.css entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B2CCD6\\\"}},{\\\"scope\\\":\\\"meta.tag, punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":\\\"punctuation.definition.entity.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"text.html.markdown meta.link.inline, meta.link.reference\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"text.html.markdown beginning.punctuation.definition.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.bold markup.italic, markup.italic markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic bold\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"markup.fenced_code.block.markdown punctuation.definition.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.string.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":\\\"keyword.other.definition.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.name.section.group-title.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"source.cs meta.class.identifier storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.identifier entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"source.cs meta.method-call meta.method, source.cs entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"source.cs storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.return-type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cs meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#545454\\\"}},{\\\"scope\\\":\\\"source.cs entity.name.type.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"meta.jsx.children, SXNested\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"support.class.component\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":\\\"source.cpp meta.block variable.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"source.python meta.member.access.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"source.python meta.function-call.python, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"meta.block\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":\\\"entity.name.function.call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":\\\"source.php support.other.namespace, source.php meta.use support.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":\\\"constant.keyword\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"settings\\\":{\\\"background\\\":\\\"#212121\\\",\\\"foreground\\\":\\\"#EEFFFF\\\"}},{\\\"scope\\\":[\\\"constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}},{\\\"scope\\\":[\\\"markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":[\\\"variable.parameter\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.language.special.self.python\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"constant.character.format.placeholder.other.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#89DDFF\\\"}},{\\\"scope\\\":[\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#EEFFFF90\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.quote\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FFCB6B\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F78C6C\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#f07178\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#916b53\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#82AAFF\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ff9cac\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C792EA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C3E88D\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["materialThemeDarker"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,2okBAAi1nB,CAAC","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright: (c) Myia SAS 2026.
|
|
3
|
+
* This file and its contents are licensed under the AGPLv3 License.
|
|
4
|
+
* Please see the LICENSE file at the root of this repository
|
|
5
|
+
*/
|
|
6
|
+
const e = Object.freeze(
|
|
7
|
+
JSON.parse(
|
|
8
|
+
'{"colors":{"activityBar.activeBorder":"#80CBC4","activityBar.background":"#FAFAFA","activityBar.border":"#FAFAFA60","activityBar.dropBackground":"#E5393580","activityBar.foreground":"#90A4AE","activityBarBadge.background":"#80CBC4","activityBarBadge.foreground":"#000000","badge.background":"#CCD7DA30","badge.foreground":"#90A4AE","breadcrumb.activeSelectionForeground":"#80CBC4","breadcrumb.background":"#FAFAFA","breadcrumb.focusForeground":"#90A4AE","breadcrumb.foreground":"#758a95","breadcrumbPicker.background":"#FAFAFA","button.background":"#80CBC440","button.foreground":"#ffffff","debugConsole.errorForeground":"#E53935","debugConsole.infoForeground":"#39ADB5","debugConsole.warningForeground":"#E2931D","debugToolBar.background":"#FAFAFA","diffEditor.insertedTextBackground":"#39ADB520","diffEditor.removedTextBackground":"#FF537020","dropdown.background":"#FAFAFA","dropdown.border":"#00000010","editor.background":"#FAFAFA","editor.findMatchBackground":"#00000020","editor.findMatchBorder":"#80CBC4","editor.findMatchHighlight":"#90A4AE","editor.findMatchHighlightBackground":"#00000010","editor.findMatchHighlightBorder":"#00000030","editor.findRangeHighlightBackground":"#E2931D30","editor.foreground":"#90A4AE","editor.lineHighlightBackground":"#CCD7DA50","editor.lineHighlightBorder":"#CCD7DA00","editor.rangeHighlightBackground":"#FFFFFF0d","editor.selectionBackground":"#80CBC440","editor.selectionHighlightBackground":"#27272720","editor.wordHighlightBackground":"#FF537030","editor.wordHighlightStrongBackground":"#91B85930","editorBracketMatch.background":"#FAFAFA","editorBracketMatch.border":"#27272750","editorCursor.foreground":"#272727","editorError.foreground":"#E5393570","editorGroup.border":"#00000020","editorGroup.dropBackground":"#E5393580","editorGroup.focusedEmptyBorder":"#E53935","editorGroupHeader.tabsBackground":"#FAFAFA","editorGutter.addedBackground":"#91B85960","editorGutter.deletedBackground":"#E5393560","editorGutter.modifiedBackground":"#6182B860","editorHoverWidget.background":"#FAFAFA","editorHoverWidget.border":"#00000010","editorIndentGuide.activeBackground":"#B0BEC5","editorIndentGuide.background":"#B0BEC570","editorInfo.foreground":"#6182B870","editorLineNumber.activeForeground":"#758a95","editorLineNumber.foreground":"#CFD8DC","editorLink.activeForeground":"#90A4AE","editorMarkerNavigation.background":"#90A4AE05","editorOverviewRuler.border":"#FAFAFA","editorOverviewRuler.errorForeground":"#E5393540","editorOverviewRuler.findMatchForeground":"#80CBC4","editorOverviewRuler.infoForeground":"#6182B840","editorOverviewRuler.warningForeground":"#E2931D40","editorRuler.foreground":"#B0BEC5","editorSuggestWidget.background":"#FAFAFA","editorSuggestWidget.border":"#00000010","editorSuggestWidget.foreground":"#90A4AE","editorSuggestWidget.highlightForeground":"#80CBC4","editorSuggestWidget.selectedBackground":"#CCD7DA50","editorWarning.foreground":"#E2931D70","editorWhitespace.foreground":"#90A4AE40","editorWidget.background":"#FAFAFA","editorWidget.border":"#80CBC4","editorWidget.resizeBorder":"#80CBC4","extensionBadge.remoteForeground":"#90A4AE","extensionButton.prominentBackground":"#91B85990","extensionButton.prominentForeground":"#90A4AE","extensionButton.prominentHoverBackground":"#91B859","focusBorder":"#FFFFFF00","foreground":"#90A4AE","gitDecoration.conflictingResourceForeground":"#E2931D90","gitDecoration.deletedResourceForeground":"#E5393590","gitDecoration.ignoredResourceForeground":"#758a9590","gitDecoration.modifiedResourceForeground":"#6182B890","gitDecoration.untrackedResourceForeground":"#91B85990","input.background":"#EEEEEE","input.border":"#00000010","input.foreground":"#90A4AE","input.placeholderForeground":"#90A4AE60","inputOption.activeBackground":"#90A4AE30","inputOption.activeBorder":"#90A4AE30","inputValidation.errorBorder":"#E53935","inputValidation.infoBorder":"#6182B8","inputValidation.warningBorder":"#E2931D","list.activeSelectionBackground":"#FAFAFA","list.activeSelectionForeground":"#80CBC4","list.dropBackground":"#E5393580","list.focusBackground":"#90A4AE20","list.focusForeground":"#90A4AE","list.highlightForeground":"#80CBC4","list.hoverBackground":"#FAFAFA","list.hoverForeground":"#B1C7D3","list.inactiveSelectionBackground":"#CCD7DA50","list.inactiveSelectionForeground":"#80CBC4","listFilterWidget.background":"#CCD7DA50","listFilterWidget.noMatchesOutline":"#CCD7DA50","listFilterWidget.outline":"#CCD7DA50","menu.background":"#FAFAFA","menu.foreground":"#90A4AE","menu.selectionBackground":"#CCD7DA50","menu.selectionBorder":"#CCD7DA50","menu.selectionForeground":"#80CBC4","menu.separatorBackground":"#90A4AE","menubar.selectionBackground":"#CCD7DA50","menubar.selectionBorder":"#CCD7DA50","menubar.selectionForeground":"#80CBC4","notebook.focusedCellBorder":"#80CBC4","notebook.inactiveFocusedCellBorder":"#80CBC450","notificationLink.foreground":"#80CBC4","notifications.background":"#FAFAFA","notifications.foreground":"#90A4AE","panel.background":"#FAFAFA","panel.border":"#FAFAFA60","panel.dropBackground":"#90A4AE","panelTitle.activeBorder":"#80CBC4","panelTitle.activeForeground":"#000000","panelTitle.inactiveForeground":"#90A4AE","peekView.border":"#00000020","peekViewEditor.background":"#EEEEEE","peekViewEditor.matchHighlightBackground":"#80CBC440","peekViewEditorGutter.background":"#EEEEEE","peekViewResult.background":"#EEEEEE","peekViewResult.matchHighlightBackground":"#80CBC440","peekViewResult.selectionBackground":"#758a9570","peekViewTitle.background":"#EEEEEE","peekViewTitleDescription.foreground":"#90A4AE60","pickerGroup.border":"#FFFFFF1a","pickerGroup.foreground":"#80CBC4","progressBar.background":"#80CBC4","quickInput.background":"#FAFAFA","quickInput.foreground":"#758a95","quickInput.list.focusBackground":"#90A4AE20","sash.hoverBorder":"#80CBC450","scrollbar.shadow":"#00000020","scrollbarSlider.activeBackground":"#80CBC4","scrollbarSlider.background":"#90A4AE20","scrollbarSlider.hoverBackground":"#90A4AE10","selection.background":"#CCD7DA80","settings.checkboxBackground":"#FAFAFA","settings.checkboxForeground":"#90A4AE","settings.dropdownBackground":"#FAFAFA","settings.dropdownForeground":"#90A4AE","settings.headerForeground":"#80CBC4","settings.modifiedItemIndicator":"#80CBC4","settings.numberInputBackground":"#FAFAFA","settings.numberInputForeground":"#90A4AE","settings.textInputBackground":"#FAFAFA","settings.textInputForeground":"#90A4AE","sideBar.background":"#FAFAFA","sideBar.border":"#FAFAFA60","sideBar.foreground":"#758a95","sideBarSectionHeader.background":"#FAFAFA","sideBarSectionHeader.border":"#FAFAFA60","sideBarTitle.foreground":"#90A4AE","statusBar.background":"#FAFAFA","statusBar.border":"#FAFAFA60","statusBar.debuggingBackground":"#9C3EDA","statusBar.debuggingForeground":"#FFFFFF","statusBar.foreground":"#7E939E","statusBar.noFolderBackground":"#FAFAFA","statusBarItem.activeBackground":"#E5393580","statusBarItem.hoverBackground":"#90A4AE20","statusBarItem.remoteBackground":"#80CBC4","statusBarItem.remoteForeground":"#000000","tab.activeBackground":"#FAFAFA","tab.activeBorder":"#80CBC4","tab.activeForeground":"#000000","tab.activeModifiedBorder":"#758a95","tab.border":"#FAFAFA","tab.inactiveBackground":"#FAFAFA","tab.inactiveForeground":"#758a95","tab.inactiveModifiedBorder":"#89221f","tab.unfocusedActiveBorder":"#90A4AE","tab.unfocusedActiveForeground":"#90A4AE","tab.unfocusedActiveModifiedBorder":"#b72d2a","tab.unfocusedInactiveModifiedBorder":"#89221f","terminal.ansiBlack":"#000000","terminal.ansiBlue":"#6182B8","terminal.ansiBrightBlack":"#90A4AE","terminal.ansiBrightBlue":"#6182B8","terminal.ansiBrightCyan":"#39ADB5","terminal.ansiBrightGreen":"#91B859","terminal.ansiBrightMagenta":"#9C3EDA","terminal.ansiBrightRed":"#E53935","terminal.ansiBrightWhite":"#FFFFFF","terminal.ansiBrightYellow":"#E2931D","terminal.ansiCyan":"#39ADB5","terminal.ansiGreen":"#91B859","terminal.ansiMagenta":"#9C3EDA","terminal.ansiRed":"#E53935","terminal.ansiWhite":"#FFFFFF","terminal.ansiYellow":"#E2931D","terminalCursor.background":"#000000","terminalCursor.foreground":"#E2931D","textLink.activeForeground":"#90A4AE","textLink.foreground":"#80CBC4","titleBar.activeBackground":"#FAFAFA","titleBar.activeForeground":"#90A4AE","titleBar.border":"#FAFAFA60","titleBar.inactiveBackground":"#FAFAFA","titleBar.inactiveForeground":"#758a95","tree.indentGuidesStroke":"#B0BEC5","widget.shadow":"#00000020"},"displayName":"Material Theme Lighter","name":"material-theme-lighter","semanticHighlighting":true,"tokenColors":[{"settings":{"background":"#FAFAFA","foreground":"#90A4AE"}},{"scope":"string","settings":{"foreground":"#91B859"}},{"scope":"punctuation, constant.other.symbol","settings":{"foreground":"#39ADB5"}},{"scope":"constant.character.escape, text.html constant.character.entity.named","settings":{"foreground":"#90A4AE"}},{"scope":"constant.language.boolean","settings":{"foreground":"#FF5370"}},{"scope":"constant.numeric","settings":{"foreground":"#F76D47"}},{"scope":"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments","settings":{"foreground":"#90A4AE"}},{"scope":"keyword.other","settings":{"foreground":"#F76D47"}},{"scope":"keyword, modifier, variable.language.this, support.type.object, constant.language","settings":{"foreground":"#39ADB5"}},{"scope":"entity.name.function, support.function","settings":{"foreground":"#6182B8"}},{"scope":"storage.type, storage.modifier, storage.control","settings":{"foreground":"#9C3EDA"}},{"scope":"support.module, support.node","settings":{"fontStyle":"italic","foreground":"#E53935"}},{"scope":"support.type, constant.other.key","settings":{"foreground":"#E2931D"}},{"scope":"entity.name.type, entity.other.inherited-class, entity.other","settings":{"foreground":"#E2931D"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#90A4AE"}},{"scope":"comment punctuation.definition.comment, string.quoted.docstring","settings":{"fontStyle":"italic","foreground":"#90A4AE"}},{"scope":"punctuation","settings":{"foreground":"#39ADB5"}},{"scope":"entity.name, entity.name.type.class, support.type, support.class, meta.use","settings":{"foreground":"#E2931D"}},{"scope":"variable.object.property, meta.field.declaration entity.name.function","settings":{"foreground":"#E53935"}},{"scope":"meta.definition.method entity.name.function","settings":{"foreground":"#E53935"}},{"scope":"meta.function entity.name.function","settings":{"foreground":"#6182B8"}},{"scope":"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end","settings":{"foreground":"#39ADB5"}},{"scope":"meta.embedded, source.groovy.embedded, meta.template.expression","settings":{"foreground":"#90A4AE"}},{"scope":"entity.name.tag.yaml","settings":{"foreground":"#E53935"}},{"scope":"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json","settings":{"foreground":"#E53935"}},{"scope":"constant.language.json","settings":{"foreground":"#39ADB5"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#E2931D"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#F76D47"}},{"scope":"source.css entity.name.tag","settings":{"foreground":"#E2931D"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#8796B0"}},{"scope":"meta.tag, punctuation.definition.tag","settings":{"foreground":"#39ADB5"}},{"scope":"entity.name.tag","settings":{"foreground":"#E53935"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#9C3EDA"}},{"scope":"punctuation.definition.entity.html","settings":{"foreground":"#90A4AE"}},{"scope":"markup.heading","settings":{"foreground":"#39ADB5"}},{"scope":"text.html.markdown meta.link.inline, meta.link.reference","settings":{"foreground":"#E53935"}},{"scope":"text.html.markdown beginning.punctuation.definition.list","settings":{"foreground":"#39ADB5"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#E53935"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#E53935"}},{"scope":"markup.bold markup.italic, markup.italic markup.bold","settings":{"fontStyle":"italic bold","foreground":"#E53935"}},{"scope":"markup.fenced_code.block.markdown punctuation.definition.markdown","settings":{"foreground":"#91B859"}},{"scope":"markup.inline.raw.string.markdown","settings":{"foreground":"#91B859"}},{"scope":"keyword.other.definition.ini","settings":{"foreground":"#E53935"}},{"scope":"entity.name.section.group-title.ini","settings":{"foreground":"#39ADB5"}},{"scope":"source.cs meta.class.identifier storage.type","settings":{"foreground":"#E2931D"}},{"scope":"source.cs meta.method.identifier entity.name.function","settings":{"foreground":"#E53935"}},{"scope":"source.cs meta.method-call meta.method, source.cs entity.name.function","settings":{"foreground":"#6182B8"}},{"scope":"source.cs storage.type","settings":{"foreground":"#E2931D"}},{"scope":"source.cs meta.method.return-type","settings":{"foreground":"#E2931D"}},{"scope":"source.cs meta.preprocessor","settings":{"foreground":"#90A4AE"}},{"scope":"source.cs entity.name.type.namespace","settings":{"foreground":"#90A4AE"}},{"scope":"meta.jsx.children, SXNested","settings":{"foreground":"#90A4AE"}},{"scope":"support.class.component","settings":{"foreground":"#E2931D"}},{"scope":"source.cpp meta.block variable.other","settings":{"foreground":"#90A4AE"}},{"scope":"source.python meta.member.access.python","settings":{"foreground":"#E53935"}},{"scope":"source.python meta.function-call.python, meta.function-call.arguments","settings":{"foreground":"#6182B8"}},{"scope":"meta.block","settings":{"foreground":"#E53935"}},{"scope":"entity.name.function.call","settings":{"foreground":"#6182B8"}},{"scope":"source.php support.other.namespace, source.php meta.use support.class","settings":{"foreground":"#90A4AE"}},{"scope":"constant.keyword","settings":{"fontStyle":"italic","foreground":"#39ADB5"}},{"scope":"entity.name.function","settings":{"foreground":"#6182B8"}},{"settings":{"background":"#FAFAFA","foreground":"#90A4AE"}},{"scope":["constant.other.placeholder"],"settings":{"foreground":"#E53935"}},{"scope":["markup.deleted"],"settings":{"foreground":"#E53935"}},{"scope":["markup.inserted"],"settings":{"foreground":"#91B859"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["keyword.control"],"settings":{"fontStyle":"italic","foreground":"#39ADB5"}},{"scope":["variable.parameter"],"settings":{"fontStyle":"italic"}},{"scope":["variable.parameter.function.language.special.self.python"],"settings":{"fontStyle":"italic","foreground":"#E53935"}},{"scope":["constant.character.format.placeholder.other.python"],"settings":{"foreground":"#F76D47"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic","foreground":"#39ADB5"}},{"scope":["markup.fenced_code.block"],"settings":{"foreground":"#90A4AE90"}},{"scope":["punctuation.definition.quote"],"settings":{"foreground":"#FF5370"}},{"scope":["meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#9C3EDA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#E2931D"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#F76D47"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#E53935"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#916b53"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#6182B8"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FF5370"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#9C3EDA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#91B859"}}],"type":"light"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=material-theme-lighter-B0m2ddpp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"material-theme-lighter-B0m2ddpp.js","sources":["../../../../node_modules/@shikijs/themes/dist/material-theme-lighter.mjs"],"sourcesContent":["/* Theme: material-theme-lighter */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBorder\\\":\\\"#80CBC4\\\",\\\"activityBar.background\\\":\\\"#FAFAFA\\\",\\\"activityBar.border\\\":\\\"#FAFAFA60\\\",\\\"activityBar.dropBackground\\\":\\\"#E5393580\\\",\\\"activityBar.foreground\\\":\\\"#90A4AE\\\",\\\"activityBarBadge.background\\\":\\\"#80CBC4\\\",\\\"activityBarBadge.foreground\\\":\\\"#000000\\\",\\\"badge.background\\\":\\\"#CCD7DA30\\\",\\\"badge.foreground\\\":\\\"#90A4AE\\\",\\\"breadcrumb.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"breadcrumb.background\\\":\\\"#FAFAFA\\\",\\\"breadcrumb.focusForeground\\\":\\\"#90A4AE\\\",\\\"breadcrumb.foreground\\\":\\\"#758a95\\\",\\\"breadcrumbPicker.background\\\":\\\"#FAFAFA\\\",\\\"button.background\\\":\\\"#80CBC440\\\",\\\"button.foreground\\\":\\\"#ffffff\\\",\\\"debugConsole.errorForeground\\\":\\\"#E53935\\\",\\\"debugConsole.infoForeground\\\":\\\"#39ADB5\\\",\\\"debugConsole.warningForeground\\\":\\\"#E2931D\\\",\\\"debugToolBar.background\\\":\\\"#FAFAFA\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#39ADB520\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#FF537020\\\",\\\"dropdown.background\\\":\\\"#FAFAFA\\\",\\\"dropdown.border\\\":\\\"#00000010\\\",\\\"editor.background\\\":\\\"#FAFAFA\\\",\\\"editor.findMatchBackground\\\":\\\"#00000020\\\",\\\"editor.findMatchBorder\\\":\\\"#80CBC4\\\",\\\"editor.findMatchHighlight\\\":\\\"#90A4AE\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#00000010\\\",\\\"editor.findMatchHighlightBorder\\\":\\\"#00000030\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#E2931D30\\\",\\\"editor.foreground\\\":\\\"#90A4AE\\\",\\\"editor.lineHighlightBackground\\\":\\\"#CCD7DA50\\\",\\\"editor.lineHighlightBorder\\\":\\\"#CCD7DA00\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#FFFFFF0d\\\",\\\"editor.selectionBackground\\\":\\\"#80CBC440\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#27272720\\\",\\\"editor.wordHighlightBackground\\\":\\\"#FF537030\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#91B85930\\\",\\\"editorBracketMatch.background\\\":\\\"#FAFAFA\\\",\\\"editorBracketMatch.border\\\":\\\"#27272750\\\",\\\"editorCursor.foreground\\\":\\\"#272727\\\",\\\"editorError.foreground\\\":\\\"#E5393570\\\",\\\"editorGroup.border\\\":\\\"#00000020\\\",\\\"editorGroup.dropBackground\\\":\\\"#E5393580\\\",\\\"editorGroup.focusedEmptyBorder\\\":\\\"#E53935\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#FAFAFA\\\",\\\"editorGutter.addedBackground\\\":\\\"#91B85960\\\",\\\"editorGutter.deletedBackground\\\":\\\"#E5393560\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#6182B860\\\",\\\"editorHoverWidget.background\\\":\\\"#FAFAFA\\\",\\\"editorHoverWidget.border\\\":\\\"#00000010\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#B0BEC5\\\",\\\"editorIndentGuide.background\\\":\\\"#B0BEC570\\\",\\\"editorInfo.foreground\\\":\\\"#6182B870\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#758a95\\\",\\\"editorLineNumber.foreground\\\":\\\"#CFD8DC\\\",\\\"editorLink.activeForeground\\\":\\\"#90A4AE\\\",\\\"editorMarkerNavigation.background\\\":\\\"#90A4AE05\\\",\\\"editorOverviewRuler.border\\\":\\\"#FAFAFA\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#E5393540\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#80CBC4\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#6182B840\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#E2931D40\\\",\\\"editorRuler.foreground\\\":\\\"#B0BEC5\\\",\\\"editorSuggestWidget.background\\\":\\\"#FAFAFA\\\",\\\"editorSuggestWidget.border\\\":\\\"#00000010\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#90A4AE\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#80CBC4\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#CCD7DA50\\\",\\\"editorWarning.foreground\\\":\\\"#E2931D70\\\",\\\"editorWhitespace.foreground\\\":\\\"#90A4AE40\\\",\\\"editorWidget.background\\\":\\\"#FAFAFA\\\",\\\"editorWidget.border\\\":\\\"#80CBC4\\\",\\\"editorWidget.resizeBorder\\\":\\\"#80CBC4\\\",\\\"extensionBadge.remoteForeground\\\":\\\"#90A4AE\\\",\\\"extensionButton.prominentBackground\\\":\\\"#91B85990\\\",\\\"extensionButton.prominentForeground\\\":\\\"#90A4AE\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#91B859\\\",\\\"focusBorder\\\":\\\"#FFFFFF00\\\",\\\"foreground\\\":\\\"#90A4AE\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#E2931D90\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#E5393590\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#758a9590\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#6182B890\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#91B85990\\\",\\\"input.background\\\":\\\"#EEEEEE\\\",\\\"input.border\\\":\\\"#00000010\\\",\\\"input.foreground\\\":\\\"#90A4AE\\\",\\\"input.placeholderForeground\\\":\\\"#90A4AE60\\\",\\\"inputOption.activeBackground\\\":\\\"#90A4AE30\\\",\\\"inputOption.activeBorder\\\":\\\"#90A4AE30\\\",\\\"inputValidation.errorBorder\\\":\\\"#E53935\\\",\\\"inputValidation.infoBorder\\\":\\\"#6182B8\\\",\\\"inputValidation.warningBorder\\\":\\\"#E2931D\\\",\\\"list.activeSelectionBackground\\\":\\\"#FAFAFA\\\",\\\"list.activeSelectionForeground\\\":\\\"#80CBC4\\\",\\\"list.dropBackground\\\":\\\"#E5393580\\\",\\\"list.focusBackground\\\":\\\"#90A4AE20\\\",\\\"list.focusForeground\\\":\\\"#90A4AE\\\",\\\"list.highlightForeground\\\":\\\"#80CBC4\\\",\\\"list.hoverBackground\\\":\\\"#FAFAFA\\\",\\\"list.hoverForeground\\\":\\\"#B1C7D3\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#CCD7DA50\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#80CBC4\\\",\\\"listFilterWidget.background\\\":\\\"#CCD7DA50\\\",\\\"listFilterWidget.noMatchesOutline\\\":\\\"#CCD7DA50\\\",\\\"listFilterWidget.outline\\\":\\\"#CCD7DA50\\\",\\\"menu.background\\\":\\\"#FAFAFA\\\",\\\"menu.foreground\\\":\\\"#90A4AE\\\",\\\"menu.selectionBackground\\\":\\\"#CCD7DA50\\\",\\\"menu.selectionBorder\\\":\\\"#CCD7DA50\\\",\\\"menu.selectionForeground\\\":\\\"#80CBC4\\\",\\\"menu.separatorBackground\\\":\\\"#90A4AE\\\",\\\"menubar.selectionBackground\\\":\\\"#CCD7DA50\\\",\\\"menubar.selectionBorder\\\":\\\"#CCD7DA50\\\",\\\"menubar.selectionForeground\\\":\\\"#80CBC4\\\",\\\"notebook.focusedCellBorder\\\":\\\"#80CBC4\\\",\\\"notebook.inactiveFocusedCellBorder\\\":\\\"#80CBC450\\\",\\\"notificationLink.foreground\\\":\\\"#80CBC4\\\",\\\"notifications.background\\\":\\\"#FAFAFA\\\",\\\"notifications.foreground\\\":\\\"#90A4AE\\\",\\\"panel.background\\\":\\\"#FAFAFA\\\",\\\"panel.border\\\":\\\"#FAFAFA60\\\",\\\"panel.dropBackground\\\":\\\"#90A4AE\\\",\\\"panelTitle.activeBorder\\\":\\\"#80CBC4\\\",\\\"panelTitle.activeForeground\\\":\\\"#000000\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#90A4AE\\\",\\\"peekView.border\\\":\\\"#00000020\\\",\\\"peekViewEditor.background\\\":\\\"#EEEEEE\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#80CBC440\\\",\\\"peekViewEditorGutter.background\\\":\\\"#EEEEEE\\\",\\\"peekViewResult.background\\\":\\\"#EEEEEE\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#80CBC440\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#758a9570\\\",\\\"peekViewTitle.background\\\":\\\"#EEEEEE\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#90A4AE60\\\",\\\"pickerGroup.border\\\":\\\"#FFFFFF1a\\\",\\\"pickerGroup.foreground\\\":\\\"#80CBC4\\\",\\\"progressBar.background\\\":\\\"#80CBC4\\\",\\\"quickInput.background\\\":\\\"#FAFAFA\\\",\\\"quickInput.foreground\\\":\\\"#758a95\\\",\\\"quickInput.list.focusBackground\\\":\\\"#90A4AE20\\\",\\\"sash.hoverBorder\\\":\\\"#80CBC450\\\",\\\"scrollbar.shadow\\\":\\\"#00000020\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#80CBC4\\\",\\\"scrollbarSlider.background\\\":\\\"#90A4AE20\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#90A4AE10\\\",\\\"selection.background\\\":\\\"#CCD7DA80\\\",\\\"settings.checkboxBackground\\\":\\\"#FAFAFA\\\",\\\"settings.checkboxForeground\\\":\\\"#90A4AE\\\",\\\"settings.dropdownBackground\\\":\\\"#FAFAFA\\\",\\\"settings.dropdownForeground\\\":\\\"#90A4AE\\\",\\\"settings.headerForeground\\\":\\\"#80CBC4\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#80CBC4\\\",\\\"settings.numberInputBackground\\\":\\\"#FAFAFA\\\",\\\"settings.numberInputForeground\\\":\\\"#90A4AE\\\",\\\"settings.textInputBackground\\\":\\\"#FAFAFA\\\",\\\"settings.textInputForeground\\\":\\\"#90A4AE\\\",\\\"sideBar.background\\\":\\\"#FAFAFA\\\",\\\"sideBar.border\\\":\\\"#FAFAFA60\\\",\\\"sideBar.foreground\\\":\\\"#758a95\\\",\\\"sideBarSectionHeader.background\\\":\\\"#FAFAFA\\\",\\\"sideBarSectionHeader.border\\\":\\\"#FAFAFA60\\\",\\\"sideBarTitle.foreground\\\":\\\"#90A4AE\\\",\\\"statusBar.background\\\":\\\"#FAFAFA\\\",\\\"statusBar.border\\\":\\\"#FAFAFA60\\\",\\\"statusBar.debuggingBackground\\\":\\\"#9C3EDA\\\",\\\"statusBar.debuggingForeground\\\":\\\"#FFFFFF\\\",\\\"statusBar.foreground\\\":\\\"#7E939E\\\",\\\"statusBar.noFolderBackground\\\":\\\"#FAFAFA\\\",\\\"statusBarItem.activeBackground\\\":\\\"#E5393580\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#90A4AE20\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#80CBC4\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#000000\\\",\\\"tab.activeBackground\\\":\\\"#FAFAFA\\\",\\\"tab.activeBorder\\\":\\\"#80CBC4\\\",\\\"tab.activeForeground\\\":\\\"#000000\\\",\\\"tab.activeModifiedBorder\\\":\\\"#758a95\\\",\\\"tab.border\\\":\\\"#FAFAFA\\\",\\\"tab.inactiveBackground\\\":\\\"#FAFAFA\\\",\\\"tab.inactiveForeground\\\":\\\"#758a95\\\",\\\"tab.inactiveModifiedBorder\\\":\\\"#89221f\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#90A4AE\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#90A4AE\\\",\\\"tab.unfocusedActiveModifiedBorder\\\":\\\"#b72d2a\\\",\\\"tab.unfocusedInactiveModifiedBorder\\\":\\\"#89221f\\\",\\\"terminal.ansiBlack\\\":\\\"#000000\\\",\\\"terminal.ansiBlue\\\":\\\"#6182B8\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#90A4AE\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#6182B8\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#39ADB5\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#91B859\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#9C3EDA\\\",\\\"terminal.ansiBrightRed\\\":\\\"#E53935\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#FFFFFF\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#E2931D\\\",\\\"terminal.ansiCyan\\\":\\\"#39ADB5\\\",\\\"terminal.ansiGreen\\\":\\\"#91B859\\\",\\\"terminal.ansiMagenta\\\":\\\"#9C3EDA\\\",\\\"terminal.ansiRed\\\":\\\"#E53935\\\",\\\"terminal.ansiWhite\\\":\\\"#FFFFFF\\\",\\\"terminal.ansiYellow\\\":\\\"#E2931D\\\",\\\"terminalCursor.background\\\":\\\"#000000\\\",\\\"terminalCursor.foreground\\\":\\\"#E2931D\\\",\\\"textLink.activeForeground\\\":\\\"#90A4AE\\\",\\\"textLink.foreground\\\":\\\"#80CBC4\\\",\\\"titleBar.activeBackground\\\":\\\"#FAFAFA\\\",\\\"titleBar.activeForeground\\\":\\\"#90A4AE\\\",\\\"titleBar.border\\\":\\\"#FAFAFA60\\\",\\\"titleBar.inactiveBackground\\\":\\\"#FAFAFA\\\",\\\"titleBar.inactiveForeground\\\":\\\"#758a95\\\",\\\"tree.indentGuidesStroke\\\":\\\"#B0BEC5\\\",\\\"widget.shadow\\\":\\\"#00000020\\\"},\\\"displayName\\\":\\\"Material Theme Lighter\\\",\\\"name\\\":\\\"material-theme-lighter\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"background\\\":\\\"#FAFAFA\\\",\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#91B859\\\"}},{\\\"scope\\\":\\\"punctuation, constant.other.symbol\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"constant.character.escape, text.html constant.character.entity.named\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"constant.language.boolean\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5370\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F76D47\\\"}},{\\\"scope\\\":\\\"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"keyword.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F76D47\\\"}},{\\\"scope\\\":\\\"keyword, modifier, variable.language.this, support.type.object, constant.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"entity.name.function, support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":\\\"storage.type, storage.modifier, storage.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#9C3EDA\\\"}},{\\\"scope\\\":\\\"support.module, support.node\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"support.type, constant.other.key\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"entity.name.type, entity.other.inherited-class, entity.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"comment punctuation.definition.comment, string.quoted.docstring\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"entity.name, entity.name.type.class, support.type, support.class, meta.use\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"variable.object.property, meta.field.declaration entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"meta.definition.method entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"meta.function entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":\\\"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"meta.embedded, source.groovy.embedded, meta.template.expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"entity.name.tag.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"constant.language.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.id\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#F76D47\\\"}},{\\\"scope\\\":\\\"source.css entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8796B0\\\"}},{\\\"scope\\\":\\\"meta.tag, punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#9C3EDA\\\"}},{\\\"scope\\\":\\\"punctuation.definition.entity.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"text.html.markdown meta.link.inline, meta.link.reference\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"text.html.markdown beginning.punctuation.definition.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"markup.bold markup.italic, markup.italic markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic bold\\\",\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"markup.fenced_code.block.markdown punctuation.definition.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#91B859\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.string.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#91B859\\\"}},{\\\"scope\\\":\\\"keyword.other.definition.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"entity.name.section.group-title.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"source.cs meta.class.identifier storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.identifier entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"source.cs meta.method-call meta.method, source.cs entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":\\\"source.cs storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"source.cs meta.method.return-type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"source.cs meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"source.cs entity.name.type.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"meta.jsx.children, SXNested\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"support.class.component\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":\\\"source.cpp meta.block variable.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"source.python meta.member.access.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"source.python meta.function-call.python, meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":\\\"meta.block\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":\\\"entity.name.function.call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":\\\"source.php support.other.namespace, source.php meta.use support.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":\\\"constant.keyword\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"settings\\\":{\\\"background\\\":\\\"#FAFAFA\\\",\\\"foreground\\\":\\\"#90A4AE\\\"}},{\\\"scope\\\":[\\\"constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#91B859\\\"}},{\\\"scope\\\":[\\\"markup.underline\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":[\\\"variable.parameter\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.language.special.self.python\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":[\\\"constant.character.format.placeholder.other.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F76D47\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#39ADB5\\\"}},{\\\"scope\\\":[\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#90A4AE90\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.quote\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5370\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9C3EDA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E2931D\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#F76D47\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E53935\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#916b53\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#6182B8\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#FF5370\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#9C3EDA\\\"}},{\\\"scope\\\":[\\\"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#91B859\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["materialThemeLighter"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,gpkBAAs1nB,CAAC","x_google_ignoreList":[0]}
|