@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":"odin-BBf5iR-q.js","sources":["../../../../node_modules/@shikijs/langs/dist/odin.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Odin\\\",\\\"name\\\":\\\"odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#file-tags\\\"},{\\\"include\\\":\\\"#package-name-declaration\\\"},{\\\"include\\\":\\\"#import-declaration\\\"},{\\\"include\\\":\\\"#statements\\\"}],\\\"repository\\\":{\\\"assignments\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#procedure-assignment\\\"},{\\\"include\\\":\\\"#type-assignment\\\"},{\\\"include\\\":\\\"#distinct-type-assignment\\\"},{\\\"include\\\":\\\"#constant-assignment\\\"},{\\\"include\\\":\\\"#variable-assignment\\\"},{\\\"include\\\":\\\"#type-annotation\\\"}]},\\\"attribute\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.attribute.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.other.attribute-name.odin\\\"}},\\\"match\\\":\\\"(@)\\\\\\\\s*([A-Z_a-z]\\\\\\\\w*)\\\\\\\\b\\\",\\\"name\\\":\\\"meta.attribute.odin\\\"},{\\\"begin\\\":\\\"(@)\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.attribute.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"name\\\":\\\"meta.attribute.odin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.other.attribute-name.odin\\\"},{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"punctuation.odin\\\"},{\\\"begin\\\":\\\"=\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"}},\\\"end\\\":\\\"(?=[),])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expressions\\\"}]}]}]},\\\"basic-types\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(i(?:8|16|32|64|128|nt))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(u(?:8|16|32|64|128|int|intptr))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b((?:u16|u32|u64|u128|i16|i32|i64|i128)le)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b((?:i16|i32|i64|i128|u16|u32|u64|u128)be)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(f(?:16|32|64))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(f(?:16|32|64)le)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(f(?:16|32|64)be)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(complex(?:32|64|128))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(quaternion(?:64|128|256))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(b(?:ool|8|16|32|64))\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(string|cstring|rune)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(rawptr)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(any|typeid)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(byte)\\\\\\\\b\\\",\\\"name\\\":\\\"support.type.primitive.odin\\\"}]},\\\"block-comment\\\":{\\\"begin\\\":\\\"/\\\\\\\\*\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.begin.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\*/\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.end.odin\\\"}},\\\"name\\\":\\\"comment.block.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#block-comment\\\"}]},\\\"block-definition\\\":{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.odin\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.odin\\\"}},\\\"name\\\":\\\"meta.block.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#statements\\\"}]},\\\"block-label\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.label.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.definition.label.odin\\\"}},\\\"match\\\":\\\"(\\\\\\\\w+)(:)\\\\\\\\s*(?=for|switch|if|\\\\\\\\{)\\\",\\\"name\\\":\\\"meta.block.label.odin\\\"},\\\"case-clause\\\":{\\\"begin\\\":\\\"\\\\\\\\b(case)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.case.odin\\\"}},\\\"end\\\":\\\":\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.section.case-statement.odin\\\"}},\\\"name\\\":\\\"meta.case-clause.expr.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expressions\\\"}]},\\\"comments\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#block-comment\\\"},{\\\"begin\\\":\\\"//\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\n\\\",\\\"name\\\":\\\"comment.line.double-slash.odin\\\"},{\\\"begin\\\":\\\"#!\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.comment.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\n\\\",\\\"name\\\":\\\"comment.line.shebang.odin\\\"}]},\\\"constant-assignment\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.constant.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"}},\\\"match\\\":\\\"([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:\\\\\\\\s*:)\\\",\\\"name\\\":\\\"meta.definition.variable.odin\\\"},\\\"distinct-type-assignment\\\":{\\\"begin\\\":\\\"\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:\\\\\\\\s*:)\\\\\\\\s*(?=(distinct)\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"storage.type.odin\\\"}},\\\"end\\\":\\\"(?=^)|(?<=})\\\",\\\"name\\\":\\\"meta.definition.variable.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"expressions\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#ternary\\\"},{\\\"include\\\":\\\"#map-bitset\\\"},{\\\"include\\\":\\\"#slice\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#type-parameter\\\"},{\\\"include\\\":\\\"#basic-types\\\"},{\\\"include\\\":\\\"#procedure-calls\\\"},{\\\"include\\\":\\\"#property-access\\\"},{\\\"include\\\":\\\"#union-member-access\\\"},{\\\"include\\\":\\\"#union-non-nil-access\\\"},{\\\"include\\\":\\\"#strings\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#variable-name\\\"}]},\\\"file-tags\\\":{\\\"begin\\\":\\\"#\\\\\\\\+[A-Z_a-z][-0-9A-Z_a-z]*\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"entity.name.tag.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\n\\\",\\\"name\\\":\\\"comment.line.double-slash.odin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"punctuation.odin\\\"},{\\\"match\\\":\\\"!\\\",\\\"name\\\":\\\"keyword.operator.logical.odin\\\"},{\\\"match\\\":\\\"[A-Z_a-z][-0-9A-Z_a-z]*\\\",\\\"name\\\":\\\"entity.other.attribute-name.odin\\\"}]},\\\"import-declaration\\\":{\\\"begin\\\":\\\"\\\\\\\\b((?:|foreign\\\\\\\\s+)import)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.control.import.odin\\\"}},\\\"end\\\":\\\"(?=^|;)\\\",\\\"name\\\":\\\"meta.import.odin\\\",\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b[A-Z_a-z]\\\\\\\\w*\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"entity.name.namespace.odin\\\"}},\\\"end\\\":\\\"(?=^|;)\\\",\\\"name\\\":\\\"entity.name.alias.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#strings\\\"},{\\\"include\\\":\\\"#comments\\\"}]},{\\\"include\\\":\\\"#strings\\\"},{\\\"include\\\":\\\"#comments\\\"}]},\\\"keywords\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(import|foreign|package)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(if|else|or_else|when|where|for|in|not_in|defer|switch|return|or_return)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.odin\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.label.odin\\\"}},\\\"match\\\":\\\"\\\\\\\\b((?:|or_)(?:break|continue))\\\\\\\\b\\\\\\\\s*(\\\\\\\\w+)?\\\"},{\\\"match\\\":\\\"\\\\\\\\b(fallthrough|case|dynamic)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(do|force_inline|no_inline)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(asm)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(auto_cast|distinct|using)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.modifier.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(context)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.context.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(ODIN_(?:ARCH|OS))\\\\\\\\b\\\",\\\"name\\\":\\\"variable.other.constant.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(nil|true|false)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.odin\\\"},{\\\"match\\\":\\\"---\\\",\\\"name\\\":\\\"constant.language.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\d([_\\\\\\\\d])*(\\\\\\\\.\\\\\\\\d([_\\\\\\\\d])*)?)(([Ee])([-+])?\\\\\\\\d+)?[ijk]?\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b((0b([01_])+)|(0o([_\\\\\\\\d])+)|(0d([_\\\\\\\\d])+)|(0[Xhx]([_\\\\\\\\h])+))i?\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\b(struct|enum|union|map|bit_set|bit_field|matrix)\\\\\\\\b\\\",\\\"name\\\":\\\"storage.type.odin\\\"},{\\\"match\\\":\\\"[-%*+/]=|%%=\\\",\\\"name\\\":\\\"keyword.operator.assignment.compound.odin\\\"},{\\\"match\\\":\\\"(?:[|~]|&~?|<<|>>)=\\\",\\\"name\\\":\\\"keyword.operator.assignment.compound.bitwise.odin\\\"},{\\\"match\\\":\\\"[!=]=\\\",\\\"name\\\":\\\"keyword.operator.comparison.odin\\\"},{\\\"match\\\":\\\"[<>]=?\\\",\\\"name\\\":\\\"keyword.operator.relational.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\.\\\\\\\\.[<=]\\\",\\\"name\\\":\\\"keyword.operator.range.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\.\\\\\\\\.\\\",\\\"name\\\":\\\"keyword.operator.spread.odin\\\"},{\\\"match\\\":\\\":[:=]|=\\\",\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"},{\\\"match\\\":\\\"&\\\",\\\"name\\\":\\\"keyword.operator.address.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\^\\\",\\\"name\\\":\\\"keyword.operator.address.odin\\\"},{\\\"match\\\":\\\"->\\\",\\\"name\\\":\\\"storage.type.function.arrow.odin\\\"},{\\\"match\\\":\\\"@|([-!%*+/:|]|<<?|>>?|~)=?|=|: : ?|\\\\\\\\$\\\",\\\"name\\\":\\\"keyword.operator.odin\\\"},{\\\"match\\\":\\\"#[A-Z_a-z]\\\\\\\\w*\\\",\\\"name\\\":\\\"entity.name.tag.odin\\\"}]},\\\"map-bitset\\\":{\\\"begin\\\":\\\"\\\\\\\\b(bit_set|map)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"storage.type.odin\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.bracket.square.odin\\\"}},\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\[\\\",\\\"name\\\":\\\"punctuation.definition.bracket.square.odin\\\"},{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"object-definition\\\":{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.odin\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.block.odin\\\"}},\\\"name\\\":\\\"meta.object.type.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#statements\\\"}]},\\\"package-name-declaration\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.module.odin\\\"}},\\\"match\\\":\\\"^\\\\\\\\s*(package)\\\\\\\\s+([A-Z_a-z]\\\\\\\\w*)\\\"},\\\"parameters\\\":{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.parameters.begin.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.parameters.end.odin\\\"}},\\\"name\\\":\\\"meta.parameters.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#assignments\\\"},{\\\"include\\\":\\\"#expressions\\\"}]},\\\"procedure-assignment\\\":{\\\"begin\\\":\\\"\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:\\\\\\\\s*:|=)\\\\\\\\s*(#\\\\\\\\w+)?\\\\\\\\s*(?=proc\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"meta.definition.function.odin entity.name.function.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.odin\\\"}},\\\"end\\\":\\\"(?=^)|(?<=})\\\",\\\"name\\\":\\\"meta.definition.variable.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"procedure-calls\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(cast|transmute)\\\\\\\\b\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.function.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"name\\\":\\\"meta.function-call.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\b((?:size|align)_of)\\\\\\\\b\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.builtin.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"name\\\":\\\"meta.function-call.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\b(len|cap|offset_of_selector|offset_of_member|offset_of|offset_of_by_string|type_of|type_info_of|typeid_of|swizzle|complex|quaternion|real|imag|jmag|kmag|conj|expand_values|min|max|abs|clamp|soa_zip|soa_unzip|make|new|new_clone|resize|reserve|append|delete|free|free_all|assert|panic)\\\\\\\\b\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.builtin.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"name\\\":\\\"meta.function-call.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expressions\\\"}]},{\\\"begin\\\":\\\"([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.function.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"name\\\":\\\"meta.function-call.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expressions\\\"}]}]},\\\"property-access\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.object.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.accessor.odin\\\"}},\\\"match\\\":\\\"([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(\\\\\\\\.)\\\\\\\\s*(?=[A-Z_a-z]\\\\\\\\w*)\\\"},\\\"punctuation\\\":{\\\"match\\\":\\\"[](),.;\\\\\\\\[\\\\\\\\\\\\\\\\{}]\\\",\\\"name\\\":\\\"punctuation.odin\\\"},\\\"return-type-declaration\\\":{\\\"begin\\\":\\\"->\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"storage.type.function.arrow.odin\\\"}},\\\"end\\\":\\\"(?=^|[),;{]|where)\\\",\\\"name\\\":\\\"meta.return.type.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#basic-types\\\"},{\\\"include\\\":\\\"#property-access\\\"},{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.parameters.begin.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.parameters.end.odin\\\"}},\\\"name\\\":\\\"meta.parameters.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#assignments\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#basic-types\\\"},{\\\"include\\\":\\\"#property-access\\\"},{\\\"include\\\":\\\"#type-name\\\"},{\\\"include\\\":\\\"#punctuation\\\"}]},{\\\"include\\\":\\\"#type-name\\\"}]},\\\"slice\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.odin\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.odin\\\"}},\\\"name\\\":\\\"meta.slice.odin\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\?\\\",\\\"name\\\":\\\"keyword.operator.array.odin\\\"},{\\\"match\\\":\\\":\\\",\\\"name\\\":\\\"keyword.operator.slice.odin\\\"},{\\\"include\\\":\\\"#expressions\\\"}]},\\\"statements\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#attribute\\\"},{\\\"include\\\":\\\"#procedure-assignment\\\"},{\\\"include\\\":\\\"#type-assignment\\\"},{\\\"include\\\":\\\"#distinct-type-assignment\\\"},{\\\"include\\\":\\\"#constant-assignment\\\"},{\\\"include\\\":\\\"#variable-assignment\\\"},{\\\"include\\\":\\\"#case-clause\\\"},{\\\"include\\\":\\\"#block-label\\\"},{\\\"include\\\":\\\"#type-annotation\\\"},{\\\"include\\\":\\\"#block-definition\\\"},{\\\"include\\\":\\\"#expressions\\\"}]},\\\"string-escaped-char\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\(x1b|e|033)\\\\\\\\[[0-9;]*m\\\",\\\"name\\\":\\\"constant.character.escape.ansi-color-sequence.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\([\\\\\\\"'\\\\\\\\\\\\\\\\abefnrtuv]|x\\\\\\\\h{2}|u\\\\\\\\h{4}|U\\\\\\\\h{8}|[0-7]{3})\\\",\\\"name\\\":\\\"constant.character.escape.odin\\\"},{\\\"match\\\":\\\"%([%E-HMTUXb-imo-tvwxz])\\\",\\\"name\\\":\\\"constant.character.escape.placeholders.odin\\\"},{\\\"match\\\":\\\"%(\\\\\\\\d*\\\\\\\\.?\\\\\\\\d*f)\\\",\\\"name\\\":\\\"constant.character.escape.placeholders-floats.odin\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"invalid.illegal.unknown-escape.odin\\\"}]},\\\"strings\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.odin\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.odin\\\"}},\\\"name\\\":\\\"string.quoted.double.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-escaped-char\\\"}]},{\\\"begin\\\":\\\"'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.odin\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.odin\\\"}},\\\"name\\\":\\\"string.quoted.single.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-escaped-char\\\"}]},{\\\"begin\\\":\\\"`\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.odin\\\"}},\\\"end\\\":\\\"`\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.odin\\\"}},\\\"name\\\":\\\"string.quoted.raw.odin\\\"}]},\\\"ternary\\\":{\\\"begin\\\":\\\"\\\\\\\\?\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.operator.ternary.odin\\\"}},\\\"end\\\":\\\":\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.operator.ternary.odin\\\"}},\\\"name\\\":\\\"meta.ternary.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expressions\\\"}]},\\\"type-annotation\\\":{\\\"begin\\\":\\\"(?:([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(,)\\\\\\\\s*)?(?:([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(,)\\\\\\\\s*)?([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"4\\\":{\\\"name\\\":\\\"punctuation.odin\\\"},\\\"5\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"6\\\":{\\\"name\\\":\\\"keyword.operator.type.annotation.odin\\\"}},\\\"end\\\":\\\"(?=^|[),:;=]|for|switch|if|\\\\\\\\{)\\\",\\\"name\\\":\\\"meta.type.annotation.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"type-assignment\\\":{\\\"begin\\\":\\\"\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:\\\\\\\\s*:)\\\\\\\\s*(?=(struct|union|enum|bit_set|bit_field)\\\\\\\\b)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"storage.type.odin\\\"}},\\\"end\\\":\\\"(?=^)|(?<=})\\\",\\\"name\\\":\\\"meta.definition.variable.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"type-declaration\\\":{\\\"name\\\":\\\"meta.type.declaration.odin\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#map-bitset\\\"},{\\\"begin\\\":\\\"\\\\\\\\b(proc|struct|union|enum|bit_field)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.odin\\\"}},\\\"end\\\":\\\"(?=^|[),;])|(?<=})\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#parameters\\\"},{\\\"include\\\":\\\"#return-type-declaration\\\"},{\\\"include\\\":\\\"#object-definition\\\"},{\\\"include\\\":\\\"#expressions\\\"}]},{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#strings\\\"},{\\\"include\\\":\\\"#block-definition\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#basic-types\\\"},{\\\"include\\\":\\\"#slice\\\"},{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.typeparameters.begin.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.typeparameters.end.odin\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},{\\\"include\\\":\\\"#property-access\\\"},{\\\"include\\\":\\\"#punctuation\\\"},{\\\"include\\\":\\\"#type-name\\\"}]},\\\"type-name\\\":{\\\"match\\\":\\\"\\\\\\\\b[A-Z_a-z]\\\\\\\\w*\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.odin\\\"},\\\"type-parameter\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.type.parameter.odin\\\"}},\\\"match\\\":\\\"(\\\\\\\\$)\\\\\\\\s*\\\\\\\\b([A-Z_a-z]\\\\\\\\w*)\\\\\\\\b\\\"},\\\"union-member-access\\\":{\\\"begin\\\":\\\"([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(\\\\\\\\.)\\\\\\\\s*(\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.object.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.accessor.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.odin\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#type-declaration\\\"}]},\\\"union-non-nil-access\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.object.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.accessor.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.accessor.optional.odin\\\"}},\\\"match\\\":\\\"([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(\\\\\\\\.)\\\\\\\\s*(\\\\\\\\?)\\\"},\\\"variable-assignment\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"2\\\":{\\\"name\\\":\\\"punctuation.odin\\\"},\\\"3\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"4\\\":{\\\"name\\\":\\\"punctuation.odin\\\"},\\\"5\\\":{\\\"name\\\":\\\"variable.name.odin\\\"},\\\"6\\\":{\\\"name\\\":\\\"keyword.operator.assignment.odin\\\"}},\\\"match\\\":\\\"(?:([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(,)\\\\\\\\s*)?(?:([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(,)\\\\\\\\s*)?([A-Z_a-z]\\\\\\\\w*)\\\\\\\\s*(:\\\\\\\\s*=)\\\",\\\"name\\\":\\\"meta.definition.variable.odin\\\"},\\\"variable-name\\\":{\\\"match\\\":\\\"\\\\\\\\b[A-Z_a-z]\\\\\\\\w*\\\\\\\\b\\\",\\\"name\\\":\\\"variable.name.odin\\\"}},\\\"scopeName\\\":\\\"source.odin\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","odin"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,ikgBAAkjkB,CAAC,EAEzlkBC,EAAe,CACfD,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":{"actionBar.toggledBackground":"#525761","activityBar.background":"#282c34","activityBar.foreground":"#d7dae0","activityBarBadge.background":"#4d78cc","activityBarBadge.foreground":"#f8fafd","badge.background":"#282c34","button.background":"#404754","button.secondaryBackground":"#30333d","button.secondaryForeground":"#c0bdbd","checkbox.border":"#404754","debugToolBar.background":"#21252b","descriptionForeground":"#abb2bf","diffEditor.insertedTextBackground":"#00809b33","dropdown.background":"#21252b","dropdown.border":"#21252b","editor.background":"#282c34","editor.findMatchBackground":"#d19a6644","editor.findMatchBorder":"#ffffff5a","editor.findMatchHighlightBackground":"#ffffff22","editor.foreground":"#abb2bf","editor.lineHighlightBackground":"#2c313c","editor.selectionBackground":"#67769660","editor.selectionHighlightBackground":"#ffd33d44","editor.selectionHighlightBorder":"#dddddd","editor.wordHighlightBackground":"#d2e0ff2f","editor.wordHighlightBorder":"#7f848e","editor.wordHighlightStrongBackground":"#abb2bf26","editor.wordHighlightStrongBorder":"#7f848e","editorBracketHighlight.foreground1":"#d19a66","editorBracketHighlight.foreground2":"#c678dd","editorBracketHighlight.foreground3":"#56b6c2","editorBracketMatch.background":"#515a6b","editorBracketMatch.border":"#515a6b","editorCursor.background":"#ffffffc9","editorCursor.foreground":"#528bff","editorError.foreground":"#c24038","editorGroup.background":"#181a1f","editorGroup.border":"#181a1f","editorGroupHeader.tabsBackground":"#21252b","editorGutter.addedBackground":"#109868","editorGutter.deletedBackground":"#9A353D","editorGutter.modifiedBackground":"#948B60","editorHoverWidget.background":"#21252b","editorHoverWidget.border":"#181a1f","editorHoverWidget.highlightForeground":"#61afef","editorIndentGuide.activeBackground1":"#c8c8c859","editorIndentGuide.background1":"#3b4048","editorInlayHint.background":"#2c313c","editorInlayHint.foreground":"#abb2bf","editorLineNumber.activeForeground":"#abb2bf","editorLineNumber.foreground":"#495162","editorMarkerNavigation.background":"#21252b","editorOverviewRuler.addedBackground":"#109868","editorOverviewRuler.deletedBackground":"#9A353D","editorOverviewRuler.modifiedBackground":"#948B60","editorRuler.foreground":"#abb2bf26","editorSuggestWidget.background":"#21252b","editorSuggestWidget.border":"#181a1f","editorSuggestWidget.selectedBackground":"#2c313a","editorWarning.foreground":"#d19a66","editorWhitespace.foreground":"#ffffff1d","editorWidget.background":"#21252b","focusBorder":"#3e4452","gitDecoration.ignoredResourceForeground":"#636b78","input.background":"#1d1f23","input.foreground":"#abb2bf","list.activeSelectionBackground":"#2c313a","list.activeSelectionForeground":"#d7dae0","list.focusBackground":"#323842","list.focusForeground":"#f0f0f0","list.highlightForeground":"#ecebeb","list.hoverBackground":"#2c313a","list.hoverForeground":"#abb2bf","list.inactiveSelectionBackground":"#323842","list.inactiveSelectionForeground":"#d7dae0","list.warningForeground":"#d19a66","menu.foreground":"#abb2bf","menu.separatorBackground":"#343a45","minimapGutter.addedBackground":"#109868","minimapGutter.deletedBackground":"#9A353D","minimapGutter.modifiedBackground":"#948B60","multiDiffEditor.headerBackground":"#21252b","panel.border":"#3e4452","panelSectionHeader.background":"#21252b","peekViewEditor.background":"#1b1d23","peekViewEditor.matchHighlightBackground":"#29244b","peekViewResult.background":"#22262b","scrollbar.shadow":"#23252c","scrollbarSlider.activeBackground":"#747d9180","scrollbarSlider.background":"#4e566660","scrollbarSlider.hoverBackground":"#5a637580","settings.focusedRowBackground":"#282c34","settings.headerForeground":"#fff","sideBar.background":"#21252b","sideBar.foreground":"#abb2bf","sideBarSectionHeader.background":"#282c34","sideBarSectionHeader.foreground":"#abb2bf","statusBar.background":"#21252b","statusBar.debuggingBackground":"#cc6633","statusBar.debuggingBorder":"#ff000000","statusBar.debuggingForeground":"#ffffff","statusBar.foreground":"#9da5b4","statusBar.noFolderBackground":"#21252b","statusBarItem.remoteBackground":"#4d78cc","statusBarItem.remoteForeground":"#f8fafd","tab.activeBackground":"#282c34","tab.activeBorder":"#b4b4b4","tab.activeForeground":"#dcdcdc","tab.border":"#181a1f","tab.hoverBackground":"#323842","tab.inactiveBackground":"#21252b","tab.unfocusedHoverBackground":"#323842","terminal.ansiBlack":"#3f4451","terminal.ansiBlue":"#4aa5f0","terminal.ansiBrightBlack":"#4f5666","terminal.ansiBrightBlue":"#4dc4ff","terminal.ansiBrightCyan":"#4cd1e0","terminal.ansiBrightGreen":"#a5e075","terminal.ansiBrightMagenta":"#de73ff","terminal.ansiBrightRed":"#ff616e","terminal.ansiBrightWhite":"#e6e6e6","terminal.ansiBrightYellow":"#f0a45d","terminal.ansiCyan":"#42b3c2","terminal.ansiGreen":"#8cc265","terminal.ansiMagenta":"#c162de","terminal.ansiRed":"#e05561","terminal.ansiWhite":"#d7dae0","terminal.ansiYellow":"#d18f52","terminal.background":"#282c34","terminal.border":"#3e4452","terminal.foreground":"#abb2bf","terminal.selectionBackground":"#abb2bf30","textBlockQuote.background":"#2e3440","textBlockQuote.border":"#4b5362","textLink.foreground":"#61afef","textPreformat.foreground":"#d19a66","titleBar.activeBackground":"#282c34","titleBar.activeForeground":"#9da5b4","titleBar.inactiveBackground":"#282c34","titleBar.inactiveForeground":"#6b717d","tree.indentGuidesStroke":"#ffffff1d","walkThrough.embeddedEditorBackground":"#2e3440","welcomePage.buttonHoverBackground":"#404754"},"displayName":"One Dark Pro","name":"one-dark-pro","semanticHighlighting":true,"semanticTokenColors":{"annotation:dart":{"foreground":"#d19a66"},"enumMember":{"foreground":"#56b6c2"},"macro":{"foreground":"#d19a66"},"memberOperatorOverload":{"foreground":"#c678dd"},"parameter.label:dart":{"foreground":"#abb2bf"},"property:dart":{"foreground":"#d19a66"},"tomlArrayKey":{"foreground":"#e5c07b"},"variable.constant":{"foreground":"#d19a66"},"variable.defaultLibrary":{"foreground":"#e5c07b"},"variable:dart":{"foreground":"#d19a66"}},"tokenColors":[{"scope":"meta.embedded","settings":{"foreground":"#abb2bf"}},{"scope":"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison","settings":{"foreground":"#e06c75"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#c678dd"}},{"scope":"storage.type.haskell","settings":{"foreground":"#d19a66"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python","settings":{"foreground":"#abb2bf"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#e5c07b"}},{"scope":"variable.parameter.function.language.special.cls.python","settings":{"foreground":"#e5c07b"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#abb2bf"}},{"scope":"support.function.std.rust","settings":{"foreground":"#61afef"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#e5c07b"}},{"scope":"variable.language.rust","settings":{"foreground":"#e06c75"}},{"scope":"support.constant.edge","settings":{"foreground":"#c678dd"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#e06c75"}},{"scope":["keyword.operator.word"],"settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#d19a66"}},{"scope":"variable.parameter.function","settings":{"foreground":"#abb2bf"}},{"scope":"comment markup.link","settings":{"foreground":"#5c6370"}},{"scope":"markup.changed.diff","settings":{"foreground":"#e5c07b"}},{"scope":"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff","settings":{"foreground":"#61afef"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#98c379"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#e06c75"}},{"scope":"meta.function.c,meta.function.cpp","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c","settings":{"foreground":"#abb2bf"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#abb2bf"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#61afef"}},{"scope":"support.constant.math","settings":{"foreground":"#e5c07b"}},{"scope":"support.constant.property.math","settings":{"foreground":"#d19a66"}},{"scope":"variable.other.constant","settings":{"foreground":"#e5c07b"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#e5c07b"}},{"scope":"source.java","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java","settings":{"foreground":"#abb2bf"}},{"scope":"meta.method.java","settings":{"foreground":"#61afef"}},{"scope":"storage.modifier.import.java,storage.type.java,storage.type.generic.java","settings":{"foreground":"#e5c07b"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#c678dd"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#e06c75"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.bitwise","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.channel","settings":{"foreground":"#56b6c2"}},{"scope":"support.constant.property-value.scss,support.constant.property-value.css","settings":{"foreground":"#d19a66"}},{"scope":"keyword.operator.css,keyword.operator.scss,keyword.operator.less","settings":{"foreground":"#56b6c2"}},{"scope":"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss","settings":{"foreground":"#d19a66"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#abb2bf"}},{"scope":"support.constant.color.w3c-standard-color-name.css","settings":{"foreground":"#d19a66"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#56b6c2"}},{"scope":"support.module.node,support.type.object.module,support.module.node","settings":{"foreground":"#e5c07b"}},{"scope":"entity.name.type.module","settings":{"foreground":"#e5c07b"}},{"scope":"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node","settings":{"foreground":"#e06c75"}},{"scope":"support.constant.json","settings":{"foreground":"#d19a66"}},{"scope":["keyword.operator.expression.instanceof","keyword.operator.new","keyword.operator.ternary","keyword.operator.optional","keyword.operator.expression.keyof"],"settings":{"foreground":"#c678dd"}},{"scope":"support.type.object.console","settings":{"foreground":"#e06c75"}},{"scope":"support.variable.property.process","settings":{"foreground":"#d19a66"}},{"scope":"entity.name.function,support.function.console","settings":{"foreground":"#61afef"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#abb2bf"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#c678dd"}},{"scope":"support.type.object.dom","settings":{"foreground":"#56b6c2"}},{"scope":"support.variable.dom,support.variable.property.dom","settings":{"foreground":"#e06c75"}},{"scope":"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp","settings":{"foreground":"#c678dd"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#abb2bf"}},{"scope":"punctuation.separator.c,punctuation.separator.cpp","settings":{"foreground":"#c678dd"}},{"scope":"support.type.posix-reserved.c,support.type.posix-reserved.cpp","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp","settings":{"foreground":"#c678dd"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#d19a66"}},{"scope":"support.type.python","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#c678dd"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#d19a66"}},{"scope":"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python","settings":{"foreground":"#abb2bf"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#61afef"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#d19a66"}},{"scope":"keyword.operator","settings":{"foreground":"#abb2bf"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts","settings":{"foreground":"#56b6c2"}},{"scope":"keyword","settings":{"foreground":"#c678dd"}},{"scope":"entity.name.namespace","settings":{"foreground":"#e5c07b"}},{"scope":"variable","settings":{"foreground":"#e06c75"}},{"scope":"variable.c","settings":{"foreground":"#abb2bf"}},{"scope":"variable.language","settings":{"foreground":"#e5c07b"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#abb2bf"}},{"scope":"import.storage.java","settings":{"foreground":"#e5c07b"}},{"scope":"token.package.keyword","settings":{"foreground":"#c678dd"}},{"scope":"token.package","settings":{"foreground":"#abb2bf"}},{"scope":["entity.name.function","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#61afef"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#e5c07b"}},{"scope":"support.class, entity.name.type.class","settings":{"foreground":"#e5c07b"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#e5c07b"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#e5c07b"}},{"scope":"variable.other.class.php","settings":{"foreground":"#e06c75"}},{"scope":"entity.name.type","settings":{"foreground":"#e5c07b"}},{"scope":"keyword.control","settings":{"foreground":"#c678dd"}},{"scope":"control.elements, keyword.operator.less","settings":{"foreground":"#d19a66"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#61afef"}},{"scope":"storage","settings":{"foreground":"#c678dd"}},{"scope":"token.storage","settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void","settings":{"foreground":"#c678dd"}},{"scope":"token.storage.type.java","settings":{"foreground":"#e5c07b"}},{"scope":"support.function","settings":{"foreground":"#56b6c2"}},{"scope":"support.type.property-name","settings":{"foreground":"#abb2bf"}},{"scope":"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml","settings":{"foreground":"#e06c75"}},{"scope":"support.constant.property-value","settings":{"foreground":"#abb2bf"}},{"scope":"support.constant.font-name","settings":{"foreground":"#d19a66"}},{"scope":"meta.tag","settings":{"foreground":"#abb2bf"}},{"scope":"string","settings":{"foreground":"#98c379"}},{"scope":"constant.other.symbol","settings":{"foreground":"#56b6c2"}},{"scope":"constant.numeric","settings":{"foreground":"#d19a66"}},{"scope":"constant","settings":{"foreground":"#d19a66"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#d19a66"}},{"scope":"entity.name.tag","settings":{"foreground":"#e06c75"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#d19a66"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#61afef"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#d19a66"}},{"scope":"meta.selector","settings":{"foreground":"#c678dd"}},{"scope":"markup.heading","settings":{"foreground":"#e06c75"}},{"scope":"markup.heading punctuation.definition.heading, entity.name.section","settings":{"foreground":"#61afef"}},{"scope":"keyword.other.unit","settings":{"foreground":"#e06c75"}},{"scope":"markup.bold,todo.bold","settings":{"foreground":"#d19a66"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#e5c07b"}},{"scope":"markup.italic, punctuation.definition.italic,todo.emphasis","settings":{"foreground":"#c678dd"}},{"scope":"emphasis md","settings":{"foreground":"#c678dd"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#e5c07b"}},{"scope":"markup.heading.setext","settings":{"foreground":"#abb2bf"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#d19a66"}},{"scope":"markup.inline.raw.markdown","settings":{"foreground":"#98c379"}},{"scope":"markup.inline.raw.string.markdown","settings":{"foreground":"#98c379"}},{"scope":"punctuation.definition.raw.markdown","settings":{"foreground":"#e5c07b"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#e5c07b"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown","punctuation.definition.metadata.markdown"],"settings":{"foreground":"#e06c75"}},{"scope":["beginning.punctuation.definition.list.markdown"],"settings":{"foreground":"#e06c75"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#e06c75"}},{"scope":"markup.underline.link.markdown,markup.underline.link.image.markdown","settings":{"foreground":"#c678dd"}},{"scope":"string.other.link.title.markdown,string.other.link.description.markdown","settings":{"foreground":"#61afef"}},{"scope":"markup.raw.monospace.asciidoc","settings":{"foreground":"#98c379"}},{"scope":"punctuation.definition.asciidoc","settings":{"foreground":"#e5c07b"}},{"scope":"markup.list.asciidoc","settings":{"foreground":"#e5c07b"}},{"scope":"markup.link.asciidoc,markup.other.url.asciidoc","settings":{"foreground":"#c678dd"}},{"scope":"string.unquoted.asciidoc,markup.other.url.asciidoc","settings":{"foreground":"#61afef"}},{"scope":"string.regexp","settings":{"foreground":"#56b6c2"}},{"scope":"punctuation.section.embedded, variable.interpolation","settings":{"foreground":"#e06c75"}},{"scope":"punctuation.section.embedded.begin,punctuation.section.embedded.end","settings":{"foreground":"#c678dd"}},{"scope":"invalid.illegal","settings":{"foreground":"#ffffff"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#abb2bf"}},{"scope":"invalid.illegal.unrecognized-tag.html","settings":{"foreground":"#e06c75"}},{"scope":"invalid.broken","settings":{"foreground":"#ffffff"}},{"scope":"invalid.deprecated","settings":{"foreground":"#ffffff"}},{"scope":"invalid.deprecated.entity.other.attribute-name.html","settings":{"foreground":"#d19a66"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#ffffff"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#e06c75"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#e06c75"}},{"scope":"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation","settings":{"foreground":"#98c379"}},{"scope":"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json","settings":{"foreground":"#56b6c2"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#e06c75"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#e06c75"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#c678dd"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#c678dd"}},{"scope":"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php","settings":{"foreground":"#e5c07b"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#c678dd"}},{"scope":"punctuation.section.array.begin.php","settings":{"foreground":"#abb2bf"}},{"scope":"punctuation.section.array.end.php","settings":{"foreground":"#abb2bf"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#f44747"}},{"scope":"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php","settings":{"foreground":"#e5c07b"}},{"scope":"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php","settings":{"foreground":"#61afef"}},{"scope":"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php","settings":{"foreground":"#abb2bf"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#d19a66"}},{"scope":"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php","settings":{"foreground":"#d19a66"}},{"scope":"entity.name.goto-label.php,support.other.php","settings":{"foreground":"#61afef"}},{"scope":"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#c678dd"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#56b6c2"}},{"scope":"keyword.operator.heredoc.php,keyword.operator.nowdoc.php","settings":{"foreground":"#c678dd"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#61afef"}},{"scope":"support.token.decorator.python,meta.function.decorator.identifier.python","settings":{"foreground":"#56b6c2"}},{"scope":"function.parameter","settings":{"foreground":"#abb2bf"}},{"scope":"function.brace","settings":{"foreground":"#abb2bf"}},{"scope":"function.parameter.ruby, function.parameter.cs","settings":{"foreground":"#abb2bf"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#56b6c2"}},{"scope":"constant.language.symbol.hashkey.ruby","settings":{"foreground":"#56b6c2"}},{"scope":"rgb-value","settings":{"foreground":"#56b6c2"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#d19a66"}},{"scope":"less rgb-value","settings":{"foreground":"#d19a66"}},{"scope":"selector.sass","settings":{"foreground":"#e06c75"}},{"scope":"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx","settings":{"foreground":"#e5c07b"}},{"scope":"block.scope.end,block.scope.begin","settings":{"foreground":"#abb2bf"}},{"scope":"storage.type.cs","settings":{"foreground":"#e5c07b"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#e06c75"}},{"scope":"token.info-token","settings":{"foreground":"#61afef"}},{"scope":"token.warn-token","settings":{"foreground":"#d19a66"}},{"scope":"token.error-token","settings":{"foreground":"#f44747"}},{"scope":"token.debug-token","settings":{"foreground":"#c678dd"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end","punctuation.section.embedded"],"settings":{"foreground":"#c678dd"}},{"scope":["meta.template.expression"],"settings":{"foreground":"#abb2bf"}},{"scope":["keyword.operator.module"],"settings":{"foreground":"#c678dd"}},{"scope":["support.type.type.flowtype"],"settings":{"foreground":"#61afef"}},{"scope":["support.type.primitive"],"settings":{"foreground":"#e5c07b"}},{"scope":["meta.property.object"],"settings":{"foreground":"#e06c75"}},{"scope":["variable.parameter.function.js"],"settings":{"foreground":"#e06c75"}},{"scope":["keyword.other.template.begin"],"settings":{"foreground":"#98c379"}},{"scope":["keyword.other.template.end"],"settings":{"foreground":"#98c379"}},{"scope":["keyword.other.substitution.begin"],"settings":{"foreground":"#98c379"}},{"scope":["keyword.other.substitution.end"],"settings":{"foreground":"#98c379"}},{"scope":["keyword.operator.assignment"],"settings":{"foreground":"#56b6c2"}},{"scope":["keyword.operator.assignment.go"],"settings":{"foreground":"#e5c07b"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#c678dd"}},{"scope":["keyword.operator.arithmetic.c","keyword.operator.arithmetic.cpp"],"settings":{"foreground":"#c678dd"}},{"scope":["entity.name.package.go"],"settings":{"foreground":"#e5c07b"}},{"scope":["support.type.prelude.elm"],"settings":{"foreground":"#56b6c2"}},{"scope":["support.constant.elm"],"settings":{"foreground":"#d19a66"}},{"scope":["punctuation.quasi.element"],"settings":{"foreground":"#c678dd"}},{"scope":["constant.character.entity"],"settings":{"foreground":"#e06c75"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#56b6c2"}},{"scope":["entity.global.clojure"],"settings":{"foreground":"#e5c07b"}},{"scope":["meta.symbol.clojure"],"settings":{"foreground":"#e06c75"}},{"scope":["constant.keyword.clojure"],"settings":{"foreground":"#56b6c2"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#e06c75"}},{"scope":["source.ini"],"settings":{"foreground":"#98c379"}},{"scope":["meta.scope.prerequisites.makefile"],"settings":{"foreground":"#e06c75"}},{"scope":["source.makefile"],"settings":{"foreground":"#e5c07b"}},{"scope":["storage.modifier.import.groovy"],"settings":{"foreground":"#e5c07b"}},{"scope":["meta.method.groovy"],"settings":{"foreground":"#61afef"}},{"scope":["meta.definition.variable.name.groovy"],"settings":{"foreground":"#e06c75"}},{"scope":["meta.definition.class.inherited.classes.groovy"],"settings":{"foreground":"#98c379"}},{"scope":["support.variable.semantic.hlsl"],"settings":{"foreground":"#e5c07b"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#c678dd"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#e06c75"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#e5c07b"}},{"scope":["entity.name.function.xi"],"settings":{"foreground":"#e5c07b"}},{"scope":["entity.name.class.xi"],"settings":{"foreground":"#56b6c2"}},{"scope":["constant.character.character-class.regexp.xi"],"settings":{"foreground":"#e06c75"}},{"scope":["constant.regexp.xi"],"settings":{"foreground":"#c678dd"}},{"scope":["keyword.control.xi"],"settings":{"foreground":"#56b6c2"}},{"scope":["invalid.xi"],"settings":{"foreground":"#abb2bf"}},{"scope":["beginning.punctuation.definition.quote.markdown.xi"],"settings":{"foreground":"#98c379"}},{"scope":["beginning.punctuation.definition.list.markdown.xi"],"settings":{"foreground":"#7f848e"}},{"scope":["constant.character.xi"],"settings":{"foreground":"#61afef"}},{"scope":["accent.xi"],"settings":{"foreground":"#61afef"}},{"scope":["wikiword.xi"],"settings":{"foreground":"#d19a66"}},{"scope":["constant.other.color.rgb-value.xi"],"settings":{"foreground":"#ffffff"}},{"scope":["punctuation.definition.tag.xi"],"settings":{"foreground":"#5c6370"}},{"scope":["entity.name.label.cs","entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#e5c07b"}},{"scope":["entity.name.label.cs","markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#e06c75"}},{"scope":[" meta.brace.square"],"settings":{"foreground":"#abb2bf"}},{"scope":"comment, punctuation.definition.comment","settings":{"fontStyle":"italic","foreground":"#7f848e"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#5c6370"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#abb2bf"}},{"scope":["constant.language.symbol.elixir","constant.language.symbol.double-quoted.elixir"],"settings":{"foreground":"#56b6c2"}},{"scope":["entity.name.variable.parameter.cs"],"settings":{"foreground":"#e5c07b"}},{"scope":["entity.name.variable.field.cs"],"settings":{"foreground":"#e06c75"}},{"scope":"markup.deleted","settings":{"foreground":"#e06c75"}},{"scope":"markup.inserted","settings":{"foreground":"#98c379"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":["punctuation.section.embedded.begin.php","punctuation.section.embedded.end.php"],"settings":{"foreground":"#BE5046"}},{"scope":["support.other.namespace.php"],"settings":{"foreground":"#abb2bf"}},{"scope":["variable.parameter.function.latex"],"settings":{"foreground":"#e06c75"}},{"scope":["variable.other.object"],"settings":{"foreground":"#e5c07b"}},{"scope":["variable.other.constant.property"],"settings":{"foreground":"#e06c75"}},{"scope":["entity.other.inherited-class"],"settings":{"foreground":"#e5c07b"}},{"scope":"variable.other.readwrite.c","settings":{"foreground":"#e06c75"}},{"scope":"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php","settings":{"foreground":"#abb2bf"}},{"scope":["constant.numeric.decimal.asm.x86_64"],"settings":{"foreground":"#c678dd"}},{"scope":["support.other.parenthesis.regexp"],"settings":{"foreground":"#d19a66"}},{"scope":["constant.character.escape"],"settings":{"foreground":"#56b6c2"}},{"scope":["string.regexp"],"settings":{"foreground":"#e06c75"}},{"scope":["log.info"],"settings":{"foreground":"#98c379"}},{"scope":["log.warning"],"settings":{"foreground":"#e5c07b"}},{"scope":["log.error"],"settings":{"foreground":"#e06c75"}},{"scope":"keyword.operator.expression.is","settings":{"foreground":"#c678dd"}},{"scope":"entity.name.label","settings":{"foreground":"#e06c75"}},{"scope":["support.class.math.block.environment.latex","constant.other.general.math.tex"],"settings":{"foreground":"#61afef"}},{"scope":["constant.character.math.tex"],"settings":{"foreground":"#98c379"}},{"scope":"entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super","settings":{"fontStyle":"italic"}},{"scope":"comment.line.double-slash,comment.block.documentation","settings":{"fontStyle":"italic"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}}],"type":"dark"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=one-dark-pro-DVMEJ2y_.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-dark-pro-DVMEJ2y_.js","sources":["../../../../node_modules/@shikijs/themes/dist/one-dark-pro.mjs"],"sourcesContent":["/* Theme: one-dark-pro */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"actionBar.toggledBackground\\\":\\\"#525761\\\",\\\"activityBar.background\\\":\\\"#282c34\\\",\\\"activityBar.foreground\\\":\\\"#d7dae0\\\",\\\"activityBarBadge.background\\\":\\\"#4d78cc\\\",\\\"activityBarBadge.foreground\\\":\\\"#f8fafd\\\",\\\"badge.background\\\":\\\"#282c34\\\",\\\"button.background\\\":\\\"#404754\\\",\\\"button.secondaryBackground\\\":\\\"#30333d\\\",\\\"button.secondaryForeground\\\":\\\"#c0bdbd\\\",\\\"checkbox.border\\\":\\\"#404754\\\",\\\"debugToolBar.background\\\":\\\"#21252b\\\",\\\"descriptionForeground\\\":\\\"#abb2bf\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#00809b33\\\",\\\"dropdown.background\\\":\\\"#21252b\\\",\\\"dropdown.border\\\":\\\"#21252b\\\",\\\"editor.background\\\":\\\"#282c34\\\",\\\"editor.findMatchBackground\\\":\\\"#d19a6644\\\",\\\"editor.findMatchBorder\\\":\\\"#ffffff5a\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#ffffff22\\\",\\\"editor.foreground\\\":\\\"#abb2bf\\\",\\\"editor.lineHighlightBackground\\\":\\\"#2c313c\\\",\\\"editor.selectionBackground\\\":\\\"#67769660\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#ffd33d44\\\",\\\"editor.selectionHighlightBorder\\\":\\\"#dddddd\\\",\\\"editor.wordHighlightBackground\\\":\\\"#d2e0ff2f\\\",\\\"editor.wordHighlightBorder\\\":\\\"#7f848e\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#abb2bf26\\\",\\\"editor.wordHighlightStrongBorder\\\":\\\"#7f848e\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#d19a66\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#c678dd\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#56b6c2\\\",\\\"editorBracketMatch.background\\\":\\\"#515a6b\\\",\\\"editorBracketMatch.border\\\":\\\"#515a6b\\\",\\\"editorCursor.background\\\":\\\"#ffffffc9\\\",\\\"editorCursor.foreground\\\":\\\"#528bff\\\",\\\"editorError.foreground\\\":\\\"#c24038\\\",\\\"editorGroup.background\\\":\\\"#181a1f\\\",\\\"editorGroup.border\\\":\\\"#181a1f\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#21252b\\\",\\\"editorGutter.addedBackground\\\":\\\"#109868\\\",\\\"editorGutter.deletedBackground\\\":\\\"#9A353D\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#948B60\\\",\\\"editorHoverWidget.background\\\":\\\"#21252b\\\",\\\"editorHoverWidget.border\\\":\\\"#181a1f\\\",\\\"editorHoverWidget.highlightForeground\\\":\\\"#61afef\\\",\\\"editorIndentGuide.activeBackground1\\\":\\\"#c8c8c859\\\",\\\"editorIndentGuide.background1\\\":\\\"#3b4048\\\",\\\"editorInlayHint.background\\\":\\\"#2c313c\\\",\\\"editorInlayHint.foreground\\\":\\\"#abb2bf\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#abb2bf\\\",\\\"editorLineNumber.foreground\\\":\\\"#495162\\\",\\\"editorMarkerNavigation.background\\\":\\\"#21252b\\\",\\\"editorOverviewRuler.addedBackground\\\":\\\"#109868\\\",\\\"editorOverviewRuler.deletedBackground\\\":\\\"#9A353D\\\",\\\"editorOverviewRuler.modifiedBackground\\\":\\\"#948B60\\\",\\\"editorRuler.foreground\\\":\\\"#abb2bf26\\\",\\\"editorSuggestWidget.background\\\":\\\"#21252b\\\",\\\"editorSuggestWidget.border\\\":\\\"#181a1f\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#2c313a\\\",\\\"editorWarning.foreground\\\":\\\"#d19a66\\\",\\\"editorWhitespace.foreground\\\":\\\"#ffffff1d\\\",\\\"editorWidget.background\\\":\\\"#21252b\\\",\\\"focusBorder\\\":\\\"#3e4452\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#636b78\\\",\\\"input.background\\\":\\\"#1d1f23\\\",\\\"input.foreground\\\":\\\"#abb2bf\\\",\\\"list.activeSelectionBackground\\\":\\\"#2c313a\\\",\\\"list.activeSelectionForeground\\\":\\\"#d7dae0\\\",\\\"list.focusBackground\\\":\\\"#323842\\\",\\\"list.focusForeground\\\":\\\"#f0f0f0\\\",\\\"list.highlightForeground\\\":\\\"#ecebeb\\\",\\\"list.hoverBackground\\\":\\\"#2c313a\\\",\\\"list.hoverForeground\\\":\\\"#abb2bf\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#323842\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#d7dae0\\\",\\\"list.warningForeground\\\":\\\"#d19a66\\\",\\\"menu.foreground\\\":\\\"#abb2bf\\\",\\\"menu.separatorBackground\\\":\\\"#343a45\\\",\\\"minimapGutter.addedBackground\\\":\\\"#109868\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#9A353D\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#948B60\\\",\\\"multiDiffEditor.headerBackground\\\":\\\"#21252b\\\",\\\"panel.border\\\":\\\"#3e4452\\\",\\\"panelSectionHeader.background\\\":\\\"#21252b\\\",\\\"peekViewEditor.background\\\":\\\"#1b1d23\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#29244b\\\",\\\"peekViewResult.background\\\":\\\"#22262b\\\",\\\"scrollbar.shadow\\\":\\\"#23252c\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#747d9180\\\",\\\"scrollbarSlider.background\\\":\\\"#4e566660\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#5a637580\\\",\\\"settings.focusedRowBackground\\\":\\\"#282c34\\\",\\\"settings.headerForeground\\\":\\\"#fff\\\",\\\"sideBar.background\\\":\\\"#21252b\\\",\\\"sideBar.foreground\\\":\\\"#abb2bf\\\",\\\"sideBarSectionHeader.background\\\":\\\"#282c34\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#abb2bf\\\",\\\"statusBar.background\\\":\\\"#21252b\\\",\\\"statusBar.debuggingBackground\\\":\\\"#cc6633\\\",\\\"statusBar.debuggingBorder\\\":\\\"#ff000000\\\",\\\"statusBar.debuggingForeground\\\":\\\"#ffffff\\\",\\\"statusBar.foreground\\\":\\\"#9da5b4\\\",\\\"statusBar.noFolderBackground\\\":\\\"#21252b\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#4d78cc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#f8fafd\\\",\\\"tab.activeBackground\\\":\\\"#282c34\\\",\\\"tab.activeBorder\\\":\\\"#b4b4b4\\\",\\\"tab.activeForeground\\\":\\\"#dcdcdc\\\",\\\"tab.border\\\":\\\"#181a1f\\\",\\\"tab.hoverBackground\\\":\\\"#323842\\\",\\\"tab.inactiveBackground\\\":\\\"#21252b\\\",\\\"tab.unfocusedHoverBackground\\\":\\\"#323842\\\",\\\"terminal.ansiBlack\\\":\\\"#3f4451\\\",\\\"terminal.ansiBlue\\\":\\\"#4aa5f0\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#4f5666\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#4dc4ff\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#4cd1e0\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#a5e075\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#de73ff\\\",\\\"terminal.ansiBrightRed\\\":\\\"#ff616e\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#e6e6e6\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#f0a45d\\\",\\\"terminal.ansiCyan\\\":\\\"#42b3c2\\\",\\\"terminal.ansiGreen\\\":\\\"#8cc265\\\",\\\"terminal.ansiMagenta\\\":\\\"#c162de\\\",\\\"terminal.ansiRed\\\":\\\"#e05561\\\",\\\"terminal.ansiWhite\\\":\\\"#d7dae0\\\",\\\"terminal.ansiYellow\\\":\\\"#d18f52\\\",\\\"terminal.background\\\":\\\"#282c34\\\",\\\"terminal.border\\\":\\\"#3e4452\\\",\\\"terminal.foreground\\\":\\\"#abb2bf\\\",\\\"terminal.selectionBackground\\\":\\\"#abb2bf30\\\",\\\"textBlockQuote.background\\\":\\\"#2e3440\\\",\\\"textBlockQuote.border\\\":\\\"#4b5362\\\",\\\"textLink.foreground\\\":\\\"#61afef\\\",\\\"textPreformat.foreground\\\":\\\"#d19a66\\\",\\\"titleBar.activeBackground\\\":\\\"#282c34\\\",\\\"titleBar.activeForeground\\\":\\\"#9da5b4\\\",\\\"titleBar.inactiveBackground\\\":\\\"#282c34\\\",\\\"titleBar.inactiveForeground\\\":\\\"#6b717d\\\",\\\"tree.indentGuidesStroke\\\":\\\"#ffffff1d\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#2e3440\\\",\\\"welcomePage.buttonHoverBackground\\\":\\\"#404754\\\"},\\\"displayName\\\":\\\"One Dark Pro\\\",\\\"name\\\":\\\"one-dark-pro\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"annotation:dart\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"enumMember\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"macro\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"memberOperatorOverload\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"parameter.label:dart\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"property:dart\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"tomlArrayKey\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"variable.constant\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"variable.defaultLibrary\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"variable:dart\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},\\\"tokenColors\\\":[{\\\"scope\\\":\\\"meta.embedded\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"variable.other.generic-type.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"storage.type.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"support.variable.magic.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"variable.parameter.function.language.special.self.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable.parameter.function.language.special.cls.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"storage.modifier.lifetime.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"support.function.std.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"entity.name.lifetime.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable.language.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.constant.edge\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"constant.other.character-class.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"keyword.operator.word\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.quantifier.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"variable.parameter.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"comment markup.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"}},{\\\"scope\\\":\\\"markup.changed.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"markup.inserted.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"markup.deleted.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"meta.function.c,meta.function.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"punctuation.separator.key-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"keyword.operator.expression.import\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"support.constant.math\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"support.constant.property.math\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"variable.other.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"storage.type.annotation.java\\\",\\\"storage.type.object.array.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"source.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"meta.method.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"storage.modifier.import.java,storage.type.java,storage.type.generic.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"keyword.operator.instanceof.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"meta.definition.variable.name.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.bitwise\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.channel\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.constant.property-value.scss,support.constant.property-value.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"keyword.operator.css,keyword.operator.scss,keyword.operator.less\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"punctuation.separator.list.comma.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"support.constant.color.w3c-standard-color-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"support.type.vendored.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.module.node,support.type.object.module,support.module.node\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"entity.name.type.module\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.constant.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":[\\\"keyword.operator.expression.instanceof\\\",\\\"keyword.operator.new\\\",\\\"keyword.operator.ternary\\\",\\\"keyword.operator.optional\\\",\\\"keyword.operator.expression.keyof\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"support.type.object.console\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.variable.property.process\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"entity.name.function,support.function.console\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"keyword.operator.misc.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"keyword.operator.sigil.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.delete\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"support.type.object.dom\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.variable.dom,support.variable.property.dom\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"punctuation.separator.delimiter\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"punctuation.separator.c,punctuation.separator.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"support.type.posix-reserved.c,support.type.posix-reserved.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"variable.parameter.function.language.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"support.type.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"variable.parameter.function.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"meta.function-call.generic.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"constant.character.format.placeholder.other.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"keyword.operator.assignment.compound\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"entity.name.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"variable.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"variable.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"token.variable.parameter.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"import.storage.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"token.package.keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"token.package\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"entity.name.function\\\",\\\"meta.require\\\",\\\"support.function.any-method\\\",\\\"variable.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"entity.name.type.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"support.class, entity.name.type.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"entity.name.class.identifier.namespace.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"entity.name.class\\\",\\\"variable.other.class.js\\\",\\\"variable.other.class.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable.other.class.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"entity.name.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"keyword.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"control.elements, keyword.operator.less\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"keyword.other.special-method\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"token.storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"token.storage.type.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.constant.property-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"support.constant.font-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"meta.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"constant.other.symbol\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"punctuation.definition.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.id\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"markup.heading punctuation.definition.heading, entity.name.section\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"markup.bold,todo.bold\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"punctuation.definition.bold\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"markup.italic, punctuation.definition.italic,todo.emphasis\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"emphasis md\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"entity.name.section.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.definition.heading.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"markup.heading.setext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"punctuation.definition.bold.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.string.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"punctuation.definition.raw.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"punctuation.definition.list.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.string.begin.markdown\\\",\\\"punctuation.definition.string.end.markdown\\\",\\\"punctuation.definition.metadata.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"beginning.punctuation.definition.list.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.definition.metadata.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"markup.underline.link.markdown,markup.underline.link.image.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown,string.other.link.description.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"markup.raw.monospace.asciidoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"punctuation.definition.asciidoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"markup.list.asciidoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"markup.link.asciidoc,markup.other.url.asciidoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"string.unquoted.asciidoc,markup.other.url.asciidoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"punctuation.section.embedded, variable.interpolation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"punctuation.section.embedded.begin,punctuation.section.embedded.end\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"invalid.illegal\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"}},{\\\"scope\\\":\\\"invalid.illegal.bad-ampersand.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"invalid.illegal.unrecognized-tag.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"invalid.broken\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"}},{\\\"scope\\\":\\\"invalid.deprecated.entity.other.attribute-name.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"invalid.unimplemented\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"}},{\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > string.quoted.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.type.property-name.json punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"keyword.operator.error-control.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.type.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"punctuation.section.array.begin.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"punctuation.section.array.end.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"invalid.illegal.non-null-typehinted.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"}},{\\\"scope\\\":\\\"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"support.constant.core.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"entity.name.goto-label.php,support.other.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.regexp.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"keyword.operator.comparison.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"keyword.operator.heredoc.php,keyword.operator.nowdoc.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"meta.function.decorator.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"support.token.decorator.python,meta.function.decorator.identifier.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"function.parameter\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"function.brace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"function.parameter.ruby, function.parameter.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"constant.language.symbol.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"constant.language.symbol.hashkey.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":\\\"inline-color-decoration rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"less rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"selector.sass\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"block.scope.end,block.scope.begin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"storage.type.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"entity.name.variable.local.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"token.info-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":\\\"token.warn-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":\\\"token.error-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"}},{\\\"scope\\\":\\\"token.debug-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"meta.template.expression\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"keyword.operator.module\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"support.type.type.flowtype\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":[\\\"support.type.primitive\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"meta.property.object\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.js\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"keyword.other.template.begin\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"keyword.other.template.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"keyword.other.substitution.begin\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"keyword.other.substitution.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"keyword.operator.assignment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"keyword.operator.assignment.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"keyword.operator.arithmetic.go\\\",\\\"keyword.operator.address.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"keyword.operator.arithmetic.c\\\",\\\"keyword.operator.arithmetic.cpp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"entity.name.package.go\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"support.type.prelude.elm\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"support.constant.elm\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":[\\\"punctuation.quasi.element\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"constant.character.entity\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name.pseudo-element\\\",\\\"entity.other.attribute-name.pseudo-class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"entity.global.clojure\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"meta.symbol.clojure\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"constant.keyword.clojure\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"meta.arguments.coffee\\\",\\\"variable.parameter.function.coffee\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"source.ini\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"meta.scope.prerequisites.makefile\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"source.makefile\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"storage.modifier.import.groovy\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"meta.method.groovy\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":[\\\"meta.definition.variable.name.groovy\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"meta.definition.class.inherited.classes.groovy\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"support.variable.semantic.hlsl\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"support.type.texture.hlsl\\\",\\\"support.type.sampler.hlsl\\\",\\\"support.type.object.hlsl\\\",\\\"support.type.object.rw.hlsl\\\",\\\"support.type.fx.hlsl\\\",\\\"support.type.object.hlsl\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"text.variable\\\",\\\"text.bracketed\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"support.type.swift\\\",\\\"support.type.vb.asp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"entity.name.function.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"entity.name.class.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"constant.character.character-class.regexp.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"constant.regexp.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"keyword.control.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"invalid.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"beginning.punctuation.definition.quote.markdown.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"beginning.punctuation.definition.list.markdown.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#7f848e\\\"}},{\\\"scope\\\":[\\\"constant.character.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":[\\\"accent.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":[\\\"wikiword.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":[\\\"constant.other.color.rgb-value.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.tag.xi\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"}},{\\\"scope\\\":[\\\"entity.name.label.cs\\\",\\\"entity.name.scope-resolution.function.call\\\",\\\"entity.name.scope-resolution.function.definition\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"entity.name.label.cs\\\",\\\"markup.heading.setext.1.markdown\\\",\\\"markup.heading.setext.2.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\" meta.brace.square\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":\\\"comment, punctuation.definition.comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#7f848e\\\"}},{\\\"scope\\\":\\\"markup.quote.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"}},{\\\"scope\\\":\\\"punctuation.definition.block.sequence.item.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"constant.language.symbol.elixir\\\",\\\"constant.language.symbol.double-quoted.elixir\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"entity.name.variable.parameter.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"entity.name.variable.field.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"markup.underline\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#BE5046\\\"}},{\\\"scope\\\":[\\\"support.other.namespace.php\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"variable.parameter.function.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"variable.other.object\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"variable.other.constant.property\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"entity.other.inherited-class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":\\\"variable.other.readwrite.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"}},{\\\"scope\\\":[\\\"constant.numeric.decimal.asm.x86_64\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":[\\\"support.other.parenthesis.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"}},{\\\"scope\\\":[\\\"constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"}},{\\\"scope\\\":[\\\"string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"log.info\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":[\\\"log.warning\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"}},{\\\"scope\\\":[\\\"log.error\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":\\\"keyword.operator.expression.is\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"}},{\\\"scope\\\":\\\"entity.name.label\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"}},{\\\"scope\\\":[\\\"support.class.math.block.environment.latex\\\",\\\"constant.other.general.math.tex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"}},{\\\"scope\\\":[\\\"constant.character.math.tex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"comment.line.double-slash,comment.block.documentation\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.italic.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["oneDarkPro"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,i8hCAA+0oC,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.background":"#FAFAFA","activityBar.foreground":"#121417","activityBarBadge.background":"#526FFF","activityBarBadge.foreground":"#FFFFFF","badge.background":"#526FFF","badge.foreground":"#FFFFFF","button.background":"#5871EF","button.foreground":"#FFFFFF","button.hoverBackground":"#6B83ED","diffEditor.insertedTextBackground":"#00809B33","dropdown.background":"#FFFFFF","dropdown.border":"#DBDBDC","editor.background":"#FAFAFA","editor.findMatchHighlightBackground":"#526FFF33","editor.foreground":"#383A42","editor.lineHighlightBackground":"#383A420C","editor.selectionBackground":"#E5E5E6","editorCursor.foreground":"#526FFF","editorGroup.background":"#EAEAEB","editorGroup.border":"#DBDBDC","editorGroupHeader.tabsBackground":"#EAEAEB","editorHoverWidget.background":"#EAEAEB","editorHoverWidget.border":"#DBDBDC","editorIndentGuide.activeBackground":"#626772","editorIndentGuide.background":"#383A4233","editorInlayHint.background":"#F5F5F5","editorInlayHint.foreground":"#AFB2BB","editorLineNumber.activeForeground":"#383A42","editorLineNumber.foreground":"#9D9D9F","editorRuler.foreground":"#383A4233","editorSuggestWidget.background":"#EAEAEB","editorSuggestWidget.border":"#DBDBDC","editorSuggestWidget.selectedBackground":"#FFFFFF","editorWhitespace.foreground":"#383A4233","editorWidget.background":"#EAEAEB","editorWidget.border":"#E5E5E6","extensionButton.prominentBackground":"#3BBA54","extensionButton.prominentHoverBackground":"#4CC263","focusBorder":"#526FFF","input.background":"#FFFFFF","input.border":"#DBDBDC","list.activeSelectionBackground":"#DBDBDC","list.activeSelectionForeground":"#232324","list.focusBackground":"#DBDBDC","list.highlightForeground":"#121417","list.hoverBackground":"#DBDBDC66","list.inactiveSelectionBackground":"#DBDBDC","list.inactiveSelectionForeground":"#232324","notebook.cellEditorBackground":"#F5F5F5","notification.background":"#333333","peekView.border":"#526FFF","peekViewEditor.background":"#FFFFFF","peekViewResult.background":"#EAEAEB","peekViewResult.selectionBackground":"#DBDBDC","peekViewTitle.background":"#FFFFFF","pickerGroup.border":"#526FFF","scrollbarSlider.activeBackground":"#747D9180","scrollbarSlider.background":"#4E566680","scrollbarSlider.hoverBackground":"#5A637580","sideBar.background":"#EAEAEB","sideBarSectionHeader.background":"#FAFAFA","statusBar.background":"#EAEAEB","statusBar.debuggingForeground":"#FFFFFF","statusBar.foreground":"#424243","statusBar.noFolderBackground":"#EAEAEB","statusBarItem.hoverBackground":"#DBDBDC","tab.activeBackground":"#FAFAFA","tab.activeForeground":"#121417","tab.border":"#DBDBDC","tab.inactiveBackground":"#EAEAEB","titleBar.activeBackground":"#EAEAEB","titleBar.activeForeground":"#424243","titleBar.inactiveBackground":"#EAEAEB","titleBar.inactiveForeground":"#424243"},"displayName":"One Light","name":"one-light","tokenColors":[{"scope":["comment"],"settings":{"fontStyle":"italic","foreground":"#A0A1A7"}},{"scope":["comment markup.link"],"settings":{"foreground":"#A0A1A7"}},{"scope":["entity.name.type"],"settings":{"foreground":"#C18401"}},{"scope":["entity.other.inherited-class"],"settings":{"foreground":"#C18401"}},{"scope":["keyword"],"settings":{"foreground":"#A626A4"}},{"scope":["keyword.control"],"settings":{"foreground":"#A626A4"}},{"scope":["keyword.operator"],"settings":{"foreground":"#383A42"}},{"scope":["keyword.other.special-method"],"settings":{"foreground":"#4078F2"}},{"scope":["keyword.other.unit"],"settings":{"foreground":"#986801"}},{"scope":["storage"],"settings":{"foreground":"#A626A4"}},{"scope":["storage.type.annotation","storage.type.primitive"],"settings":{"foreground":"#A626A4"}},{"scope":["storage.modifier.package","storage.modifier.import"],"settings":{"foreground":"#383A42"}},{"scope":["constant"],"settings":{"foreground":"#986801"}},{"scope":["constant.variable"],"settings":{"foreground":"#986801"}},{"scope":["constant.character.escape"],"settings":{"foreground":"#0184BC"}},{"scope":["constant.numeric"],"settings":{"foreground":"#986801"}},{"scope":["constant.other.color"],"settings":{"foreground":"#0184BC"}},{"scope":["constant.other.symbol"],"settings":{"foreground":"#0184BC"}},{"scope":["variable"],"settings":{"foreground":"#E45649"}},{"scope":["variable.interpolation"],"settings":{"foreground":"#CA1243"}},{"scope":["variable.parameter"],"settings":{"foreground":"#383A42"}},{"scope":["string"],"settings":{"foreground":"#50A14F"}},{"scope":["string > source","string embedded"],"settings":{"foreground":"#383A42"}},{"scope":["string.regexp"],"settings":{"foreground":"#0184BC"}},{"scope":["string.regexp source.ruby.embedded"],"settings":{"foreground":"#C18401"}},{"scope":["string.other.link"],"settings":{"foreground":"#E45649"}},{"scope":["punctuation.definition.comment"],"settings":{"foreground":"#A0A1A7"}},{"scope":["punctuation.definition.method-parameters","punctuation.definition.function-parameters","punctuation.definition.parameters","punctuation.definition.separator","punctuation.definition.seperator","punctuation.definition.array"],"settings":{"foreground":"#383A42"}},{"scope":["punctuation.definition.heading","punctuation.definition.identity"],"settings":{"foreground":"#4078F2"}},{"scope":["punctuation.definition.bold"],"settings":{"fontStyle":"bold","foreground":"#C18401"}},{"scope":["punctuation.definition.italic"],"settings":{"fontStyle":"italic","foreground":"#A626A4"}},{"scope":["punctuation.section.embedded"],"settings":{"foreground":"#CA1243"}},{"scope":["punctuation.section.method","punctuation.section.class","punctuation.section.inner-class"],"settings":{"foreground":"#383A42"}},{"scope":["support.class"],"settings":{"foreground":"#C18401"}},{"scope":["support.type"],"settings":{"foreground":"#0184BC"}},{"scope":["support.function"],"settings":{"foreground":"#0184BC"}},{"scope":["support.function.any-method"],"settings":{"foreground":"#4078F2"}},{"scope":["entity.name.function"],"settings":{"foreground":"#4078F2"}},{"scope":["entity.name.class","entity.name.type.class"],"settings":{"foreground":"#C18401"}},{"scope":["entity.name.section"],"settings":{"foreground":"#4078F2"}},{"scope":["entity.name.tag"],"settings":{"foreground":"#E45649"}},{"scope":["entity.other.attribute-name"],"settings":{"foreground":"#986801"}},{"scope":["entity.other.attribute-name.id"],"settings":{"foreground":"#4078F2"}},{"scope":["meta.class"],"settings":{"foreground":"#C18401"}},{"scope":["meta.class.body"],"settings":{"foreground":"#383A42"}},{"scope":["meta.method-call","meta.method"],"settings":{"foreground":"#383A42"}},{"scope":["meta.definition.variable"],"settings":{"foreground":"#E45649"}},{"scope":["meta.link"],"settings":{"foreground":"#986801"}},{"scope":["meta.require"],"settings":{"foreground":"#4078F2"}},{"scope":["meta.selector"],"settings":{"foreground":"#A626A4"}},{"scope":["meta.separator"],"settings":{"foreground":"#383A42"}},{"scope":["meta.tag"],"settings":{"foreground":"#383A42"}},{"scope":["underline"],"settings":{"text-decoration":"underline"}},{"scope":["none"],"settings":{"foreground":"#383A42"}},{"scope":["invalid.deprecated"],"settings":{"background":"#F2A60D","foreground":"#000000"}},{"scope":["invalid.illegal"],"settings":{"background":"#FF1414","foreground":"#50A14F"}},{"scope":["markup.bold"],"settings":{"fontStyle":"bold","foreground":"#986801"}},{"scope":["markup.changed"],"settings":{"foreground":"#A626A4"}},{"scope":["markup.deleted"],"settings":{"foreground":"#E45649"}},{"scope":["markup.italic"],"settings":{"fontStyle":"italic","foreground":"#A626A4"}},{"scope":["markup.heading"],"settings":{"foreground":"#E45649"}},{"scope":["markup.heading punctuation.definition.heading"],"settings":{"foreground":"#4078F2"}},{"scope":["markup.link"],"settings":{"foreground":"#0184BC"}},{"scope":["markup.inserted"],"settings":{"foreground":"#50A14F"}},{"scope":["markup.quote"],"settings":{"foreground":"#986801"}},{"scope":["markup.raw"],"settings":{"foreground":"#50A14F"}},{"scope":["source.c keyword.operator"],"settings":{"foreground":"#A626A4"}},{"scope":["source.cpp keyword.operator"],"settings":{"foreground":"#A626A4"}},{"scope":["source.cs keyword.operator"],"settings":{"foreground":"#A626A4"}},{"scope":["source.css property-name","source.css property-value"],"settings":{"foreground":"#696C77"}},{"scope":["source.css property-name.support","source.css property-value.support"],"settings":{"foreground":"#383A42"}},{"scope":["source.elixir source.embedded.source"],"settings":{"foreground":"#383A42"}},{"scope":["source.elixir constant.language","source.elixir constant.numeric","source.elixir constant.definition"],"settings":{"foreground":"#4078F2"}},{"scope":["source.elixir variable.definition","source.elixir variable.anonymous"],"settings":{"foreground":"#A626A4"}},{"scope":["source.elixir parameter.variable.function"],"settings":{"fontStyle":"italic","foreground":"#986801"}},{"scope":["source.elixir quoted"],"settings":{"foreground":"#50A14F"}},{"scope":["source.elixir keyword.special-method","source.elixir embedded.section","source.elixir embedded.source.empty"],"settings":{"foreground":"#E45649"}},{"scope":["source.elixir readwrite.module punctuation"],"settings":{"foreground":"#E45649"}},{"scope":["source.elixir regexp.section","source.elixir regexp.string"],"settings":{"foreground":"#CA1243"}},{"scope":["source.elixir separator","source.elixir keyword.operator"],"settings":{"foreground":"#986801"}},{"scope":["source.elixir variable.constant"],"settings":{"foreground":"#C18401"}},{"scope":["source.elixir array","source.elixir scope","source.elixir section"],"settings":{"foreground":"#696C77"}},{"scope":["source.gfm markup"],"settings":{"-webkit-font-smoothing":"auto"}},{"scope":["source.gfm link entity"],"settings":{"foreground":"#4078F2"}},{"scope":["source.go storage.type.string"],"settings":{"foreground":"#A626A4"}},{"scope":["source.ini keyword.other.definition.ini"],"settings":{"foreground":"#E45649"}},{"scope":["source.java storage.modifier.import"],"settings":{"foreground":"#C18401"}},{"scope":["source.java storage.type"],"settings":{"foreground":"#C18401"}},{"scope":["source.java keyword.operator.instanceof"],"settings":{"foreground":"#A626A4"}},{"scope":["source.java-properties meta.key-pair"],"settings":{"foreground":"#E45649"}},{"scope":["source.java-properties meta.key-pair > punctuation"],"settings":{"foreground":"#383A42"}},{"scope":["source.js keyword.operator"],"settings":{"foreground":"#0184BC"}},{"scope":["source.js keyword.operator.delete","source.js keyword.operator.in","source.js keyword.operator.of","source.js keyword.operator.instanceof","source.js keyword.operator.new","source.js keyword.operator.typeof","source.js keyword.operator.void"],"settings":{"foreground":"#A626A4"}},{"scope":["source.ts keyword.operator"],"settings":{"foreground":"#0184BC"}},{"scope":["source.flow keyword.operator"],"settings":{"foreground":"#0184BC"}},{"scope":["source.json meta.structure.dictionary.json > string.quoted.json"],"settings":{"foreground":"#E45649"}},{"scope":["source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string"],"settings":{"foreground":"#E45649"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#50A14F"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#0184BC"}},{"scope":["ng.interpolation"],"settings":{"foreground":"#E45649"}},{"scope":["ng.interpolation.begin","ng.interpolation.end"],"settings":{"foreground":"#4078F2"}},{"scope":["ng.interpolation function"],"settings":{"foreground":"#E45649"}},{"scope":["ng.interpolation function.begin","ng.interpolation function.end"],"settings":{"foreground":"#4078F2"}},{"scope":["ng.interpolation bool"],"settings":{"foreground":"#986801"}},{"scope":["ng.interpolation bracket"],"settings":{"foreground":"#383A42"}},{"scope":["ng.pipe","ng.operator"],"settings":{"foreground":"#383A42"}},{"scope":["ng.tag"],"settings":{"foreground":"#0184BC"}},{"scope":["ng.attribute-with-value attribute-name"],"settings":{"foreground":"#C18401"}},{"scope":["ng.attribute-with-value string"],"settings":{"foreground":"#A626A4"}},{"scope":["ng.attribute-with-value string.begin","ng.attribute-with-value string.end"],"settings":{"foreground":"#383A42"}},{"scope":["source.ruby constant.other.symbol > punctuation"],"settings":{"foreground":"inherit"}},{"scope":["source.php class.bracket"],"settings":{"foreground":"#383A42"}},{"scope":["source.python keyword.operator.logical.python"],"settings":{"foreground":"#A626A4"}},{"scope":["source.python variable.parameter"],"settings":{"foreground":"#986801"}},{"scope":"customrule","settings":{"foreground":"#383A42"}},{"scope":"support.type.property-name","settings":{"foreground":"#383A42"}},{"scope":"string.quoted.double punctuation","settings":{"foreground":"#50A14F"}},{"scope":"support.constant","settings":{"foreground":"#986801"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#E45649"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#E45649"}},{"scope":["punctuation.separator.key-value.ts","punctuation.separator.key-value.js","punctuation.separator.key-value.tsx"],"settings":{"foreground":"#0184BC"}},{"scope":["source.js.embedded.html keyword.operator","source.ts.embedded.html keyword.operator"],"settings":{"foreground":"#0184BC"}},{"scope":["variable.other.readwrite.js","variable.other.readwrite.ts","variable.other.readwrite.tsx"],"settings":{"foreground":"#383A42"}},{"scope":["support.variable.dom.js","support.variable.dom.ts"],"settings":{"foreground":"#E45649"}},{"scope":["support.variable.property.dom.js","support.variable.property.dom.ts"],"settings":{"foreground":"#E45649"}},{"scope":["meta.template.expression.js punctuation.definition","meta.template.expression.ts punctuation.definition"],"settings":{"foreground":"#CA1243"}},{"scope":["source.ts punctuation.definition.typeparameters","source.js punctuation.definition.typeparameters","source.tsx punctuation.definition.typeparameters"],"settings":{"foreground":"#383A42"}},{"scope":["source.ts punctuation.definition.block","source.js punctuation.definition.block","source.tsx punctuation.definition.block"],"settings":{"foreground":"#383A42"}},{"scope":["source.ts punctuation.separator.comma","source.js punctuation.separator.comma","source.tsx punctuation.separator.comma"],"settings":{"foreground":"#383A42"}},{"scope":["support.variable.property.js","support.variable.property.ts","support.variable.property.tsx"],"settings":{"foreground":"#E45649"}},{"scope":["keyword.control.default.js","keyword.control.default.ts","keyword.control.default.tsx"],"settings":{"foreground":"#E45649"}},{"scope":["keyword.operator.expression.instanceof.js","keyword.operator.expression.instanceof.ts","keyword.operator.expression.instanceof.tsx"],"settings":{"foreground":"#A626A4"}},{"scope":["keyword.operator.expression.of.js","keyword.operator.expression.of.ts","keyword.operator.expression.of.tsx"],"settings":{"foreground":"#A626A4"}},{"scope":["meta.brace.round.js","meta.array-binding-pattern-variable.js","meta.brace.square.js","meta.brace.round.ts","meta.array-binding-pattern-variable.ts","meta.brace.square.ts","meta.brace.round.tsx","meta.array-binding-pattern-variable.tsx","meta.brace.square.tsx"],"settings":{"foreground":"#383A42"}},{"scope":["source.js punctuation.accessor","source.ts punctuation.accessor","source.tsx punctuation.accessor"],"settings":{"foreground":"#383A42"}},{"scope":["punctuation.terminator.statement.js","punctuation.terminator.statement.ts","punctuation.terminator.statement.tsx"],"settings":{"foreground":"#383A42"}},{"scope":["meta.array-binding-pattern-variable.js variable.other.readwrite.js","meta.array-binding-pattern-variable.ts variable.other.readwrite.ts","meta.array-binding-pattern-variable.tsx variable.other.readwrite.tsx"],"settings":{"foreground":"#986801"}},{"scope":["source.js support.variable","source.ts support.variable","source.tsx support.variable"],"settings":{"foreground":"#E45649"}},{"scope":["variable.other.constant.property.js","variable.other.constant.property.ts","variable.other.constant.property.tsx"],"settings":{"foreground":"#986801"}},{"scope":["keyword.operator.new.ts","keyword.operator.new.j","keyword.operator.new.tsx"],"settings":{"foreground":"#A626A4"}},{"scope":["source.ts keyword.operator","source.tsx keyword.operator"],"settings":{"foreground":"#0184BC"}},{"scope":["punctuation.separator.parameter.js","punctuation.separator.parameter.ts","punctuation.separator.parameter.tsx "],"settings":{"foreground":"#383A42"}},{"scope":["constant.language.import-export-all.js","constant.language.import-export-all.ts"],"settings":{"foreground":"#E45649"}},{"scope":["constant.language.import-export-all.jsx","constant.language.import-export-all.tsx"],"settings":{"foreground":"#0184BC"}},{"scope":["keyword.control.as.js","keyword.control.as.ts","keyword.control.as.jsx","keyword.control.as.tsx"],"settings":{"foreground":"#383A42"}},{"scope":["variable.other.readwrite.alias.js","variable.other.readwrite.alias.ts","variable.other.readwrite.alias.jsx","variable.other.readwrite.alias.tsx"],"settings":{"foreground":"#E45649"}},{"scope":["variable.other.constant.js","variable.other.constant.ts","variable.other.constant.jsx","variable.other.constant.tsx"],"settings":{"foreground":"#986801"}},{"scope":["meta.export.default.js variable.other.readwrite.js","meta.export.default.ts variable.other.readwrite.ts"],"settings":{"foreground":"#E45649"}},{"scope":["source.js meta.template.expression.js punctuation.accessor","source.ts meta.template.expression.ts punctuation.accessor","source.tsx meta.template.expression.tsx punctuation.accessor"],"settings":{"foreground":"#50A14F"}},{"scope":["source.js meta.import-equals.external.js keyword.operator","source.jsx meta.import-equals.external.jsx keyword.operator","source.ts meta.import-equals.external.ts keyword.operator","source.tsx meta.import-equals.external.tsx keyword.operator"],"settings":{"foreground":"#383A42"}},{"scope":"entity.name.type.module.js,entity.name.type.module.ts,entity.name.type.module.jsx,entity.name.type.module.tsx","settings":{"foreground":"#50A14F"}},{"scope":"meta.class.js,meta.class.ts,meta.class.jsx,meta.class.tsx","settings":{"foreground":"#383A42"}},{"scope":["meta.definition.property.js variable","meta.definition.property.ts variable","meta.definition.property.jsx variable","meta.definition.property.tsx variable"],"settings":{"foreground":"#383A42"}},{"scope":["meta.type.parameters.js support.type","meta.type.parameters.jsx support.type","meta.type.parameters.ts support.type","meta.type.parameters.tsx support.type"],"settings":{"foreground":"#383A42"}},{"scope":["source.js meta.tag.js keyword.operator","source.jsx meta.tag.jsx keyword.operator","source.ts meta.tag.ts keyword.operator","source.tsx meta.tag.tsx keyword.operator"],"settings":{"foreground":"#383A42"}},{"scope":["meta.tag.js punctuation.section.embedded","meta.tag.jsx punctuation.section.embedded","meta.tag.ts punctuation.section.embedded","meta.tag.tsx punctuation.section.embedded"],"settings":{"foreground":"#383A42"}},{"scope":["meta.array.literal.js variable","meta.array.literal.jsx variable","meta.array.literal.ts variable","meta.array.literal.tsx variable"],"settings":{"foreground":"#C18401"}},{"scope":["support.type.object.module.js","support.type.object.module.jsx","support.type.object.module.ts","support.type.object.module.tsx"],"settings":{"foreground":"#E45649"}},{"scope":["constant.language.json"],"settings":{"foreground":"#0184BC"}},{"scope":["variable.other.constant.object.js","variable.other.constant.object.jsx","variable.other.constant.object.ts","variable.other.constant.object.tsx"],"settings":{"foreground":"#986801"}},{"scope":["storage.type.property.js","storage.type.property.jsx","storage.type.property.ts","storage.type.property.tsx"],"settings":{"foreground":"#0184BC"}},{"scope":["meta.template.expression.js string.quoted punctuation.definition","meta.template.expression.jsx string.quoted punctuation.definition","meta.template.expression.ts string.quoted punctuation.definition","meta.template.expression.tsx string.quoted punctuation.definition"],"settings":{"foreground":"#50A14F"}},{"scope":["meta.template.expression.js string.template punctuation.definition.string.template","meta.template.expression.jsx string.template punctuation.definition.string.template","meta.template.expression.ts string.template punctuation.definition.string.template","meta.template.expression.tsx string.template punctuation.definition.string.template"],"settings":{"foreground":"#50A14F"}},{"scope":["keyword.operator.expression.in.js","keyword.operator.expression.in.jsx","keyword.operator.expression.in.ts","keyword.operator.expression.in.tsx"],"settings":{"foreground":"#A626A4"}},{"scope":["variable.other.object.js","variable.other.object.ts"],"settings":{"foreground":"#383A42"}},{"scope":["meta.object-literal.key.js","meta.object-literal.key.ts"],"settings":{"foreground":"#E45649"}},{"scope":"source.python constant.other","settings":{"foreground":"#383A42"}},{"scope":"source.python constant","settings":{"foreground":"#986801"}},{"scope":"constant.character.format.placeholder.other.python storage","settings":{"foreground":"#986801"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#E45649"}},{"scope":"meta.function.parameters.python","settings":{"foreground":"#986801"}},{"scope":"punctuation.separator.annotation.python","settings":{"foreground":"#383A42"}},{"scope":"punctuation.separator.parameters.python","settings":{"foreground":"#383A42"}},{"scope":"entity.name.variable.field.cs","settings":{"foreground":"#E45649"}},{"scope":"source.cs keyword.operator","settings":{"foreground":"#383A42"}},{"scope":"variable.other.readwrite.cs","settings":{"foreground":"#383A42"}},{"scope":"variable.other.object.cs","settings":{"foreground":"#383A42"}},{"scope":"variable.other.object.property.cs","settings":{"foreground":"#383A42"}},{"scope":"entity.name.variable.property.cs","settings":{"foreground":"#4078F2"}},{"scope":"storage.type.cs","settings":{"foreground":"#C18401"}},{"scope":"keyword.other.unsafe.rust","settings":{"foreground":"#A626A4"}},{"scope":"entity.name.type.rust","settings":{"foreground":"#0184BC"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#383A42"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#986801"}},{"scope":"storage.type.core.rust","settings":{"foreground":"#0184BC"}},{"scope":"meta.attribute.rust","settings":{"foreground":"#986801"}},{"scope":"storage.class.std.rust","settings":{"foreground":"#0184BC"}},{"scope":"markup.raw.block.markdown","settings":{"foreground":"#383A42"}},{"scope":"punctuation.definition.variable.shell","settings":{"foreground":"#E45649"}},{"scope":"support.constant.property-value.css","settings":{"foreground":"#383A42"}},{"scope":"punctuation.definition.constant.css","settings":{"foreground":"#986801"}},{"scope":"punctuation.separator.key-value.scss","settings":{"foreground":"#E45649"}},{"scope":"punctuation.definition.constant.scss","settings":{"foreground":"#986801"}},{"scope":"meta.property-list.scss punctuation.separator.key-value.scss","settings":{"foreground":"#383A42"}},{"scope":"storage.type.primitive.array.java","settings":{"foreground":"#C18401"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#E45649"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#E45649"}},{"scope":"markup.heading.setext","settings":{"foreground":"#383A42"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#986801"}},{"scope":"markup.inline.raw.markdown","settings":{"foreground":"#50A14F"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#E45649"}},{"scope":"markup.quote.markdown","settings":{"fontStyle":"italic","foreground":"#A0A1A7"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown","punctuation.definition.metadata.markdown"],"settings":{"foreground":"#383A42"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#A626A4"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#A626A4"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#4078F2"}},{"scope":"punctuation.separator.variable.ruby","settings":{"foreground":"#E45649"}},{"scope":"variable.other.constant.ruby","settings":{"foreground":"#986801"}},{"scope":"keyword.operator.other.ruby","settings":{"foreground":"#50A14F"}},{"scope":"punctuation.definition.variable.php","settings":{"foreground":"#E45649"}},{"scope":"meta.class.php","settings":{"foreground":"#383A42"}}],"type":"light"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=one-light-C3Wv6jpd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-light-C3Wv6jpd.js","sources":["../../../../node_modules/@shikijs/themes/dist/one-light.mjs"],"sourcesContent":["/* Theme: one-light */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#FAFAFA\\\",\\\"activityBar.foreground\\\":\\\"#121417\\\",\\\"activityBarBadge.background\\\":\\\"#526FFF\\\",\\\"activityBarBadge.foreground\\\":\\\"#FFFFFF\\\",\\\"badge.background\\\":\\\"#526FFF\\\",\\\"badge.foreground\\\":\\\"#FFFFFF\\\",\\\"button.background\\\":\\\"#5871EF\\\",\\\"button.foreground\\\":\\\"#FFFFFF\\\",\\\"button.hoverBackground\\\":\\\"#6B83ED\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#00809B33\\\",\\\"dropdown.background\\\":\\\"#FFFFFF\\\",\\\"dropdown.border\\\":\\\"#DBDBDC\\\",\\\"editor.background\\\":\\\"#FAFAFA\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#526FFF33\\\",\\\"editor.foreground\\\":\\\"#383A42\\\",\\\"editor.lineHighlightBackground\\\":\\\"#383A420C\\\",\\\"editor.selectionBackground\\\":\\\"#E5E5E6\\\",\\\"editorCursor.foreground\\\":\\\"#526FFF\\\",\\\"editorGroup.background\\\":\\\"#EAEAEB\\\",\\\"editorGroup.border\\\":\\\"#DBDBDC\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#EAEAEB\\\",\\\"editorHoverWidget.background\\\":\\\"#EAEAEB\\\",\\\"editorHoverWidget.border\\\":\\\"#DBDBDC\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#626772\\\",\\\"editorIndentGuide.background\\\":\\\"#383A4233\\\",\\\"editorInlayHint.background\\\":\\\"#F5F5F5\\\",\\\"editorInlayHint.foreground\\\":\\\"#AFB2BB\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#383A42\\\",\\\"editorLineNumber.foreground\\\":\\\"#9D9D9F\\\",\\\"editorRuler.foreground\\\":\\\"#383A4233\\\",\\\"editorSuggestWidget.background\\\":\\\"#EAEAEB\\\",\\\"editorSuggestWidget.border\\\":\\\"#DBDBDC\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#FFFFFF\\\",\\\"editorWhitespace.foreground\\\":\\\"#383A4233\\\",\\\"editorWidget.background\\\":\\\"#EAEAEB\\\",\\\"editorWidget.border\\\":\\\"#E5E5E6\\\",\\\"extensionButton.prominentBackground\\\":\\\"#3BBA54\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#4CC263\\\",\\\"focusBorder\\\":\\\"#526FFF\\\",\\\"input.background\\\":\\\"#FFFFFF\\\",\\\"input.border\\\":\\\"#DBDBDC\\\",\\\"list.activeSelectionBackground\\\":\\\"#DBDBDC\\\",\\\"list.activeSelectionForeground\\\":\\\"#232324\\\",\\\"list.focusBackground\\\":\\\"#DBDBDC\\\",\\\"list.highlightForeground\\\":\\\"#121417\\\",\\\"list.hoverBackground\\\":\\\"#DBDBDC66\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#DBDBDC\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#232324\\\",\\\"notebook.cellEditorBackground\\\":\\\"#F5F5F5\\\",\\\"notification.background\\\":\\\"#333333\\\",\\\"peekView.border\\\":\\\"#526FFF\\\",\\\"peekViewEditor.background\\\":\\\"#FFFFFF\\\",\\\"peekViewResult.background\\\":\\\"#EAEAEB\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#DBDBDC\\\",\\\"peekViewTitle.background\\\":\\\"#FFFFFF\\\",\\\"pickerGroup.border\\\":\\\"#526FFF\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#747D9180\\\",\\\"scrollbarSlider.background\\\":\\\"#4E566680\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#5A637580\\\",\\\"sideBar.background\\\":\\\"#EAEAEB\\\",\\\"sideBarSectionHeader.background\\\":\\\"#FAFAFA\\\",\\\"statusBar.background\\\":\\\"#EAEAEB\\\",\\\"statusBar.debuggingForeground\\\":\\\"#FFFFFF\\\",\\\"statusBar.foreground\\\":\\\"#424243\\\",\\\"statusBar.noFolderBackground\\\":\\\"#EAEAEB\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#DBDBDC\\\",\\\"tab.activeBackground\\\":\\\"#FAFAFA\\\",\\\"tab.activeForeground\\\":\\\"#121417\\\",\\\"tab.border\\\":\\\"#DBDBDC\\\",\\\"tab.inactiveBackground\\\":\\\"#EAEAEB\\\",\\\"titleBar.activeBackground\\\":\\\"#EAEAEB\\\",\\\"titleBar.activeForeground\\\":\\\"#424243\\\",\\\"titleBar.inactiveBackground\\\":\\\"#EAEAEB\\\",\\\"titleBar.inactiveForeground\\\":\\\"#424243\\\"},\\\"displayName\\\":\\\"One Light\\\",\\\"name\\\":\\\"one-light\\\",\\\"tokenColors\\\":[{\\\"scope\\\":[\\\"comment\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#A0A1A7\\\"}},{\\\"scope\\\":[\\\"comment markup.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A0A1A7\\\"}},{\\\"scope\\\":[\\\"entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"entity.other.inherited-class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"keyword\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"keyword.control\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"keyword.other.special-method\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"keyword.other.unit\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"storage\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"storage.type.annotation\\\",\\\"storage.type.primitive\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"storage.modifier.package\\\",\\\"storage.modifier.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"constant\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"constant.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"constant.character.escape\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"constant.numeric\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"constant.other.color\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"constant.other.symbol\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"variable.interpolation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CA1243\\\"}},{\\\"scope\\\":[\\\"variable.parameter\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"string > source\\\",\\\"string embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"string.regexp source.ruby.embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"string.other.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A0A1A7\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.method-parameters\\\",\\\"punctuation.definition.function-parameters\\\",\\\"punctuation.definition.parameters\\\",\\\"punctuation.definition.separator\\\",\\\"punctuation.definition.seperator\\\",\\\"punctuation.definition.array\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.heading\\\",\\\"punctuation.definition.identity\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.bold\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.italic\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CA1243\\\"}},{\\\"scope\\\":[\\\"punctuation.section.method\\\",\\\"punctuation.section.class\\\",\\\"punctuation.section.inner-class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"support.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"support.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"support.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"support.function.any-method\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"entity.name.class\\\",\\\"entity.name.type.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"entity.name.section\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"entity.other.attribute-name.id\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"meta.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"meta.class.body\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.method-call\\\",\\\"meta.method\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.definition.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"meta.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"meta.require\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"meta.selector\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"meta.separator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"underline\\\"],\\\"settings\\\":{\\\"text-decoration\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"none\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"invalid.deprecated\\\"],\\\"settings\\\":{\\\"background\\\":\\\"#F2A60D\\\",\\\"foreground\\\":\\\"#000000\\\"}},{\\\"scope\\\":[\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"background\\\":\\\"#FF1414\\\",\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"markup.bold\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"markup.changed\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"markup.deleted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"markup.italic\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"markup.heading\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"markup.heading punctuation.definition.heading\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"markup.link\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"markup.inserted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"markup.quote\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"markup.raw\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"source.c keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.cpp keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.cs keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.css property-name\\\",\\\"source.css property-value\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#696C77\\\"}},{\\\"scope\\\":[\\\"source.css property-name.support\\\",\\\"source.css property-value.support\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.elixir source.embedded.source\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.elixir constant.language\\\",\\\"source.elixir constant.numeric\\\",\\\"source.elixir constant.definition\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"source.elixir variable.definition\\\",\\\"source.elixir variable.anonymous\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.elixir parameter.variable.function\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"source.elixir quoted\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"source.elixir keyword.special-method\\\",\\\"source.elixir embedded.section\\\",\\\"source.elixir embedded.source.empty\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.elixir readwrite.module punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.elixir regexp.section\\\",\\\"source.elixir regexp.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CA1243\\\"}},{\\\"scope\\\":[\\\"source.elixir separator\\\",\\\"source.elixir keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"source.elixir variable.constant\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"source.elixir array\\\",\\\"source.elixir scope\\\",\\\"source.elixir section\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#696C77\\\"}},{\\\"scope\\\":[\\\"source.gfm markup\\\"],\\\"settings\\\":{\\\"-webkit-font-smoothing\\\":\\\"auto\\\"}},{\\\"scope\\\":[\\\"source.gfm link entity\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"source.go storage.type.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.ini keyword.other.definition.ini\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.java storage.modifier.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"source.java storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"source.java keyword.operator.instanceof\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.java-properties meta.key-pair\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.java-properties meta.key-pair > punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.js keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"source.js keyword.operator.delete\\\",\\\"source.js keyword.operator.in\\\",\\\"source.js keyword.operator.of\\\",\\\"source.js keyword.operator.instanceof\\\",\\\"source.js keyword.operator.new\\\",\\\"source.js keyword.operator.typeof\\\",\\\"source.js keyword.operator.void\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.ts keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"source.flow keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json > string.quoted.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json > value.json > string.quoted.json\\\",\\\"source.json meta.structure.array.json > value.json > string.quoted.json\\\",\\\"source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation\\\",\\\"source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json > constant.language.json\\\",\\\"source.json meta.structure.array.json > constant.language.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"ng.interpolation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"ng.interpolation.begin\\\",\\\"ng.interpolation.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"ng.interpolation function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"ng.interpolation function.begin\\\",\\\"ng.interpolation function.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":[\\\"ng.interpolation bool\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"ng.interpolation bracket\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"ng.pipe\\\",\\\"ng.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"ng.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"ng.attribute-with-value attribute-name\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"ng.attribute-with-value string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"ng.attribute-with-value string.begin\\\",\\\"ng.attribute-with-value string.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.ruby constant.other.symbol > punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"inherit\\\"}},{\\\"scope\\\":[\\\"source.php class.bracket\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.python keyword.operator.logical.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.python variable.parameter\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"customrule\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"string.quoted.double punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":\\\"support.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"support.type.property-name.json punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"punctuation.separator.key-value.ts\\\",\\\"punctuation.separator.key-value.js\\\",\\\"punctuation.separator.key-value.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"source.js.embedded.html keyword.operator\\\",\\\"source.ts.embedded.html keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"variable.other.readwrite.js\\\",\\\"variable.other.readwrite.ts\\\",\\\"variable.other.readwrite.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"support.variable.dom.js\\\",\\\"support.variable.dom.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"support.variable.property.dom.js\\\",\\\"support.variable.property.dom.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"meta.template.expression.js punctuation.definition\\\",\\\"meta.template.expression.ts punctuation.definition\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#CA1243\\\"}},{\\\"scope\\\":[\\\"source.ts punctuation.definition.typeparameters\\\",\\\"source.js punctuation.definition.typeparameters\\\",\\\"source.tsx punctuation.definition.typeparameters\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.ts punctuation.definition.block\\\",\\\"source.js punctuation.definition.block\\\",\\\"source.tsx punctuation.definition.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.ts punctuation.separator.comma\\\",\\\"source.js punctuation.separator.comma\\\",\\\"source.tsx punctuation.separator.comma\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"support.variable.property.js\\\",\\\"support.variable.property.ts\\\",\\\"support.variable.property.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"keyword.control.default.js\\\",\\\"keyword.control.default.ts\\\",\\\"keyword.control.default.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"keyword.operator.expression.instanceof.js\\\",\\\"keyword.operator.expression.instanceof.ts\\\",\\\"keyword.operator.expression.instanceof.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"keyword.operator.expression.of.js\\\",\\\"keyword.operator.expression.of.ts\\\",\\\"keyword.operator.expression.of.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"meta.brace.round.js\\\",\\\"meta.array-binding-pattern-variable.js\\\",\\\"meta.brace.square.js\\\",\\\"meta.brace.round.ts\\\",\\\"meta.array-binding-pattern-variable.ts\\\",\\\"meta.brace.square.ts\\\",\\\"meta.brace.round.tsx\\\",\\\"meta.array-binding-pattern-variable.tsx\\\",\\\"meta.brace.square.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.js punctuation.accessor\\\",\\\"source.ts punctuation.accessor\\\",\\\"source.tsx punctuation.accessor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"punctuation.terminator.statement.js\\\",\\\"punctuation.terminator.statement.ts\\\",\\\"punctuation.terminator.statement.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.array-binding-pattern-variable.js variable.other.readwrite.js\\\",\\\"meta.array-binding-pattern-variable.ts variable.other.readwrite.ts\\\",\\\"meta.array-binding-pattern-variable.tsx variable.other.readwrite.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"source.js support.variable\\\",\\\"source.ts support.variable\\\",\\\"source.tsx support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"variable.other.constant.property.js\\\",\\\"variable.other.constant.property.ts\\\",\\\"variable.other.constant.property.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"keyword.operator.new.ts\\\",\\\"keyword.operator.new.j\\\",\\\"keyword.operator.new.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"source.ts keyword.operator\\\",\\\"source.tsx keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"punctuation.separator.parameter.js\\\",\\\"punctuation.separator.parameter.ts\\\",\\\"punctuation.separator.parameter.tsx \\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"constant.language.import-export-all.js\\\",\\\"constant.language.import-export-all.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"constant.language.import-export-all.jsx\\\",\\\"constant.language.import-export-all.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"keyword.control.as.js\\\",\\\"keyword.control.as.ts\\\",\\\"keyword.control.as.jsx\\\",\\\"keyword.control.as.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"variable.other.readwrite.alias.js\\\",\\\"variable.other.readwrite.alias.ts\\\",\\\"variable.other.readwrite.alias.jsx\\\",\\\"variable.other.readwrite.alias.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"variable.other.constant.js\\\",\\\"variable.other.constant.ts\\\",\\\"variable.other.constant.jsx\\\",\\\"variable.other.constant.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"meta.export.default.js variable.other.readwrite.js\\\",\\\"meta.export.default.ts variable.other.readwrite.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"source.js meta.template.expression.js punctuation.accessor\\\",\\\"source.ts meta.template.expression.ts punctuation.accessor\\\",\\\"source.tsx meta.template.expression.tsx punctuation.accessor\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"source.js meta.import-equals.external.js keyword.operator\\\",\\\"source.jsx meta.import-equals.external.jsx keyword.operator\\\",\\\"source.ts meta.import-equals.external.ts keyword.operator\\\",\\\"source.tsx meta.import-equals.external.tsx keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.js,entity.name.type.module.ts,entity.name.type.module.jsx,entity.name.type.module.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":\\\"meta.class.js,meta.class.ts,meta.class.jsx,meta.class.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.definition.property.js variable\\\",\\\"meta.definition.property.ts variable\\\",\\\"meta.definition.property.jsx variable\\\",\\\"meta.definition.property.tsx variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.type.parameters.js support.type\\\",\\\"meta.type.parameters.jsx support.type\\\",\\\"meta.type.parameters.ts support.type\\\",\\\"meta.type.parameters.tsx support.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"source.js meta.tag.js keyword.operator\\\",\\\"source.jsx meta.tag.jsx keyword.operator\\\",\\\"source.ts meta.tag.ts keyword.operator\\\",\\\"source.tsx meta.tag.tsx keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.tag.js punctuation.section.embedded\\\",\\\"meta.tag.jsx punctuation.section.embedded\\\",\\\"meta.tag.ts punctuation.section.embedded\\\",\\\"meta.tag.tsx punctuation.section.embedded\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.array.literal.js variable\\\",\\\"meta.array.literal.jsx variable\\\",\\\"meta.array.literal.ts variable\\\",\\\"meta.array.literal.tsx variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":[\\\"support.type.object.module.js\\\",\\\"support.type.object.module.jsx\\\",\\\"support.type.object.module.ts\\\",\\\"support.type.object.module.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":[\\\"constant.language.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"variable.other.constant.object.js\\\",\\\"variable.other.constant.object.jsx\\\",\\\"variable.other.constant.object.ts\\\",\\\"variable.other.constant.object.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":[\\\"storage.type.property.js\\\",\\\"storage.type.property.jsx\\\",\\\"storage.type.property.ts\\\",\\\"storage.type.property.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":[\\\"meta.template.expression.js string.quoted punctuation.definition\\\",\\\"meta.template.expression.jsx string.quoted punctuation.definition\\\",\\\"meta.template.expression.ts string.quoted punctuation.definition\\\",\\\"meta.template.expression.tsx string.quoted punctuation.definition\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"meta.template.expression.js string.template punctuation.definition.string.template\\\",\\\"meta.template.expression.jsx string.template punctuation.definition.string.template\\\",\\\"meta.template.expression.ts string.template punctuation.definition.string.template\\\",\\\"meta.template.expression.tsx string.template punctuation.definition.string.template\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":[\\\"keyword.operator.expression.in.js\\\",\\\"keyword.operator.expression.in.jsx\\\",\\\"keyword.operator.expression.in.ts\\\",\\\"keyword.operator.expression.in.tsx\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"variable.other.object.js\\\",\\\"variable.other.object.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":[\\\"meta.object-literal.key.js\\\",\\\"meta.object-literal.key.ts\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"source.python constant.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"source.python constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"constant.character.format.placeholder.other.python storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"support.variable.magic.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"meta.function.parameters.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"punctuation.separator.annotation.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"punctuation.separator.parameters.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"entity.name.variable.field.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"source.cs keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"variable.other.readwrite.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"variable.other.object.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"variable.other.object.property.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"entity.name.variable.property.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":\\\"storage.type.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":\\\"keyword.other.unsafe.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":\\\"entity.name.type.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":\\\"storage.modifier.lifetime.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"entity.name.lifetime.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"storage.type.core.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":\\\"meta.attribute.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"storage.class.std.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#0184BC\\\"}},{\\\"scope\\\":\\\"markup.raw.block.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable.shell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"support.constant.property-value.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"punctuation.definition.constant.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"punctuation.separator.key-value.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"punctuation.definition.constant.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"meta.property-list.scss punctuation.separator.key-value.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"storage.type.primitive.array.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#C18401\\\"}},{\\\"scope\\\":\\\"entity.name.section.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"punctuation.definition.heading.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"markup.heading.setext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"punctuation.definition.bold.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"markup.inline.raw.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":\\\"beginning.punctuation.definition.list.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"markup.quote.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#A0A1A7\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.string.begin.markdown\\\",\\\"punctuation.definition.string.end.markdown\\\",\\\"punctuation.definition.metadata.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}},{\\\"scope\\\":\\\"punctuation.definition.metadata.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"markup.underline.link.markdown\\\",\\\"markup.underline.link.image.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#A626A4\\\"}},{\\\"scope\\\":[\\\"string.other.link.title.markdown\\\",\\\"string.other.link.description.markdown\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#4078F2\\\"}},{\\\"scope\\\":\\\"punctuation.separator.variable.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"variable.other.constant.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#986801\\\"}},{\\\"scope\\\":\\\"keyword.operator.other.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#50A14F\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#E45649\\\"}},{\\\"scope\\\":\\\"meta.class.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#383A42\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["oneLight"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,0pxBAA002B,CAAC","x_google_ignoreList":[0]}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
`{"displayName":"OpenSCAD","fileTypes":["scad"],"foldingStartMarker":"/\\\\*\\\\*|\\\\{\\\\s*$","foldingStopMarker":"\\\\*\\\\*/|^\\\\s*}","name":"openscad","patterns":[{"captures":{"1":{"name":"keyword.control.scad"}},"match":"^(module)\\\\s.*$","name":"meta.function.scad"},{"match":"\\\\b(if|else|for|intersection_for|assign|render|function|include|use)\\\\b","name":"keyword.control.scad"},{"begin":"/\\\\*\\\\*(?!/)","captures":{"0":{"name":"punctuation.definition.comment.scad"}},"end":"\\\\*/","name":"comment.block.documentation.scad"},{"begin":"/\\\\*","captures":{"0":{"name":"punctuation.definition.comment.scad"}},"end":"\\\\*/","name":"comment.block.scad"},{"captures":{"1":{"name":"punctuation.definition.comment.scad"}},"match":"(//).*$\\\\n?","name":"comment.line.double-slash.scad"},{"begin":"\\"","end":"\\"","name":"string.quoted.double.scad","patterns":[{"match":"\\\\\\\\.","name":"constant.character.escape.scad"}]},{"begin":"'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.scad"}},"end":"'","endCaptures":{"0":{"name":"punctuation.definition.string.end.scad"}},"name":"string.quoted.single.scad","patterns":[{"match":"\\\\\\\\(x\\\\h{2}|[012][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)","name":"constant.character.escape.scad"}]},{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.scad"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.end.scad"}},"name":"string.quoted.double.scad","patterns":[{"match":"\\\\\\\\(x\\\\h{2}|[012][0-7]{0,2}|3[0-6][0-7]|37[0-7]?|[4-7][0-7]?|.)","name":"constant.character.escape.scad"}]},{"match":"\\\\b(abs|acos|asun|atan2??|ceil|cos|exp|floor|ln|log|lookup|max|min|pow|rands|round|sign|sin|sqrt|tan|str|cube|sphere|cylinder|polyhedron|scale|rotate|translate|mirror|multimatrix|color|minkowski|hull|union|difference|intersection|echo)\\\\b","name":"support.function.scad"},{"match":";","name":"punctuation.terminator.statement.scad"},{"match":",[\\\\t |]*","name":"meta.delimiter.object.comma.scad"},{"match":"\\\\.","name":"meta.delimiter.method.period.scad"},{"match":"[{}]","name":"meta.brace.curly.scad"},{"match":"[()]","name":"meta.brace.round.scad"},{"match":"[]\\\\[]","name":"meta.brace.square.scad"},{"match":"[!$%\\\\&*]|--?|\\\\+\\\\+|[+~]|===?|=|!==??|<=|>=|<<=|>>=|>>>=|<>|[!<>]|&&|\\\\|\\\\||\\\\?:|\\\\*=|(?<!\\\\()/=|%=|\\\\+=|-=|&=|\\\\^=|\\\\b(in|instanceof|new|delete|typeof|void)\\\\b","name":"keyword.operator.scad"},{"match":"\\\\b((0([Xx])\\\\h+)|([0-9]+(\\\\.[0-9]+)?))\\\\b","name":"constant.numeric.scad"},{"match":"\\\\btrue\\\\b","name":"constant.language.boolean.true.scad"},{"match":"\\\\bfalse\\\\b","name":"constant.language.boolean.false.scad"}],"scopeName":"source.scad","aliases":["scad"]}`,
|
|
9
|
+
),
|
|
10
|
+
),
|
|
11
|
+
a = [e];
|
|
12
|
+
export { a as default };
|
|
13
|
+
//# sourceMappingURL=openscad-C4EeE6gA.js.map
|