@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.
Files changed (704) hide show
  1. package/README.md +94 -116
  2. package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
  3. package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
  4. package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
  5. package/dist/application/heal-config/index.d.ts +1 -1
  6. package/dist/application/heal-config/registry.js +2 -1
  7. package/dist/application/heal-config/types.d.ts +187 -6
  8. package/dist/application/playwright-fixture/index.js +247 -48
  9. package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
  10. package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
  11. package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
  12. package/dist/application/trace-event-recorder-runtime/index.js +11 -1
  13. package/dist/bin/heal-tracer.d.ts +7 -0
  14. package/dist/bin/heal-tracer.js +16 -0
  15. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
  16. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
  17. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
  18. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
  19. package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
  20. package/dist/domain/persistence/execution-history-schema.js +10 -0
  21. package/dist/domain/persistence/index.d.ts +7 -0
  22. package/dist/domain/persistence/index.js +10 -0
  23. package/dist/domain/persistence/test-status.d.ts +6 -0
  24. package/dist/domain/persistence/test-status.js +7 -0
  25. package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
  26. package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
  27. package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
  28. package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
  29. package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
  30. package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
  31. package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
  32. package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
  33. package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
  34. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
  35. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
  36. package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
  37. package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
  38. package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
  39. package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
  40. package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
  41. package/dist/index.d.ts +1 -1
  42. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
  43. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
  44. package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
  45. package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
  46. package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
  47. package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
  48. package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
  49. package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
  50. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
  51. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
  52. package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
  53. package/dist/infrastructure/heal-reporter/index.js +23 -0
  54. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
  55. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
  56. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
  57. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
  58. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
  59. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
  60. package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
  61. package/dist/infrastructure/heal-traces-layout/index.js +14 -0
  62. package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
  63. package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
  64. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
  65. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
  66. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
  67. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
  68. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
  69. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
  70. package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
  71. package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
  72. package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
  73. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
  74. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
  75. package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
  76. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
  77. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
  78. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
  79. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
  80. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
  81. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
  82. package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
  83. package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
  84. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
  85. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
  86. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
  87. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
  88. package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
  89. package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
  90. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
  91. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
  92. package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
  93. package/dist/util/logger.d.ts +17 -0
  94. package/dist/util/logger.js +60 -0
  95. package/dist/util/with-timeout.d.ts +6 -0
  96. package/dist/util/with-timeout.js +33 -0
  97. package/package.json +20 -3
  98. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
  99. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
  100. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
  101. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
  102. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
  103. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
  104. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
  105. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
  106. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
  107. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
  108. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
  109. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
  110. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
  111. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
  112. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
  113. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
  114. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
  115. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
  116. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
  117. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
  118. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
  119. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
  120. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
  121. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
  122. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
  123. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
  124. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
  125. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
  126. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
  127. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
  128. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
  129. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
  130. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
  131. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
  132. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
  133. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
  134. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
  135. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
  136. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
  137. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
  138. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
  139. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
  140. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
  141. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
  142. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
  143. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
  144. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
  145. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
  146. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
  147. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
  148. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
  149. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
  150. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
  151. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
  152. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
  153. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
  154. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
  155. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
  156. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
  157. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
  158. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
  159. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
  160. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
  161. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
  162. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
  163. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
  164. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
  165. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
  166. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
  167. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
  168. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
  169. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
  170. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
  171. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
  172. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
  173. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
  174. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
  175. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
  176. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
  177. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
  178. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
  179. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
  180. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
  181. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
  182. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
  183. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
  184. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
  185. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
  186. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
  187. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
  188. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
  189. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
  190. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
  191. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
  192. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
  193. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
  194. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
  195. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
  196. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
  197. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
  198. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
  199. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
  200. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
  201. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
  202. package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
  203. package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
  204. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
  205. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
  206. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
  207. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
  208. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
  209. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
  210. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
  211. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
  212. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
  213. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
  214. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
  215. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
  216. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
  217. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
  218. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
  219. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
  220. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
  221. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
  222. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
  223. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
  224. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
  225. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
  226. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
  227. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
  228. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
  229. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
  230. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
  231. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
  232. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
  233. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
  234. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
  235. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
  236. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
  237. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
  238. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
  239. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
  240. package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
  241. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
  242. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
  243. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
  244. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
  245. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
  246. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
  247. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
  248. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
  249. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
  250. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
  251. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
  252. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
  253. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
  254. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
  255. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
  256. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
  257. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
  258. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
  259. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
  260. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
  261. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
  262. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
  263. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
  264. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
  265. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
  266. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
  267. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
  268. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
  269. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
  270. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
  271. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
  272. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
  273. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
  274. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
  275. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
  276. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
  277. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
  278. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
  279. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
  280. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
  281. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
  282. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
  283. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
  284. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
  285. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
  286. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
  287. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
  288. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
  289. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
  290. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
  291. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
  292. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
  293. package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
  294. package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
  295. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
  296. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
  297. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
  298. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
  299. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
  300. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
  301. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
  302. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
  303. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
  304. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
  305. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
  306. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
  307. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
  308. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
  309. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
  310. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
  311. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
  312. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
  313. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
  314. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
  315. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
  316. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
  317. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
  318. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
  319. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
  320. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
  321. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
  322. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
  323. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
  324. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
  325. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
  326. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
  327. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
  328. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
  329. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
  330. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
  331. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
  332. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
  333. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
  334. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
  335. package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
  336. package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
  337. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
  338. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
  339. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
  340. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
  341. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
  342. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
  343. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
  344. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
  345. package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
  346. package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
  347. package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
  348. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
  349. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
  350. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
  351. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
  352. package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
  353. package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
  354. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
  355. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
  356. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
  357. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
  358. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
  359. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
  360. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
  361. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
  362. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
  363. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
  364. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
  365. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
  366. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
  367. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
  368. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
  369. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
  370. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
  371. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
  372. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
  373. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
  374. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
  375. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
  376. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
  377. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
  378. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
  379. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
  380. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
  381. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
  382. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
  383. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
  384. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
  385. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
  386. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
  387. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
  388. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
  389. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
  390. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
  391. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
  392. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
  393. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
  394. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
  395. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
  396. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
  397. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
  398. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
  399. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
  400. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
  401. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
  402. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
  403. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
  404. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
  405. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
  406. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
  407. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
  408. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
  409. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
  410. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
  411. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
  412. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
  413. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
  414. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
  415. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
  416. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
  417. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
  418. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
  419. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
  420. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
  421. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
  422. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
  423. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
  424. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
  425. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
  426. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
  427. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
  428. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
  429. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
  430. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
  431. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
  432. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
  433. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
  434. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
  435. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
  436. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
  437. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
  438. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
  439. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
  440. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
  441. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
  442. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
  443. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
  444. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
  445. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
  446. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
  447. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
  448. package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
  449. package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
  450. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
  451. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
  452. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
  453. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
  454. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
  455. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
  456. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
  457. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
  458. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
  459. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
  460. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
  461. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
  462. package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
  463. package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
  464. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
  465. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
  466. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
  467. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
  468. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
  469. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
  470. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
  471. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
  472. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
  473. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
  474. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
  475. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
  476. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
  477. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
  478. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
  479. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
  480. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
  481. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
  482. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
  483. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
  484. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
  485. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
  486. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
  487. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
  488. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
  489. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
  490. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
  491. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
  492. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
  493. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
  494. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
  495. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
  496. package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
  497. package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
  498. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
  499. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
  500. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
  501. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
  502. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
  503. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
  504. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
  505. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
  506. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
  507. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
  508. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
  509. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
  510. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
  511. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
  512. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
  513. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
  514. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
  515. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
  516. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
  517. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
  518. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
  519. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
  520. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
  521. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
  522. package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
  523. package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
  524. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
  525. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
  526. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
  527. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
  528. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
  529. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
  530. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
  531. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
  532. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
  533. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
  534. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
  535. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
  536. package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
  537. package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
  538. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
  539. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
  540. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
  541. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
  542. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
  543. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
  544. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
  545. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
  546. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
  547. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
  548. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
  549. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
  550. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
  551. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
  552. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
  553. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
  554. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
  555. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
  556. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
  557. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
  558. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
  559. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
  560. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
  561. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
  562. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
  563. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
  564. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
  565. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
  566. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
  567. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
  568. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
  569. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
  570. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
  571. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
  572. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
  573. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
  574. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
  575. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
  576. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
  577. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
  578. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
  579. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
  580. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
  581. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
  582. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
  583. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
  584. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
  585. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
  586. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
  587. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
  588. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
  589. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
  590. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
  591. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
  592. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
  593. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
  594. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
  595. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
  596. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
  597. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
  598. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
  599. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
  600. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
  601. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
  602. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
  603. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
  604. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
  605. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
  606. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
  607. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
  608. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
  609. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
  610. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
  611. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
  612. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
  613. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
  614. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
  615. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
  616. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
  617. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
  618. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
  619. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
  620. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
  621. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
  622. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
  623. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
  624. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
  625. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
  626. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
  627. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
  628. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
  629. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
  630. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
  631. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
  632. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
  633. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
  634. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
  635. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
  636. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
  637. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
  638. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
  639. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
  640. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
  641. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
  642. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
  643. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
  644. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
  645. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
  646. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
  647. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
  648. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
  649. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
  650. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
  651. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
  652. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
  653. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
  654. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
  655. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
  656. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
  657. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
  658. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
  659. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
  660. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
  661. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
  662. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
  663. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
  664. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
  665. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
  666. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
  667. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
  668. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
  669. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
  670. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
  671. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
  672. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
  673. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
  674. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
  675. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
  676. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
  677. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
  678. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
  679. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
  680. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
  681. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
  682. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
  683. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
  684. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
  685. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
  686. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
  687. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
  688. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
  689. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
  690. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
  691. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
  692. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
  693. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
  694. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
  695. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
  696. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
  697. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
  698. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
  699. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
  700. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
  701. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
  702. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
  703. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
  704. package/tracer-viewer-bundle/index.html +25 -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":"#1d2021","activityBar.border":"#3c3836","activityBar.foreground":"#ebdbb2","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#1d2021","activityBarTop.foreground":"#ebdbb2","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#ebdbb2","button.hoverBackground":"#45858860","debugToolBar.background":"#1d2021","diffEditor.insertedTextBackground":"#b8bb2630","diffEditor.removedTextBackground":"#fb493430","dropdown.background":"#1d2021","dropdown.border":"#3c3836","dropdown.foreground":"#ebdbb2","editor.background":"#1d2021","editor.findMatchBackground":"#83a59870","editor.findMatchHighlightBackground":"#fe801930","editor.findRangeHighlightBackground":"#83a59870","editor.foreground":"#ebdbb2","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#3c383660","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#fabd2f40","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#a8998490","editorCursor.foreground":"#ebdbb2","editorError.foreground":"#cc241d","editorGhostText.background":"#665c5460","editorGroup.border":"#3c3836","editorGroup.dropBackground":"#3c383660","editorGroupHeader.noTabsBackground":"#1d2021","editorGroupHeader.tabsBackground":"#1d2021","editorGroupHeader.tabsBorder":"#3c3836","editorGutter.addedBackground":"#b8bb26","editorGutter.background":"#0000","editorGutter.deletedBackground":"#fb4934","editorGutter.modifiedBackground":"#83a598","editorHoverWidget.background":"#1d2021","editorHoverWidget.border":"#3c3836","editorIndentGuide.activeBackground":"#665c54","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#665c54","editorLink.activeForeground":"#ebdbb2","editorOverviewRuler.addedForeground":"#83a598","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#83a598","editorOverviewRuler.errorForeground":"#fb4934","editorOverviewRuler.findMatchForeground":"#bdae93","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#d3869b","editorOverviewRuler.modifiedForeground":"#83a598","editorOverviewRuler.rangeHighlightForeground":"#bdae93","editorOverviewRuler.selectionHighlightForeground":"#665c54","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#665c54","editorOverviewRuler.wordHighlightStrongForeground":"#665c54","editorRuler.foreground":"#a8998440","editorStickyScroll.shadow":"#50494599","editorStickyScrollHover.background":"#3c383660","editorSuggestWidget.background":"#1d2021","editorSuggestWidget.border":"#3c3836","editorSuggestWidget.foreground":"#ebdbb2","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#3c383660","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#a8998420","editorWidget.background":"#1d2021","editorWidget.border":"#3c3836","errorForeground":"#fb4934","extensionButton.prominentBackground":"#b8bb2680","extensionButton.prominentHoverBackground":"#b8bb2630","focusBorder":"#3c3836","foreground":"#ebdbb2","gitDecoration.addedResourceForeground":"#ebdbb2","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#7c6f64","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#7c6f64","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#83a598","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#d3869b","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#8ec07c","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#fabd2f","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#b8bb26","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#b8bb26","gitlens.graphMinimapMarkerLocalBranchesColor":"#83a598","gitlens.graphMinimapMarkerPullRequestsColor":"#fe8019","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#7c6f64","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#b8bb26","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#83a598","gitlens.graphScrollMarkerPullRequestsColor":"#fe8019","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#7c6f64","gitlens.graphScrollMarkerUpstreamColor":"#8ec07c","gitlens.gutterBackgroundColor":"#3c3836","gitlens.gutterForegroundColor":"#ebdbb2","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#fabd2f","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#fb4934","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#b8bb26","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#3c3836","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#1d2021a0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#fe8019","icon.foreground":"#ebdbb2","input.background":"#1d2021","input.border":"#3c3836","input.foreground":"#ebdbb2","input.placeholderForeground":"#ebdbb260","inputOption.activeBorder":"#ebdbb260","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#fb4934","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#83a598","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#fabd2f","list.activeSelectionBackground":"#3c383680","list.activeSelectionForeground":"#8ec07c","list.dropBackground":"#3c3836","list.focusBackground":"#3c3836","list.focusForeground":"#ebdbb2","list.highlightForeground":"#689d6a","list.hoverBackground":"#3c383680","list.hoverForeground":"#d5c4a1","list.inactiveSelectionBackground":"#3c383680","list.inactiveSelectionForeground":"#689d6a","menu.border":"#3c3836","menu.separatorBackground":"#3c3836","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#504945","notebook.cellEditorBackground":"#3c3836","notebook.focusedCellBorder":"#a89984","notebook.focusedEditorBorder":"#504945","panel.border":"#3c3836","panelTitle.activeForeground":"#ebdbb2","peekView.border":"#3c3836","peekViewEditor.background":"#3c383670","peekViewEditor.matchHighlightBackground":"#504945","peekViewEditorGutter.background":"#3c383670","peekViewResult.background":"#3c383670","peekViewResult.fileForeground":"#ebdbb2","peekViewResult.lineForeground":"#ebdbb2","peekViewResult.matchHighlightBackground":"#504945","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#ebdbb2","peekViewTitle.background":"#3c383670","peekViewTitleDescription.foreground":"#bdae93","peekViewTitleLabel.foreground":"#ebdbb2","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#1d2021","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#50494599","scrollbarSlider.hoverBackground":"#665c54","selection.background":"#689d6a80","sideBar.background":"#1d2021","sideBar.border":"#3c3836","sideBar.foreground":"#d5c4a1","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#ebdbb2","sideBarTitle.foreground":"#ebdbb2","statusBar.background":"#1d2021","statusBar.border":"#3c3836","statusBar.debuggingBackground":"#fe8019","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#1d2021","statusBar.foreground":"#ebdbb2","statusBar.noFolderBackground":"#1d2021","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#3c3836","tab.activeBorder":"#689d6a","tab.activeForeground":"#ebdbb2","tab.border":"#0000","tab.inactiveBackground":"#1d2021","tab.inactiveForeground":"#a89984","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#a89984","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#3c3836","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#83a598","terminal.ansiBrightCyan":"#8ec07c","terminal.ansiBrightGreen":"#b8bb26","terminal.ansiBrightMagenta":"#d3869b","terminal.ansiBrightRed":"#fb4934","terminal.ansiBrightWhite":"#ebdbb2","terminal.ansiBrightYellow":"#fabd2f","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#a89984","terminal.ansiYellow":"#d79921","terminal.background":"#1d2021","terminal.foreground":"#ebdbb2","textLink.activeForeground":"#458588","textLink.foreground":"#83a598","titleBar.activeBackground":"#1d2021","titleBar.activeForeground":"#ebdbb2","titleBar.inactiveBackground":"#1d2021","widget.border":"#3c3836","widget.shadow":"#1d202130"},"displayName":"Gruvbox Dark Hard","name":"gruvbox-dark-hard","semanticHighlighting":true,"semanticTokenColors":{"component":"#fe8019","constant.builtin":"#d3869b","function":"#8ec07c","function.builtin":"#fe8019","method":"#8ec07c","parameter":"#83a598","property":"#83a598","property:python":"#ebdbb2","variable":"#ebdbb2"},"tokenColors":[{"settings":{"foreground":"#ebdbb2"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#d3869b"}},{"scope":"constant.rgb-value","settings":{"foreground":"#ebdbb2"}},{"scope":"entity.name.selector","settings":{"foreground":"#8ec07c"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#fabd2f"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#8ec07c"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#8ec07c"}},{"scope":"meta.preprocessor","settings":{"foreground":"#fe8019"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#b8bb26"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#b8bb26"}},{"scope":"meta.header.diff","settings":{"foreground":"#fe8019"}},{"scope":"storage","settings":{"foreground":"#fb4934"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#fe8019"}},{"scope":"string","settings":{"foreground":"#b8bb26"}},{"scope":"string.tag","settings":{"foreground":"#b8bb26"}},{"scope":"string.value","settings":{"foreground":"#b8bb26"}},{"scope":"string.regexp","settings":{"foreground":"#fe8019"}},{"scope":"string.escape","settings":{"foreground":"#fb4934"}},{"scope":"string.quasi","settings":{"foreground":"#8ec07c"}},{"scope":"string.entity","settings":{"foreground":"#b8bb26"}},{"scope":"object","settings":{"foreground":"#ebdbb2"}},{"scope":"module.node","settings":{"foreground":"#83a598"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control.module","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.operator.new","settings":{"foreground":"#fe8019"}},{"scope":"keyword.other.unit","settings":{"foreground":"#b8bb26"}},{"scope":"metatag.php","settings":{"foreground":"#fe8019"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#b8bb26"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#fabd2f"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#d3869b"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#8ec07c"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.builtin","settings":{"foreground":"#fe8019"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#d5c4a1"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#83a598"}},{"scope":"prototype","settings":{"foreground":"#d3869b"}},{"scope":["punctuation"],"settings":{"foreground":"#a89984"}},{"scope":"punctuation.quoted","settings":{"foreground":"#ebdbb2"}},{"scope":"punctuation.quasi","settings":{"foreground":"#fb4934"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#8ec07c"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#fb4934"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#fb4934"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#83a598"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#d5c4a1"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#fb4934"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#fe8019"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.directive","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.C99","settings":{"foreground":"#fabd2f"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#b8bb26"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#8ec07c"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#d3869b"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#fabd2f"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#bdae93"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#8ec07c"}},{"scope":"storage.type.java","settings":{"foreground":"#fabd2f"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#8ec07c"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#ebdbb2"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#fabd2f"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#d3869b"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fb4934"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#d3869b"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#b8bb26"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#fe8019"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#83a598"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#8ec07c"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#83a598"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#fe8019"}},{"scope":"source.css meta.selector","settings":{"foreground":"#ebdbb2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#fe8019"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#b8bb26"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#fb4934"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#83a598"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#8ec07c"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#83a598"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#ebdbb2"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#d3869b"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#bdae93"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#fb4934"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#fe8019"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#d3869b"}},{"scope":["support.class.latex"],"settings":{"foreground":"#8ec07c"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=gruvbox-dark-hard-CFHQjOhq.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gruvbox-dark-hard-CFHQjOhq.js","sources":["../../../../node_modules/@shikijs/themes/dist/gruvbox-dark-hard.mjs"],"sourcesContent":["/* Theme: gruvbox-dark-hard */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#1d2021\\\",\\\"activityBar.border\\\":\\\"#3c3836\\\",\\\"activityBar.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarBadge.background\\\":\\\"#458588\\\",\\\"activityBarBadge.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarTop.background\\\":\\\"#1d2021\\\",\\\"activityBarTop.foreground\\\":\\\"#ebdbb2\\\",\\\"badge.background\\\":\\\"#b16286\\\",\\\"badge.foreground\\\":\\\"#ebdbb2\\\",\\\"button.background\\\":\\\"#45858880\\\",\\\"button.foreground\\\":\\\"#ebdbb2\\\",\\\"button.hoverBackground\\\":\\\"#45858860\\\",\\\"debugToolBar.background\\\":\\\"#1d2021\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#b8bb2630\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#fb493430\\\",\\\"dropdown.background\\\":\\\"#1d2021\\\",\\\"dropdown.border\\\":\\\"#3c3836\\\",\\\"dropdown.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.background\\\":\\\"#1d2021\\\",\\\"editor.findMatchBackground\\\":\\\"#83a59870\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#fe801930\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#83a59870\\\",\\\"editor.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#689d6a50\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3c383660\\\",\\\"editor.lineHighlightBorder\\\":\\\"#0000\\\",\\\"editor.selectionBackground\\\":\\\"#689d6a40\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#fabd2f40\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#b16286\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#458588\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#689d6a\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#98971a\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#d79921\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#d65d0e\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#cc241d\\\",\\\"editorBracketMatch.background\\\":\\\"#92837480\\\",\\\"editorBracketMatch.border\\\":\\\"#0000\\\",\\\"editorCodeLens.foreground\\\":\\\"#a8998490\\\",\\\"editorCursor.foreground\\\":\\\"#ebdbb2\\\",\\\"editorError.foreground\\\":\\\"#cc241d\\\",\\\"editorGhostText.background\\\":\\\"#665c5460\\\",\\\"editorGroup.border\\\":\\\"#3c3836\\\",\\\"editorGroup.dropBackground\\\":\\\"#3c383660\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#1d2021\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#1d2021\\\",\\\"editorGroupHeader.tabsBorder\\\":\\\"#3c3836\\\",\\\"editorGutter.addedBackground\\\":\\\"#b8bb26\\\",\\\"editorGutter.background\\\":\\\"#0000\\\",\\\"editorGutter.deletedBackground\\\":\\\"#fb4934\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#83a598\\\",\\\"editorHoverWidget.background\\\":\\\"#1d2021\\\",\\\"editorHoverWidget.border\\\":\\\"#3c3836\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#665c54\\\",\\\"editorInfo.foreground\\\":\\\"#458588\\\",\\\"editorLineNumber.foreground\\\":\\\"#665c54\\\",\\\"editorLink.activeForeground\\\":\\\"#ebdbb2\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.border\\\":\\\"#0000\\\",\\\"editorOverviewRuler.commonContentForeground\\\":\\\"#928374\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#458588\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#fb4934\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#689d6a\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#d3869b\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#d79921\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#665c54\\\",\\\"editorRuler.foreground\\\":\\\"#a8998440\\\",\\\"editorStickyScroll.shadow\\\":\\\"#50494599\\\",\\\"editorStickyScrollHover.background\\\":\\\"#3c383660\\\",\\\"editorSuggestWidget.background\\\":\\\"#1d2021\\\",\\\"editorSuggestWidget.border\\\":\\\"#3c3836\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#ebdbb2\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#689d6a\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#3c383660\\\",\\\"editorWarning.foreground\\\":\\\"#d79921\\\",\\\"editorWhitespace.foreground\\\":\\\"#a8998420\\\",\\\"editorWidget.background\\\":\\\"#1d2021\\\",\\\"editorWidget.border\\\":\\\"#3c3836\\\",\\\"errorForeground\\\":\\\"#fb4934\\\",\\\"extensionButton.prominentBackground\\\":\\\"#b8bb2680\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#b8bb2630\\\",\\\"focusBorder\\\":\\\"#3c3836\\\",\\\"foreground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.addedResourceForeground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#b16286\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#cc241d\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#7c6f64\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#d79921\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#98971a\\\",\\\"gitlens.closedAutolinkedIssueIconColor\\\":\\\"#b16286\\\",\\\"gitlens.closedPullRequestIconColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.branchAheadForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.branchBehindForegroundColor\\\":\\\"#d65d0e\\\",\\\"gitlens.decorations.branchDivergedForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.branchMissingUpstreamForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.workspaceCurrentForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.workspaceRepoMissingForegroundColor\\\":\\\"#7c6f64\\\",\\\"gitlens.decorations.workspaceRepoOpenForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\\\":\\\"#928374\\\",\\\"gitlens.decorations.worktreeMissingForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphChangesColumnAddedColor\\\":\\\"#98971a\\\",\\\"gitlens.graphChangesColumnDeletedColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphLane10Color\\\":\\\"#98971a\\\",\\\"gitlens.graphLane1Color\\\":\\\"#83a598\\\",\\\"gitlens.graphLane2Color\\\":\\\"#458588\\\",\\\"gitlens.graphLane3Color\\\":\\\"#d3869b\\\",\\\"gitlens.graphLane4Color\\\":\\\"#b16286\\\",\\\"gitlens.graphLane5Color\\\":\\\"#8ec07c\\\",\\\"gitlens.graphLane6Color\\\":\\\"#689d6a\\\",\\\"gitlens.graphLane7Color\\\":\\\"#fabd2f\\\",\\\"gitlens.graphLane8Color\\\":\\\"#d79921\\\",\\\"gitlens.graphLane9Color\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerHeadColor\\\":\\\"#98971a\\\",\\\"gitlens.graphMinimapMarkerHighlightsColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphMinimapMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphMinimapMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphMinimapMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphMinimapMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphMinimapMarkerUpstreamColor\\\":\\\"#689d6a\\\",\\\"gitlens.graphScrollMarkerHeadColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphScrollMarkerHighlightsColor\\\":\\\"#d79921\\\",\\\"gitlens.graphScrollMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphScrollMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphScrollMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphScrollMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphScrollMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphScrollMarkerUpstreamColor\\\":\\\"#8ec07c\\\",\\\"gitlens.gutterBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.gutterForegroundColor\\\":\\\"#ebdbb2\\\",\\\"gitlens.gutterUncommittedForegroundColor\\\":\\\"#458588\\\",\\\"gitlens.launchpadIndicatorAttentionColor\\\":\\\"#fabd2f\\\",\\\"gitlens.launchpadIndicatorAttentionHoverColor\\\":\\\"#d79921\\\",\\\"gitlens.launchpadIndicatorBlockedColor\\\":\\\"#fb4934\\\",\\\"gitlens.launchpadIndicatorBlockedHoverColor\\\":\\\"#cc241d\\\",\\\"gitlens.launchpadIndicatorMergeableColor\\\":\\\"#b8bb26\\\",\\\"gitlens.launchpadIndicatorMergeableHoverColor\\\":\\\"#98971a\\\",\\\"gitlens.lineHighlightBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.lineHighlightOverviewRulerColor\\\":\\\"#458588\\\",\\\"gitlens.mergedPullRequestIconColor\\\":\\\"#b16286\\\",\\\"gitlens.openAutolinkedIssueIconColor\\\":\\\"#98971a\\\",\\\"gitlens.openPullRequestIconColor\\\":\\\"#98971a\\\",\\\"gitlens.trailingLineBackgroundColor\\\":\\\"#1d2021a0\\\",\\\"gitlens.trailingLineForegroundColor\\\":\\\"#928374a0\\\",\\\"gitlens.unpublishedChangesIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpublishedCommitIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpulledChangesIconColor\\\":\\\"#fe8019\\\",\\\"icon.foreground\\\":\\\"#ebdbb2\\\",\\\"input.background\\\":\\\"#1d2021\\\",\\\"input.border\\\":\\\"#3c3836\\\",\\\"input.foreground\\\":\\\"#ebdbb2\\\",\\\"input.placeholderForeground\\\":\\\"#ebdbb260\\\",\\\"inputOption.activeBorder\\\":\\\"#ebdbb260\\\",\\\"inputValidation.errorBackground\\\":\\\"#cc241d\\\",\\\"inputValidation.errorBorder\\\":\\\"#fb4934\\\",\\\"inputValidation.infoBackground\\\":\\\"#45858880\\\",\\\"inputValidation.infoBorder\\\":\\\"#83a598\\\",\\\"inputValidation.warningBackground\\\":\\\"#d79921\\\",\\\"inputValidation.warningBorder\\\":\\\"#fabd2f\\\",\\\"list.activeSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.activeSelectionForeground\\\":\\\"#8ec07c\\\",\\\"list.dropBackground\\\":\\\"#3c3836\\\",\\\"list.focusBackground\\\":\\\"#3c3836\\\",\\\"list.focusForeground\\\":\\\"#ebdbb2\\\",\\\"list.highlightForeground\\\":\\\"#689d6a\\\",\\\"list.hoverBackground\\\":\\\"#3c383680\\\",\\\"list.hoverForeground\\\":\\\"#d5c4a1\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#689d6a\\\",\\\"menu.border\\\":\\\"#3c3836\\\",\\\"menu.separatorBackground\\\":\\\"#3c3836\\\",\\\"merge.border\\\":\\\"#0000\\\",\\\"merge.currentContentBackground\\\":\\\"#45858820\\\",\\\"merge.currentHeaderBackground\\\":\\\"#45858840\\\",\\\"merge.incomingContentBackground\\\":\\\"#689d6a20\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#689d6a40\\\",\\\"notebook.cellBorderColor\\\":\\\"#504945\\\",\\\"notebook.cellEditorBackground\\\":\\\"#3c3836\\\",\\\"notebook.focusedCellBorder\\\":\\\"#a89984\\\",\\\"notebook.focusedEditorBorder\\\":\\\"#504945\\\",\\\"panel.border\\\":\\\"#3c3836\\\",\\\"panelTitle.activeForeground\\\":\\\"#ebdbb2\\\",\\\"peekView.border\\\":\\\"#3c3836\\\",\\\"peekViewEditor.background\\\":\\\"#3c383670\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewEditorGutter.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.fileForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.lineForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#45858820\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewTitle.background\\\":\\\"#3c383670\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#bdae93\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#ebdbb2\\\",\\\"progressBar.background\\\":\\\"#689d6a\\\",\\\"scmGraph.historyItemHoverDefaultLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scmGraph.historyItemHoverLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scrollbar.shadow\\\":\\\"#1d2021\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#689d6a\\\",\\\"scrollbarSlider.background\\\":\\\"#50494599\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#665c54\\\",\\\"selection.background\\\":\\\"#689d6a80\\\",\\\"sideBar.background\\\":\\\"#1d2021\\\",\\\"sideBar.border\\\":\\\"#3c3836\\\",\\\"sideBar.foreground\\\":\\\"#d5c4a1\\\",\\\"sideBarSectionHeader.background\\\":\\\"#0000\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#ebdbb2\\\",\\\"sideBarTitle.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.background\\\":\\\"#1d2021\\\",\\\"statusBar.border\\\":\\\"#3c3836\\\",\\\"statusBar.debuggingBackground\\\":\\\"#fe8019\\\",\\\"statusBar.debuggingBorder\\\":\\\"#0000\\\",\\\"statusBar.debuggingForeground\\\":\\\"#1d2021\\\",\\\"statusBar.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.noFolderBackground\\\":\\\"#1d2021\\\",\\\"statusBar.noFolderBorder\\\":\\\"#0000\\\",\\\"tab.activeBackground\\\":\\\"#3c3836\\\",\\\"tab.activeBorder\\\":\\\"#689d6a\\\",\\\"tab.activeForeground\\\":\\\"#ebdbb2\\\",\\\"tab.border\\\":\\\"#0000\\\",\\\"tab.inactiveBackground\\\":\\\"#1d2021\\\",\\\"tab.inactiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#0000\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#928374\\\",\\\"terminal.ansiBlack\\\":\\\"#3c3836\\\",\\\"terminal.ansiBlue\\\":\\\"#458588\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#928374\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#83a598\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#8ec07c\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#b8bb26\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#d3869b\\\",\\\"terminal.ansiBrightRed\\\":\\\"#fb4934\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ebdbb2\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#fabd2f\\\",\\\"terminal.ansiCyan\\\":\\\"#689d6a\\\",\\\"terminal.ansiGreen\\\":\\\"#98971a\\\",\\\"terminal.ansiMagenta\\\":\\\"#b16286\\\",\\\"terminal.ansiRed\\\":\\\"#cc241d\\\",\\\"terminal.ansiWhite\\\":\\\"#a89984\\\",\\\"terminal.ansiYellow\\\":\\\"#d79921\\\",\\\"terminal.background\\\":\\\"#1d2021\\\",\\\"terminal.foreground\\\":\\\"#ebdbb2\\\",\\\"textLink.activeForeground\\\":\\\"#458588\\\",\\\"textLink.foreground\\\":\\\"#83a598\\\",\\\"titleBar.activeBackground\\\":\\\"#1d2021\\\",\\\"titleBar.activeForeground\\\":\\\"#ebdbb2\\\",\\\"titleBar.inactiveBackground\\\":\\\"#1d2021\\\",\\\"widget.border\\\":\\\"#3c3836\\\",\\\"widget.shadow\\\":\\\"#1d202130\\\"},\\\"displayName\\\":\\\"Gruvbox Dark Hard\\\",\\\"name\\\":\\\"gruvbox-dark-hard\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"component\\\":\\\"#fe8019\\\",\\\"constant.builtin\\\":\\\"#d3869b\\\",\\\"function\\\":\\\"#8ec07c\\\",\\\"function.builtin\\\":\\\"#fe8019\\\",\\\"method\\\":\\\"#8ec07c\\\",\\\"parameter\\\":\\\"#83a598\\\",\\\"property\\\":\\\"#83a598\\\",\\\"property:python\\\":\\\"#ebdbb2\\\",\\\"variable\\\":\\\"#ebdbb2\\\"},\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"emphasis\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"strong\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"header\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#458588\\\"}},{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":[\\\"constant\\\",\\\"support.constant\\\",\\\"variable.arguments\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"constant.rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"entity.name.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"punctuation.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#cc241d\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b16286\\\"}},{\\\"scope\\\":\\\"meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.header.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type\\\",\\\"storage.modifier\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string.escape\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"string.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.entity\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"object\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"module.node\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control.module\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.less\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d79921\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.operator.new\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"metatag.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"support.function.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"constant.sha.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"meta.type.name\\\",\\\"meta.return.type\\\",\\\"meta.return-type\\\",\\\"meta.cast\\\",\\\"meta.type.annotation\\\",\\\"support.type\\\",\\\"storage.type.cs\\\",\\\"variable.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"variable.this\\\",\\\"support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"entity.name\\\",\\\"entity.static\\\",\\\"entity.name.class.static.function\\\",\\\"entity.name.function\\\",\\\"entity.name.class\\\",\\\"entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.function\\\",\\\"entity.name.function.static\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.name.function.function-call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.builtin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"entity.name.method\\\",\\\"entity.name.method.function-call\\\",\\\"entity.name.static.function-call\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"brace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":[\\\"meta.parameter.type.variable\\\",\\\"variable.parameter\\\",\\\"variable.name\\\",\\\"variable.other\\\",\\\"variable\\\",\\\"string.constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"prototype\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#a89984\\\"}},{\\\"scope\\\":\\\"punctuation.quoted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"punctuation.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"meta.function.python\\\",\\\"entity.name.function.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"storage.type.function.python\\\",\\\"storage.modifier.declaration\\\",\\\"storage.type.class.python\\\",\\\"storage.type.string.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type.function.async.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"meta.function-call.generic\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":\\\"entity.name.function.decorator\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"constant.other.caps\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"punctuation.definition.logical-expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"string.interpolated.dollar.shell\\\",\\\"string.interpolated.backtick.shell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.directive\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.C99\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"meta.function.cs\\\",\\\"entity.name.function.cs\\\",\\\"entity.name.type.namespace.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"keyword.other.using.cs\\\",\\\"entity.name.variable.field.cs\\\",\\\"entity.name.variable.local.cs\\\",\\\"variable.other.readwrite.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"keyword.other.this.cs\\\",\\\"keyword.other.base.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"meta.scope.prerequisites\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"entity.name.function.target\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"storage.modifier.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"keyword.other.import.java\\\",\\\"keyword.other.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"storage.type.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"storage.type.annotation\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"keyword.other.documentation.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"comment.block.javadoc variable.parameter.java\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.java variable.other.object\\\",\\\"source.java variable.other.definition.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"meta.function-parameters.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"markup.underline\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":\\\"markup.underline.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.1.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"heading.2.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.3.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"heading.4.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"heading.5.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"heading.6.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.punctuation.quote.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98971a\\\"}},{\\\"scope\\\":\\\"markup.punctuation.list.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"markup.inline.raw\\\",\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.quoted.double.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"source.css meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.css support.function.transform\\\",\\\"source.css support.function.timing-function\\\",\\\"source.css support.function.misc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.property-value\\\",\\\"constant.rgb-value\\\",\\\"support.property-value.scss\\\",\\\"constant.rgb-value.scss\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":[\\\"entity.name.tag.css\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"text.html entity.name.tag\\\",\\\"text.html punctuation.tag\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.js variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.ts variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.go storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.go keyword.package\\\",\\\"source.go keyword.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.go keyword.interface\\\",\\\"source.go keyword.struct\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"keyword.control.cucumber.table\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason string.double\\\",\\\"source.reason string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.reason keyword.control.less\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.reason entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason support.property-value\\\",\\\"source.reason entity.name.filename\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell variable.other.member.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.attribute.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"support.function.be.latex\\\",\\\"support.function.general.tex\\\",\\\"support.function.section.latex\\\",\\\"support.function.textbf.latex\\\",\\\"support.function.textit.latex\\\",\\\"support.function.texttt.latex\\\",\\\"support.function.emph.latex\\\",\\\"support.function.url.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.class.math.block.tex\\\",\\\"support.class.math.block.environment.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"keyword.control.preamble.latex\\\",\\\"keyword.control.include.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"support.class.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["gruvboxDarkHard"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,+isBAA2hxB,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":"#282828","activityBar.border":"#3c3836","activityBar.foreground":"#ebdbb2","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#282828","activityBarTop.foreground":"#ebdbb2","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#ebdbb2","button.hoverBackground":"#45858860","debugToolBar.background":"#282828","diffEditor.insertedTextBackground":"#b8bb2630","diffEditor.removedTextBackground":"#fb493430","dropdown.background":"#282828","dropdown.border":"#3c3836","dropdown.foreground":"#ebdbb2","editor.background":"#282828","editor.findMatchBackground":"#83a59870","editor.findMatchHighlightBackground":"#fe801930","editor.findRangeHighlightBackground":"#83a59870","editor.foreground":"#ebdbb2","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#3c383660","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#fabd2f40","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#a8998490","editorCursor.foreground":"#ebdbb2","editorError.foreground":"#cc241d","editorGhostText.background":"#665c5460","editorGroup.border":"#3c3836","editorGroup.dropBackground":"#3c383660","editorGroupHeader.noTabsBackground":"#282828","editorGroupHeader.tabsBackground":"#282828","editorGroupHeader.tabsBorder":"#3c3836","editorGutter.addedBackground":"#b8bb26","editorGutter.background":"#0000","editorGutter.deletedBackground":"#fb4934","editorGutter.modifiedBackground":"#83a598","editorHoverWidget.background":"#282828","editorHoverWidget.border":"#3c3836","editorIndentGuide.activeBackground":"#665c54","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#665c54","editorLink.activeForeground":"#ebdbb2","editorOverviewRuler.addedForeground":"#83a598","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#83a598","editorOverviewRuler.errorForeground":"#fb4934","editorOverviewRuler.findMatchForeground":"#bdae93","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#d3869b","editorOverviewRuler.modifiedForeground":"#83a598","editorOverviewRuler.rangeHighlightForeground":"#bdae93","editorOverviewRuler.selectionHighlightForeground":"#665c54","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#665c54","editorOverviewRuler.wordHighlightStrongForeground":"#665c54","editorRuler.foreground":"#a8998440","editorStickyScroll.shadow":"#50494599","editorStickyScrollHover.background":"#3c383660","editorSuggestWidget.background":"#282828","editorSuggestWidget.border":"#3c3836","editorSuggestWidget.foreground":"#ebdbb2","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#3c383660","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#a8998420","editorWidget.background":"#282828","editorWidget.border":"#3c3836","errorForeground":"#fb4934","extensionButton.prominentBackground":"#b8bb2680","extensionButton.prominentHoverBackground":"#b8bb2630","focusBorder":"#3c3836","foreground":"#ebdbb2","gitDecoration.addedResourceForeground":"#ebdbb2","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#7c6f64","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#7c6f64","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#83a598","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#d3869b","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#8ec07c","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#fabd2f","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#b8bb26","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#b8bb26","gitlens.graphMinimapMarkerLocalBranchesColor":"#83a598","gitlens.graphMinimapMarkerPullRequestsColor":"#fe8019","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#7c6f64","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#b8bb26","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#83a598","gitlens.graphScrollMarkerPullRequestsColor":"#fe8019","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#7c6f64","gitlens.graphScrollMarkerUpstreamColor":"#8ec07c","gitlens.gutterBackgroundColor":"#3c3836","gitlens.gutterForegroundColor":"#ebdbb2","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#fabd2f","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#fb4934","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#b8bb26","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#3c3836","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#282828a0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#fe8019","icon.foreground":"#ebdbb2","input.background":"#282828","input.border":"#3c3836","input.foreground":"#ebdbb2","input.placeholderForeground":"#ebdbb260","inputOption.activeBorder":"#ebdbb260","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#fb4934","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#83a598","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#fabd2f","list.activeSelectionBackground":"#3c383680","list.activeSelectionForeground":"#8ec07c","list.dropBackground":"#3c3836","list.focusBackground":"#3c3836","list.focusForeground":"#ebdbb2","list.highlightForeground":"#689d6a","list.hoverBackground":"#3c383680","list.hoverForeground":"#d5c4a1","list.inactiveSelectionBackground":"#3c383680","list.inactiveSelectionForeground":"#689d6a","menu.border":"#3c3836","menu.separatorBackground":"#3c3836","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#504945","notebook.cellEditorBackground":"#3c3836","notebook.focusedCellBorder":"#a89984","notebook.focusedEditorBorder":"#504945","panel.border":"#3c3836","panelTitle.activeForeground":"#ebdbb2","peekView.border":"#3c3836","peekViewEditor.background":"#3c383670","peekViewEditor.matchHighlightBackground":"#504945","peekViewEditorGutter.background":"#3c383670","peekViewResult.background":"#3c383670","peekViewResult.fileForeground":"#ebdbb2","peekViewResult.lineForeground":"#ebdbb2","peekViewResult.matchHighlightBackground":"#504945","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#ebdbb2","peekViewTitle.background":"#3c383670","peekViewTitleDescription.foreground":"#bdae93","peekViewTitleLabel.foreground":"#ebdbb2","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#282828","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#50494599","scrollbarSlider.hoverBackground":"#665c54","selection.background":"#689d6a80","sideBar.background":"#282828","sideBar.border":"#3c3836","sideBar.foreground":"#d5c4a1","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#ebdbb2","sideBarTitle.foreground":"#ebdbb2","statusBar.background":"#282828","statusBar.border":"#3c3836","statusBar.debuggingBackground":"#fe8019","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#282828","statusBar.foreground":"#ebdbb2","statusBar.noFolderBackground":"#282828","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#3c3836","tab.activeBorder":"#689d6a","tab.activeForeground":"#ebdbb2","tab.border":"#0000","tab.inactiveBackground":"#282828","tab.inactiveForeground":"#a89984","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#a89984","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#3c3836","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#83a598","terminal.ansiBrightCyan":"#8ec07c","terminal.ansiBrightGreen":"#b8bb26","terminal.ansiBrightMagenta":"#d3869b","terminal.ansiBrightRed":"#fb4934","terminal.ansiBrightWhite":"#ebdbb2","terminal.ansiBrightYellow":"#fabd2f","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#a89984","terminal.ansiYellow":"#d79921","terminal.background":"#282828","terminal.foreground":"#ebdbb2","textLink.activeForeground":"#458588","textLink.foreground":"#83a598","titleBar.activeBackground":"#282828","titleBar.activeForeground":"#ebdbb2","titleBar.inactiveBackground":"#282828","widget.border":"#3c3836","widget.shadow":"#28282830"},"displayName":"Gruvbox Dark Medium","name":"gruvbox-dark-medium","semanticHighlighting":true,"semanticTokenColors":{"component":"#fe8019","constant.builtin":"#d3869b","function":"#8ec07c","function.builtin":"#fe8019","method":"#8ec07c","parameter":"#83a598","property":"#83a598","property:python":"#ebdbb2","variable":"#ebdbb2"},"tokenColors":[{"settings":{"foreground":"#ebdbb2"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#d3869b"}},{"scope":"constant.rgb-value","settings":{"foreground":"#ebdbb2"}},{"scope":"entity.name.selector","settings":{"foreground":"#8ec07c"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#fabd2f"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#8ec07c"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#8ec07c"}},{"scope":"meta.preprocessor","settings":{"foreground":"#fe8019"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#b8bb26"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#b8bb26"}},{"scope":"meta.header.diff","settings":{"foreground":"#fe8019"}},{"scope":"storage","settings":{"foreground":"#fb4934"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#fe8019"}},{"scope":"string","settings":{"foreground":"#b8bb26"}},{"scope":"string.tag","settings":{"foreground":"#b8bb26"}},{"scope":"string.value","settings":{"foreground":"#b8bb26"}},{"scope":"string.regexp","settings":{"foreground":"#fe8019"}},{"scope":"string.escape","settings":{"foreground":"#fb4934"}},{"scope":"string.quasi","settings":{"foreground":"#8ec07c"}},{"scope":"string.entity","settings":{"foreground":"#b8bb26"}},{"scope":"object","settings":{"foreground":"#ebdbb2"}},{"scope":"module.node","settings":{"foreground":"#83a598"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control.module","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.operator.new","settings":{"foreground":"#fe8019"}},{"scope":"keyword.other.unit","settings":{"foreground":"#b8bb26"}},{"scope":"metatag.php","settings":{"foreground":"#fe8019"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#b8bb26"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#fabd2f"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#d3869b"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#8ec07c"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.builtin","settings":{"foreground":"#fe8019"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#d5c4a1"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#83a598"}},{"scope":"prototype","settings":{"foreground":"#d3869b"}},{"scope":["punctuation"],"settings":{"foreground":"#a89984"}},{"scope":"punctuation.quoted","settings":{"foreground":"#ebdbb2"}},{"scope":"punctuation.quasi","settings":{"foreground":"#fb4934"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#8ec07c"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#fb4934"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#fb4934"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#83a598"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#d5c4a1"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#fb4934"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#fe8019"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.directive","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.C99","settings":{"foreground":"#fabd2f"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#b8bb26"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#8ec07c"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#d3869b"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#fabd2f"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#bdae93"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#8ec07c"}},{"scope":"storage.type.java","settings":{"foreground":"#fabd2f"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#8ec07c"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#ebdbb2"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#fabd2f"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#d3869b"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fb4934"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#d3869b"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#b8bb26"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#fe8019"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#83a598"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#8ec07c"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#83a598"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#fe8019"}},{"scope":"source.css meta.selector","settings":{"foreground":"#ebdbb2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#fe8019"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#b8bb26"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#fb4934"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#83a598"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#8ec07c"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#83a598"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#ebdbb2"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#d3869b"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#bdae93"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#fb4934"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#fe8019"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#d3869b"}},{"scope":["support.class.latex"],"settings":{"foreground":"#8ec07c"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=gruvbox-dark-medium-GsRaNv29.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gruvbox-dark-medium-GsRaNv29.js","sources":["../../../../node_modules/@shikijs/themes/dist/gruvbox-dark-medium.mjs"],"sourcesContent":["/* Theme: gruvbox-dark-medium */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#282828\\\",\\\"activityBar.border\\\":\\\"#3c3836\\\",\\\"activityBar.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarBadge.background\\\":\\\"#458588\\\",\\\"activityBarBadge.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarTop.background\\\":\\\"#282828\\\",\\\"activityBarTop.foreground\\\":\\\"#ebdbb2\\\",\\\"badge.background\\\":\\\"#b16286\\\",\\\"badge.foreground\\\":\\\"#ebdbb2\\\",\\\"button.background\\\":\\\"#45858880\\\",\\\"button.foreground\\\":\\\"#ebdbb2\\\",\\\"button.hoverBackground\\\":\\\"#45858860\\\",\\\"debugToolBar.background\\\":\\\"#282828\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#b8bb2630\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#fb493430\\\",\\\"dropdown.background\\\":\\\"#282828\\\",\\\"dropdown.border\\\":\\\"#3c3836\\\",\\\"dropdown.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.background\\\":\\\"#282828\\\",\\\"editor.findMatchBackground\\\":\\\"#83a59870\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#fe801930\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#83a59870\\\",\\\"editor.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#689d6a50\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3c383660\\\",\\\"editor.lineHighlightBorder\\\":\\\"#0000\\\",\\\"editor.selectionBackground\\\":\\\"#689d6a40\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#fabd2f40\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#b16286\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#458588\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#689d6a\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#98971a\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#d79921\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#d65d0e\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#cc241d\\\",\\\"editorBracketMatch.background\\\":\\\"#92837480\\\",\\\"editorBracketMatch.border\\\":\\\"#0000\\\",\\\"editorCodeLens.foreground\\\":\\\"#a8998490\\\",\\\"editorCursor.foreground\\\":\\\"#ebdbb2\\\",\\\"editorError.foreground\\\":\\\"#cc241d\\\",\\\"editorGhostText.background\\\":\\\"#665c5460\\\",\\\"editorGroup.border\\\":\\\"#3c3836\\\",\\\"editorGroup.dropBackground\\\":\\\"#3c383660\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#282828\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#282828\\\",\\\"editorGroupHeader.tabsBorder\\\":\\\"#3c3836\\\",\\\"editorGutter.addedBackground\\\":\\\"#b8bb26\\\",\\\"editorGutter.background\\\":\\\"#0000\\\",\\\"editorGutter.deletedBackground\\\":\\\"#fb4934\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#83a598\\\",\\\"editorHoverWidget.background\\\":\\\"#282828\\\",\\\"editorHoverWidget.border\\\":\\\"#3c3836\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#665c54\\\",\\\"editorInfo.foreground\\\":\\\"#458588\\\",\\\"editorLineNumber.foreground\\\":\\\"#665c54\\\",\\\"editorLink.activeForeground\\\":\\\"#ebdbb2\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.border\\\":\\\"#0000\\\",\\\"editorOverviewRuler.commonContentForeground\\\":\\\"#928374\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#458588\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#fb4934\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#689d6a\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#d3869b\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#d79921\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#665c54\\\",\\\"editorRuler.foreground\\\":\\\"#a8998440\\\",\\\"editorStickyScroll.shadow\\\":\\\"#50494599\\\",\\\"editorStickyScrollHover.background\\\":\\\"#3c383660\\\",\\\"editorSuggestWidget.background\\\":\\\"#282828\\\",\\\"editorSuggestWidget.border\\\":\\\"#3c3836\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#ebdbb2\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#689d6a\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#3c383660\\\",\\\"editorWarning.foreground\\\":\\\"#d79921\\\",\\\"editorWhitespace.foreground\\\":\\\"#a8998420\\\",\\\"editorWidget.background\\\":\\\"#282828\\\",\\\"editorWidget.border\\\":\\\"#3c3836\\\",\\\"errorForeground\\\":\\\"#fb4934\\\",\\\"extensionButton.prominentBackground\\\":\\\"#b8bb2680\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#b8bb2630\\\",\\\"focusBorder\\\":\\\"#3c3836\\\",\\\"foreground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.addedResourceForeground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#b16286\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#cc241d\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#7c6f64\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#d79921\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#98971a\\\",\\\"gitlens.closedAutolinkedIssueIconColor\\\":\\\"#b16286\\\",\\\"gitlens.closedPullRequestIconColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.branchAheadForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.branchBehindForegroundColor\\\":\\\"#d65d0e\\\",\\\"gitlens.decorations.branchDivergedForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.branchMissingUpstreamForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.workspaceCurrentForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.workspaceRepoMissingForegroundColor\\\":\\\"#7c6f64\\\",\\\"gitlens.decorations.workspaceRepoOpenForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\\\":\\\"#928374\\\",\\\"gitlens.decorations.worktreeMissingForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphChangesColumnAddedColor\\\":\\\"#98971a\\\",\\\"gitlens.graphChangesColumnDeletedColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphLane10Color\\\":\\\"#98971a\\\",\\\"gitlens.graphLane1Color\\\":\\\"#83a598\\\",\\\"gitlens.graphLane2Color\\\":\\\"#458588\\\",\\\"gitlens.graphLane3Color\\\":\\\"#d3869b\\\",\\\"gitlens.graphLane4Color\\\":\\\"#b16286\\\",\\\"gitlens.graphLane5Color\\\":\\\"#8ec07c\\\",\\\"gitlens.graphLane6Color\\\":\\\"#689d6a\\\",\\\"gitlens.graphLane7Color\\\":\\\"#fabd2f\\\",\\\"gitlens.graphLane8Color\\\":\\\"#d79921\\\",\\\"gitlens.graphLane9Color\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerHeadColor\\\":\\\"#98971a\\\",\\\"gitlens.graphMinimapMarkerHighlightsColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphMinimapMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphMinimapMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphMinimapMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphMinimapMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphMinimapMarkerUpstreamColor\\\":\\\"#689d6a\\\",\\\"gitlens.graphScrollMarkerHeadColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphScrollMarkerHighlightsColor\\\":\\\"#d79921\\\",\\\"gitlens.graphScrollMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphScrollMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphScrollMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphScrollMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphScrollMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphScrollMarkerUpstreamColor\\\":\\\"#8ec07c\\\",\\\"gitlens.gutterBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.gutterForegroundColor\\\":\\\"#ebdbb2\\\",\\\"gitlens.gutterUncommittedForegroundColor\\\":\\\"#458588\\\",\\\"gitlens.launchpadIndicatorAttentionColor\\\":\\\"#fabd2f\\\",\\\"gitlens.launchpadIndicatorAttentionHoverColor\\\":\\\"#d79921\\\",\\\"gitlens.launchpadIndicatorBlockedColor\\\":\\\"#fb4934\\\",\\\"gitlens.launchpadIndicatorBlockedHoverColor\\\":\\\"#cc241d\\\",\\\"gitlens.launchpadIndicatorMergeableColor\\\":\\\"#b8bb26\\\",\\\"gitlens.launchpadIndicatorMergeableHoverColor\\\":\\\"#98971a\\\",\\\"gitlens.lineHighlightBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.lineHighlightOverviewRulerColor\\\":\\\"#458588\\\",\\\"gitlens.mergedPullRequestIconColor\\\":\\\"#b16286\\\",\\\"gitlens.openAutolinkedIssueIconColor\\\":\\\"#98971a\\\",\\\"gitlens.openPullRequestIconColor\\\":\\\"#98971a\\\",\\\"gitlens.trailingLineBackgroundColor\\\":\\\"#282828a0\\\",\\\"gitlens.trailingLineForegroundColor\\\":\\\"#928374a0\\\",\\\"gitlens.unpublishedChangesIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpublishedCommitIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpulledChangesIconColor\\\":\\\"#fe8019\\\",\\\"icon.foreground\\\":\\\"#ebdbb2\\\",\\\"input.background\\\":\\\"#282828\\\",\\\"input.border\\\":\\\"#3c3836\\\",\\\"input.foreground\\\":\\\"#ebdbb2\\\",\\\"input.placeholderForeground\\\":\\\"#ebdbb260\\\",\\\"inputOption.activeBorder\\\":\\\"#ebdbb260\\\",\\\"inputValidation.errorBackground\\\":\\\"#cc241d\\\",\\\"inputValidation.errorBorder\\\":\\\"#fb4934\\\",\\\"inputValidation.infoBackground\\\":\\\"#45858880\\\",\\\"inputValidation.infoBorder\\\":\\\"#83a598\\\",\\\"inputValidation.warningBackground\\\":\\\"#d79921\\\",\\\"inputValidation.warningBorder\\\":\\\"#fabd2f\\\",\\\"list.activeSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.activeSelectionForeground\\\":\\\"#8ec07c\\\",\\\"list.dropBackground\\\":\\\"#3c3836\\\",\\\"list.focusBackground\\\":\\\"#3c3836\\\",\\\"list.focusForeground\\\":\\\"#ebdbb2\\\",\\\"list.highlightForeground\\\":\\\"#689d6a\\\",\\\"list.hoverBackground\\\":\\\"#3c383680\\\",\\\"list.hoverForeground\\\":\\\"#d5c4a1\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#689d6a\\\",\\\"menu.border\\\":\\\"#3c3836\\\",\\\"menu.separatorBackground\\\":\\\"#3c3836\\\",\\\"merge.border\\\":\\\"#0000\\\",\\\"merge.currentContentBackground\\\":\\\"#45858820\\\",\\\"merge.currentHeaderBackground\\\":\\\"#45858840\\\",\\\"merge.incomingContentBackground\\\":\\\"#689d6a20\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#689d6a40\\\",\\\"notebook.cellBorderColor\\\":\\\"#504945\\\",\\\"notebook.cellEditorBackground\\\":\\\"#3c3836\\\",\\\"notebook.focusedCellBorder\\\":\\\"#a89984\\\",\\\"notebook.focusedEditorBorder\\\":\\\"#504945\\\",\\\"panel.border\\\":\\\"#3c3836\\\",\\\"panelTitle.activeForeground\\\":\\\"#ebdbb2\\\",\\\"peekView.border\\\":\\\"#3c3836\\\",\\\"peekViewEditor.background\\\":\\\"#3c383670\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewEditorGutter.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.fileForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.lineForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#45858820\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewTitle.background\\\":\\\"#3c383670\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#bdae93\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#ebdbb2\\\",\\\"progressBar.background\\\":\\\"#689d6a\\\",\\\"scmGraph.historyItemHoverDefaultLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scmGraph.historyItemHoverLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scrollbar.shadow\\\":\\\"#282828\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#689d6a\\\",\\\"scrollbarSlider.background\\\":\\\"#50494599\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#665c54\\\",\\\"selection.background\\\":\\\"#689d6a80\\\",\\\"sideBar.background\\\":\\\"#282828\\\",\\\"sideBar.border\\\":\\\"#3c3836\\\",\\\"sideBar.foreground\\\":\\\"#d5c4a1\\\",\\\"sideBarSectionHeader.background\\\":\\\"#0000\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#ebdbb2\\\",\\\"sideBarTitle.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.background\\\":\\\"#282828\\\",\\\"statusBar.border\\\":\\\"#3c3836\\\",\\\"statusBar.debuggingBackground\\\":\\\"#fe8019\\\",\\\"statusBar.debuggingBorder\\\":\\\"#0000\\\",\\\"statusBar.debuggingForeground\\\":\\\"#282828\\\",\\\"statusBar.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.noFolderBackground\\\":\\\"#282828\\\",\\\"statusBar.noFolderBorder\\\":\\\"#0000\\\",\\\"tab.activeBackground\\\":\\\"#3c3836\\\",\\\"tab.activeBorder\\\":\\\"#689d6a\\\",\\\"tab.activeForeground\\\":\\\"#ebdbb2\\\",\\\"tab.border\\\":\\\"#0000\\\",\\\"tab.inactiveBackground\\\":\\\"#282828\\\",\\\"tab.inactiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#0000\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#928374\\\",\\\"terminal.ansiBlack\\\":\\\"#3c3836\\\",\\\"terminal.ansiBlue\\\":\\\"#458588\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#928374\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#83a598\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#8ec07c\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#b8bb26\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#d3869b\\\",\\\"terminal.ansiBrightRed\\\":\\\"#fb4934\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ebdbb2\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#fabd2f\\\",\\\"terminal.ansiCyan\\\":\\\"#689d6a\\\",\\\"terminal.ansiGreen\\\":\\\"#98971a\\\",\\\"terminal.ansiMagenta\\\":\\\"#b16286\\\",\\\"terminal.ansiRed\\\":\\\"#cc241d\\\",\\\"terminal.ansiWhite\\\":\\\"#a89984\\\",\\\"terminal.ansiYellow\\\":\\\"#d79921\\\",\\\"terminal.background\\\":\\\"#282828\\\",\\\"terminal.foreground\\\":\\\"#ebdbb2\\\",\\\"textLink.activeForeground\\\":\\\"#458588\\\",\\\"textLink.foreground\\\":\\\"#83a598\\\",\\\"titleBar.activeBackground\\\":\\\"#282828\\\",\\\"titleBar.activeForeground\\\":\\\"#ebdbb2\\\",\\\"titleBar.inactiveBackground\\\":\\\"#282828\\\",\\\"widget.border\\\":\\\"#3c3836\\\",\\\"widget.shadow\\\":\\\"#28282830\\\"},\\\"displayName\\\":\\\"Gruvbox Dark Medium\\\",\\\"name\\\":\\\"gruvbox-dark-medium\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"component\\\":\\\"#fe8019\\\",\\\"constant.builtin\\\":\\\"#d3869b\\\",\\\"function\\\":\\\"#8ec07c\\\",\\\"function.builtin\\\":\\\"#fe8019\\\",\\\"method\\\":\\\"#8ec07c\\\",\\\"parameter\\\":\\\"#83a598\\\",\\\"property\\\":\\\"#83a598\\\",\\\"property:python\\\":\\\"#ebdbb2\\\",\\\"variable\\\":\\\"#ebdbb2\\\"},\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"emphasis\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"strong\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"header\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#458588\\\"}},{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":[\\\"constant\\\",\\\"support.constant\\\",\\\"variable.arguments\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"constant.rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"entity.name.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"punctuation.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#cc241d\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b16286\\\"}},{\\\"scope\\\":\\\"meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.header.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type\\\",\\\"storage.modifier\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string.escape\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"string.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.entity\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"object\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"module.node\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control.module\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.less\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d79921\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.operator.new\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"metatag.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"support.function.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"constant.sha.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"meta.type.name\\\",\\\"meta.return.type\\\",\\\"meta.return-type\\\",\\\"meta.cast\\\",\\\"meta.type.annotation\\\",\\\"support.type\\\",\\\"storage.type.cs\\\",\\\"variable.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"variable.this\\\",\\\"support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"entity.name\\\",\\\"entity.static\\\",\\\"entity.name.class.static.function\\\",\\\"entity.name.function\\\",\\\"entity.name.class\\\",\\\"entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.function\\\",\\\"entity.name.function.static\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.name.function.function-call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.builtin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"entity.name.method\\\",\\\"entity.name.method.function-call\\\",\\\"entity.name.static.function-call\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"brace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":[\\\"meta.parameter.type.variable\\\",\\\"variable.parameter\\\",\\\"variable.name\\\",\\\"variable.other\\\",\\\"variable\\\",\\\"string.constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"prototype\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#a89984\\\"}},{\\\"scope\\\":\\\"punctuation.quoted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"punctuation.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"meta.function.python\\\",\\\"entity.name.function.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"storage.type.function.python\\\",\\\"storage.modifier.declaration\\\",\\\"storage.type.class.python\\\",\\\"storage.type.string.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type.function.async.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"meta.function-call.generic\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":\\\"entity.name.function.decorator\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"constant.other.caps\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"punctuation.definition.logical-expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"string.interpolated.dollar.shell\\\",\\\"string.interpolated.backtick.shell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.directive\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.C99\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"meta.function.cs\\\",\\\"entity.name.function.cs\\\",\\\"entity.name.type.namespace.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"keyword.other.using.cs\\\",\\\"entity.name.variable.field.cs\\\",\\\"entity.name.variable.local.cs\\\",\\\"variable.other.readwrite.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"keyword.other.this.cs\\\",\\\"keyword.other.base.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"meta.scope.prerequisites\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"entity.name.function.target\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"storage.modifier.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"keyword.other.import.java\\\",\\\"keyword.other.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"storage.type.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"storage.type.annotation\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"keyword.other.documentation.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"comment.block.javadoc variable.parameter.java\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.java variable.other.object\\\",\\\"source.java variable.other.definition.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"meta.function-parameters.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"markup.underline\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":\\\"markup.underline.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.1.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"heading.2.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.3.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"heading.4.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"heading.5.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"heading.6.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.punctuation.quote.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98971a\\\"}},{\\\"scope\\\":\\\"markup.punctuation.list.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"markup.inline.raw\\\",\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.quoted.double.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"source.css meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.css support.function.transform\\\",\\\"source.css support.function.timing-function\\\",\\\"source.css support.function.misc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.property-value\\\",\\\"constant.rgb-value\\\",\\\"support.property-value.scss\\\",\\\"constant.rgb-value.scss\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":[\\\"entity.name.tag.css\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"text.html entity.name.tag\\\",\\\"text.html punctuation.tag\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.js variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.ts variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.go storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.go keyword.package\\\",\\\"source.go keyword.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.go keyword.interface\\\",\\\"source.go keyword.struct\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"keyword.control.cucumber.table\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason string.double\\\",\\\"source.reason string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.reason keyword.control.less\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.reason entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason support.property-value\\\",\\\"source.reason entity.name.filename\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell variable.other.member.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.attribute.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"support.function.be.latex\\\",\\\"support.function.general.tex\\\",\\\"support.function.section.latex\\\",\\\"support.function.textbf.latex\\\",\\\"support.function.textit.latex\\\",\\\"support.function.texttt.latex\\\",\\\"support.function.emph.latex\\\",\\\"support.function.url.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.class.math.block.tex\\\",\\\"support.class.math.block.environment.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"keyword.control.preamble.latex\\\",\\\"keyword.control.include.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"support.class.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["gruvboxDarkMedium"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,mjsBAA+hxB,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":"#32302f","activityBar.border":"#3c3836","activityBar.foreground":"#ebdbb2","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#32302f","activityBarTop.foreground":"#ebdbb2","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#ebdbb2","button.hoverBackground":"#45858860","debugToolBar.background":"#32302f","diffEditor.insertedTextBackground":"#b8bb2630","diffEditor.removedTextBackground":"#fb493430","dropdown.background":"#32302f","dropdown.border":"#3c3836","dropdown.foreground":"#ebdbb2","editor.background":"#32302f","editor.findMatchBackground":"#83a59870","editor.findMatchHighlightBackground":"#fe801930","editor.findRangeHighlightBackground":"#83a59870","editor.foreground":"#ebdbb2","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#3c383660","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#fabd2f40","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#a8998490","editorCursor.foreground":"#ebdbb2","editorError.foreground":"#cc241d","editorGhostText.background":"#665c5460","editorGroup.border":"#3c3836","editorGroup.dropBackground":"#3c383660","editorGroupHeader.noTabsBackground":"#32302f","editorGroupHeader.tabsBackground":"#32302f","editorGroupHeader.tabsBorder":"#3c3836","editorGutter.addedBackground":"#b8bb26","editorGutter.background":"#0000","editorGutter.deletedBackground":"#fb4934","editorGutter.modifiedBackground":"#83a598","editorHoverWidget.background":"#32302f","editorHoverWidget.border":"#3c3836","editorIndentGuide.activeBackground":"#665c54","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#665c54","editorLink.activeForeground":"#ebdbb2","editorOverviewRuler.addedForeground":"#83a598","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#83a598","editorOverviewRuler.errorForeground":"#fb4934","editorOverviewRuler.findMatchForeground":"#bdae93","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#d3869b","editorOverviewRuler.modifiedForeground":"#83a598","editorOverviewRuler.rangeHighlightForeground":"#bdae93","editorOverviewRuler.selectionHighlightForeground":"#665c54","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#665c54","editorOverviewRuler.wordHighlightStrongForeground":"#665c54","editorRuler.foreground":"#a8998440","editorStickyScroll.shadow":"#50494599","editorStickyScrollHover.background":"#3c383660","editorSuggestWidget.background":"#32302f","editorSuggestWidget.border":"#3c3836","editorSuggestWidget.foreground":"#ebdbb2","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#3c383660","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#a8998420","editorWidget.background":"#32302f","editorWidget.border":"#3c3836","errorForeground":"#fb4934","extensionButton.prominentBackground":"#b8bb2680","extensionButton.prominentHoverBackground":"#b8bb2630","focusBorder":"#3c3836","foreground":"#ebdbb2","gitDecoration.addedResourceForeground":"#ebdbb2","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#7c6f64","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#7c6f64","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#83a598","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#d3869b","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#8ec07c","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#fabd2f","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#b8bb26","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#b8bb26","gitlens.graphMinimapMarkerLocalBranchesColor":"#83a598","gitlens.graphMinimapMarkerPullRequestsColor":"#fe8019","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#7c6f64","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#b8bb26","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#83a598","gitlens.graphScrollMarkerPullRequestsColor":"#fe8019","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#7c6f64","gitlens.graphScrollMarkerUpstreamColor":"#8ec07c","gitlens.gutterBackgroundColor":"#3c3836","gitlens.gutterForegroundColor":"#ebdbb2","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#fabd2f","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#fb4934","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#b8bb26","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#3c3836","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#32302fa0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#fe8019","icon.foreground":"#ebdbb2","input.background":"#32302f","input.border":"#3c3836","input.foreground":"#ebdbb2","input.placeholderForeground":"#ebdbb260","inputOption.activeBorder":"#ebdbb260","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#fb4934","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#83a598","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#fabd2f","list.activeSelectionBackground":"#3c383680","list.activeSelectionForeground":"#8ec07c","list.dropBackground":"#3c3836","list.focusBackground":"#3c3836","list.focusForeground":"#ebdbb2","list.highlightForeground":"#689d6a","list.hoverBackground":"#3c383680","list.hoverForeground":"#d5c4a1","list.inactiveSelectionBackground":"#3c383680","list.inactiveSelectionForeground":"#689d6a","menu.border":"#3c3836","menu.separatorBackground":"#3c3836","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#504945","notebook.cellEditorBackground":"#3c3836","notebook.focusedCellBorder":"#a89984","notebook.focusedEditorBorder":"#504945","panel.border":"#3c3836","panelTitle.activeForeground":"#ebdbb2","peekView.border":"#3c3836","peekViewEditor.background":"#3c383670","peekViewEditor.matchHighlightBackground":"#504945","peekViewEditorGutter.background":"#3c383670","peekViewResult.background":"#3c383670","peekViewResult.fileForeground":"#ebdbb2","peekViewResult.lineForeground":"#ebdbb2","peekViewResult.matchHighlightBackground":"#504945","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#ebdbb2","peekViewTitle.background":"#3c383670","peekViewTitleDescription.foreground":"#bdae93","peekViewTitleLabel.foreground":"#ebdbb2","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#32302f","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#50494599","scrollbarSlider.hoverBackground":"#665c54","selection.background":"#689d6a80","sideBar.background":"#32302f","sideBar.border":"#3c3836","sideBar.foreground":"#d5c4a1","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#ebdbb2","sideBarTitle.foreground":"#ebdbb2","statusBar.background":"#32302f","statusBar.border":"#3c3836","statusBar.debuggingBackground":"#fe8019","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#32302f","statusBar.foreground":"#ebdbb2","statusBar.noFolderBackground":"#32302f","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#3c3836","tab.activeBorder":"#689d6a","tab.activeForeground":"#ebdbb2","tab.border":"#0000","tab.inactiveBackground":"#32302f","tab.inactiveForeground":"#a89984","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#a89984","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#3c3836","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#83a598","terminal.ansiBrightCyan":"#8ec07c","terminal.ansiBrightGreen":"#b8bb26","terminal.ansiBrightMagenta":"#d3869b","terminal.ansiBrightRed":"#fb4934","terminal.ansiBrightWhite":"#ebdbb2","terminal.ansiBrightYellow":"#fabd2f","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#a89984","terminal.ansiYellow":"#d79921","terminal.background":"#32302f","terminal.foreground":"#ebdbb2","textLink.activeForeground":"#458588","textLink.foreground":"#83a598","titleBar.activeBackground":"#32302f","titleBar.activeForeground":"#ebdbb2","titleBar.inactiveBackground":"#32302f","widget.border":"#3c3836","widget.shadow":"#32302f30"},"displayName":"Gruvbox Dark Soft","name":"gruvbox-dark-soft","semanticHighlighting":true,"semanticTokenColors":{"component":"#fe8019","constant.builtin":"#d3869b","function":"#8ec07c","function.builtin":"#fe8019","method":"#8ec07c","parameter":"#83a598","property":"#83a598","property:python":"#ebdbb2","variable":"#ebdbb2"},"tokenColors":[{"settings":{"foreground":"#ebdbb2"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#d3869b"}},{"scope":"constant.rgb-value","settings":{"foreground":"#ebdbb2"}},{"scope":"entity.name.selector","settings":{"foreground":"#8ec07c"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#fabd2f"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#8ec07c"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#8ec07c"}},{"scope":"meta.preprocessor","settings":{"foreground":"#fe8019"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#b8bb26"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#b8bb26"}},{"scope":"meta.header.diff","settings":{"foreground":"#fe8019"}},{"scope":"storage","settings":{"foreground":"#fb4934"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#fe8019"}},{"scope":"string","settings":{"foreground":"#b8bb26"}},{"scope":"string.tag","settings":{"foreground":"#b8bb26"}},{"scope":"string.value","settings":{"foreground":"#b8bb26"}},{"scope":"string.regexp","settings":{"foreground":"#fe8019"}},{"scope":"string.escape","settings":{"foreground":"#fb4934"}},{"scope":"string.quasi","settings":{"foreground":"#8ec07c"}},{"scope":"string.entity","settings":{"foreground":"#b8bb26"}},{"scope":"object","settings":{"foreground":"#ebdbb2"}},{"scope":"module.node","settings":{"foreground":"#83a598"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control","settings":{"foreground":"#fb4934"}},{"scope":"keyword.control.module","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#8ec07c"}},{"scope":"keyword.operator.new","settings":{"foreground":"#fe8019"}},{"scope":"keyword.other.unit","settings":{"foreground":"#b8bb26"}},{"scope":"metatag.php","settings":{"foreground":"#fe8019"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#b8bb26"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#fabd2f"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#d3869b"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#8ec07c"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.builtin","settings":{"foreground":"#fe8019"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#d5c4a1"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#83a598"}},{"scope":"prototype","settings":{"foreground":"#d3869b"}},{"scope":["punctuation"],"settings":{"foreground":"#a89984"}},{"scope":"punctuation.quoted","settings":{"foreground":"#ebdbb2"}},{"scope":"punctuation.quasi","settings":{"foreground":"#fb4934"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#8ec07c"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#fb4934"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#fb4934"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#83a598"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#d5c4a1"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#fb4934"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#fe8019"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#8ec07c"}},{"scope":"keyword.control.directive","settings":{"foreground":"#8ec07c"}},{"scope":"support.function.C99","settings":{"foreground":"#fabd2f"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#b8bb26"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#8ec07c"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#d3869b"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#fabd2f"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#bdae93"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#8ec07c"}},{"scope":"storage.type.java","settings":{"foreground":"#fabd2f"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#8ec07c"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#ebdbb2"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#fabd2f"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#d3869b"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fb4934"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fe8019"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#fabd2f"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b8bb26"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#83a598"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#d3869b"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#b8bb26"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#fe8019"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#83a598"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#8ec07c"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#83a598"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#fe8019"}},{"scope":"source.css meta.selector","settings":{"foreground":"#ebdbb2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#fe8019"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#b8bb26"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#fb4934"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#83a598"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#8ec07c"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#fe8019"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#83a598"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#ebdbb2"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#d3869b"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#b8bb26"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#8ec07c"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#83a598"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#fabd2f"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#bdae93"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#fe8019"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#fb4934"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#fe8019"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#d3869b"}},{"scope":["support.class.latex"],"settings":{"foreground":"#8ec07c"}}],"type":"dark"}',
9
+ ),
10
+ );
11
+ export { e as default };
12
+ //# sourceMappingURL=gruvbox-dark-soft-CVdnzihN.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gruvbox-dark-soft-CVdnzihN.js","sources":["../../../../node_modules/@shikijs/themes/dist/gruvbox-dark-soft.mjs"],"sourcesContent":["/* Theme: gruvbox-dark-soft */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.background\\\":\\\"#32302f\\\",\\\"activityBar.border\\\":\\\"#3c3836\\\",\\\"activityBar.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarBadge.background\\\":\\\"#458588\\\",\\\"activityBarBadge.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBarTop.background\\\":\\\"#32302f\\\",\\\"activityBarTop.foreground\\\":\\\"#ebdbb2\\\",\\\"badge.background\\\":\\\"#b16286\\\",\\\"badge.foreground\\\":\\\"#ebdbb2\\\",\\\"button.background\\\":\\\"#45858880\\\",\\\"button.foreground\\\":\\\"#ebdbb2\\\",\\\"button.hoverBackground\\\":\\\"#45858860\\\",\\\"debugToolBar.background\\\":\\\"#32302f\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#b8bb2630\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#fb493430\\\",\\\"dropdown.background\\\":\\\"#32302f\\\",\\\"dropdown.border\\\":\\\"#3c3836\\\",\\\"dropdown.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.background\\\":\\\"#32302f\\\",\\\"editor.findMatchBackground\\\":\\\"#83a59870\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#fe801930\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#83a59870\\\",\\\"editor.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#689d6a50\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3c383660\\\",\\\"editor.lineHighlightBorder\\\":\\\"#0000\\\",\\\"editor.selectionBackground\\\":\\\"#689d6a40\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#fabd2f40\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#b16286\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#458588\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#689d6a\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#98971a\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#d79921\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#d65d0e\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#cc241d\\\",\\\"editorBracketMatch.background\\\":\\\"#92837480\\\",\\\"editorBracketMatch.border\\\":\\\"#0000\\\",\\\"editorCodeLens.foreground\\\":\\\"#a8998490\\\",\\\"editorCursor.foreground\\\":\\\"#ebdbb2\\\",\\\"editorError.foreground\\\":\\\"#cc241d\\\",\\\"editorGhostText.background\\\":\\\"#665c5460\\\",\\\"editorGroup.border\\\":\\\"#3c3836\\\",\\\"editorGroup.dropBackground\\\":\\\"#3c383660\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#32302f\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#32302f\\\",\\\"editorGroupHeader.tabsBorder\\\":\\\"#3c3836\\\",\\\"editorGutter.addedBackground\\\":\\\"#b8bb26\\\",\\\"editorGutter.background\\\":\\\"#0000\\\",\\\"editorGutter.deletedBackground\\\":\\\"#fb4934\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#83a598\\\",\\\"editorHoverWidget.background\\\":\\\"#32302f\\\",\\\"editorHoverWidget.border\\\":\\\"#3c3836\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#665c54\\\",\\\"editorInfo.foreground\\\":\\\"#458588\\\",\\\"editorLineNumber.foreground\\\":\\\"#665c54\\\",\\\"editorLink.activeForeground\\\":\\\"#ebdbb2\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.border\\\":\\\"#0000\\\",\\\"editorOverviewRuler.commonContentForeground\\\":\\\"#928374\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#458588\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#fb4934\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#689d6a\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#d3869b\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#d79921\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#665c54\\\",\\\"editorRuler.foreground\\\":\\\"#a8998440\\\",\\\"editorStickyScroll.shadow\\\":\\\"#50494599\\\",\\\"editorStickyScrollHover.background\\\":\\\"#3c383660\\\",\\\"editorSuggestWidget.background\\\":\\\"#32302f\\\",\\\"editorSuggestWidget.border\\\":\\\"#3c3836\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#ebdbb2\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#689d6a\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#3c383660\\\",\\\"editorWarning.foreground\\\":\\\"#d79921\\\",\\\"editorWhitespace.foreground\\\":\\\"#a8998420\\\",\\\"editorWidget.background\\\":\\\"#32302f\\\",\\\"editorWidget.border\\\":\\\"#3c3836\\\",\\\"errorForeground\\\":\\\"#fb4934\\\",\\\"extensionButton.prominentBackground\\\":\\\"#b8bb2680\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#b8bb2630\\\",\\\"focusBorder\\\":\\\"#3c3836\\\",\\\"foreground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.addedResourceForeground\\\":\\\"#ebdbb2\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#b16286\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#cc241d\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#7c6f64\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#d79921\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#98971a\\\",\\\"gitlens.closedAutolinkedIssueIconColor\\\":\\\"#b16286\\\",\\\"gitlens.closedPullRequestIconColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.branchAheadForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.branchBehindForegroundColor\\\":\\\"#d65d0e\\\",\\\"gitlens.decorations.branchDivergedForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.branchMissingUpstreamForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.decorations.statusMergingOrRebasingForegroundColor\\\":\\\"#d79921\\\",\\\"gitlens.decorations.workspaceCurrentForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.workspaceRepoMissingForegroundColor\\\":\\\"#7c6f64\\\",\\\"gitlens.decorations.workspaceRepoOpenForegroundColor\\\":\\\"#98971a\\\",\\\"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor\\\":\\\"#928374\\\",\\\"gitlens.decorations.worktreeMissingForegroundColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphChangesColumnAddedColor\\\":\\\"#98971a\\\",\\\"gitlens.graphChangesColumnDeletedColor\\\":\\\"#cc241d\\\",\\\"gitlens.graphLane10Color\\\":\\\"#98971a\\\",\\\"gitlens.graphLane1Color\\\":\\\"#83a598\\\",\\\"gitlens.graphLane2Color\\\":\\\"#458588\\\",\\\"gitlens.graphLane3Color\\\":\\\"#d3869b\\\",\\\"gitlens.graphLane4Color\\\":\\\"#b16286\\\",\\\"gitlens.graphLane5Color\\\":\\\"#8ec07c\\\",\\\"gitlens.graphLane6Color\\\":\\\"#689d6a\\\",\\\"gitlens.graphLane7Color\\\":\\\"#fabd2f\\\",\\\"gitlens.graphLane8Color\\\":\\\"#d79921\\\",\\\"gitlens.graphLane9Color\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerHeadColor\\\":\\\"#98971a\\\",\\\"gitlens.graphMinimapMarkerHighlightsColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphMinimapMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphMinimapMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphMinimapMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphMinimapMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphMinimapMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphMinimapMarkerUpstreamColor\\\":\\\"#689d6a\\\",\\\"gitlens.graphScrollMarkerHeadColor\\\":\\\"#b8bb26\\\",\\\"gitlens.graphScrollMarkerHighlightsColor\\\":\\\"#d79921\\\",\\\"gitlens.graphScrollMarkerLocalBranchesColor\\\":\\\"#83a598\\\",\\\"gitlens.graphScrollMarkerPullRequestsColor\\\":\\\"#fe8019\\\",\\\"gitlens.graphScrollMarkerRemoteBranchesColor\\\":\\\"#458588\\\",\\\"gitlens.graphScrollMarkerStashesColor\\\":\\\"#b16286\\\",\\\"gitlens.graphScrollMarkerTagsColor\\\":\\\"#7c6f64\\\",\\\"gitlens.graphScrollMarkerUpstreamColor\\\":\\\"#8ec07c\\\",\\\"gitlens.gutterBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.gutterForegroundColor\\\":\\\"#ebdbb2\\\",\\\"gitlens.gutterUncommittedForegroundColor\\\":\\\"#458588\\\",\\\"gitlens.launchpadIndicatorAttentionColor\\\":\\\"#fabd2f\\\",\\\"gitlens.launchpadIndicatorAttentionHoverColor\\\":\\\"#d79921\\\",\\\"gitlens.launchpadIndicatorBlockedColor\\\":\\\"#fb4934\\\",\\\"gitlens.launchpadIndicatorBlockedHoverColor\\\":\\\"#cc241d\\\",\\\"gitlens.launchpadIndicatorMergeableColor\\\":\\\"#b8bb26\\\",\\\"gitlens.launchpadIndicatorMergeableHoverColor\\\":\\\"#98971a\\\",\\\"gitlens.lineHighlightBackgroundColor\\\":\\\"#3c3836\\\",\\\"gitlens.lineHighlightOverviewRulerColor\\\":\\\"#458588\\\",\\\"gitlens.mergedPullRequestIconColor\\\":\\\"#b16286\\\",\\\"gitlens.openAutolinkedIssueIconColor\\\":\\\"#98971a\\\",\\\"gitlens.openPullRequestIconColor\\\":\\\"#98971a\\\",\\\"gitlens.trailingLineBackgroundColor\\\":\\\"#32302fa0\\\",\\\"gitlens.trailingLineForegroundColor\\\":\\\"#928374a0\\\",\\\"gitlens.unpublishedChangesIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpublishedCommitIconColor\\\":\\\"#98971a\\\",\\\"gitlens.unpulledChangesIconColor\\\":\\\"#fe8019\\\",\\\"icon.foreground\\\":\\\"#ebdbb2\\\",\\\"input.background\\\":\\\"#32302f\\\",\\\"input.border\\\":\\\"#3c3836\\\",\\\"input.foreground\\\":\\\"#ebdbb2\\\",\\\"input.placeholderForeground\\\":\\\"#ebdbb260\\\",\\\"inputOption.activeBorder\\\":\\\"#ebdbb260\\\",\\\"inputValidation.errorBackground\\\":\\\"#cc241d\\\",\\\"inputValidation.errorBorder\\\":\\\"#fb4934\\\",\\\"inputValidation.infoBackground\\\":\\\"#45858880\\\",\\\"inputValidation.infoBorder\\\":\\\"#83a598\\\",\\\"inputValidation.warningBackground\\\":\\\"#d79921\\\",\\\"inputValidation.warningBorder\\\":\\\"#fabd2f\\\",\\\"list.activeSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.activeSelectionForeground\\\":\\\"#8ec07c\\\",\\\"list.dropBackground\\\":\\\"#3c3836\\\",\\\"list.focusBackground\\\":\\\"#3c3836\\\",\\\"list.focusForeground\\\":\\\"#ebdbb2\\\",\\\"list.highlightForeground\\\":\\\"#689d6a\\\",\\\"list.hoverBackground\\\":\\\"#3c383680\\\",\\\"list.hoverForeground\\\":\\\"#d5c4a1\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#689d6a\\\",\\\"menu.border\\\":\\\"#3c3836\\\",\\\"menu.separatorBackground\\\":\\\"#3c3836\\\",\\\"merge.border\\\":\\\"#0000\\\",\\\"merge.currentContentBackground\\\":\\\"#45858820\\\",\\\"merge.currentHeaderBackground\\\":\\\"#45858840\\\",\\\"merge.incomingContentBackground\\\":\\\"#689d6a20\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#689d6a40\\\",\\\"notebook.cellBorderColor\\\":\\\"#504945\\\",\\\"notebook.cellEditorBackground\\\":\\\"#3c3836\\\",\\\"notebook.focusedCellBorder\\\":\\\"#a89984\\\",\\\"notebook.focusedEditorBorder\\\":\\\"#504945\\\",\\\"panel.border\\\":\\\"#3c3836\\\",\\\"panelTitle.activeForeground\\\":\\\"#ebdbb2\\\",\\\"peekView.border\\\":\\\"#3c3836\\\",\\\"peekViewEditor.background\\\":\\\"#3c383670\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewEditorGutter.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.background\\\":\\\"#3c383670\\\",\\\"peekViewResult.fileForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.lineForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#504945\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#45858820\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewTitle.background\\\":\\\"#3c383670\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#bdae93\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#ebdbb2\\\",\\\"progressBar.background\\\":\\\"#689d6a\\\",\\\"scmGraph.historyItemHoverDefaultLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scmGraph.historyItemHoverLabelForeground\\\":\\\"#ebdbb2\\\",\\\"scrollbar.shadow\\\":\\\"#32302f\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#689d6a\\\",\\\"scrollbarSlider.background\\\":\\\"#50494599\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#665c54\\\",\\\"selection.background\\\":\\\"#689d6a80\\\",\\\"sideBar.background\\\":\\\"#32302f\\\",\\\"sideBar.border\\\":\\\"#3c3836\\\",\\\"sideBar.foreground\\\":\\\"#d5c4a1\\\",\\\"sideBarSectionHeader.background\\\":\\\"#0000\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#ebdbb2\\\",\\\"sideBarTitle.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.background\\\":\\\"#32302f\\\",\\\"statusBar.border\\\":\\\"#3c3836\\\",\\\"statusBar.debuggingBackground\\\":\\\"#fe8019\\\",\\\"statusBar.debuggingBorder\\\":\\\"#0000\\\",\\\"statusBar.debuggingForeground\\\":\\\"#32302f\\\",\\\"statusBar.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.noFolderBackground\\\":\\\"#32302f\\\",\\\"statusBar.noFolderBorder\\\":\\\"#0000\\\",\\\"tab.activeBackground\\\":\\\"#3c3836\\\",\\\"tab.activeBorder\\\":\\\"#689d6a\\\",\\\"tab.activeForeground\\\":\\\"#ebdbb2\\\",\\\"tab.border\\\":\\\"#0000\\\",\\\"tab.inactiveBackground\\\":\\\"#32302f\\\",\\\"tab.inactiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#0000\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#928374\\\",\\\"terminal.ansiBlack\\\":\\\"#3c3836\\\",\\\"terminal.ansiBlue\\\":\\\"#458588\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#928374\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#83a598\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#8ec07c\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#b8bb26\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#d3869b\\\",\\\"terminal.ansiBrightRed\\\":\\\"#fb4934\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ebdbb2\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#fabd2f\\\",\\\"terminal.ansiCyan\\\":\\\"#689d6a\\\",\\\"terminal.ansiGreen\\\":\\\"#98971a\\\",\\\"terminal.ansiMagenta\\\":\\\"#b16286\\\",\\\"terminal.ansiRed\\\":\\\"#cc241d\\\",\\\"terminal.ansiWhite\\\":\\\"#a89984\\\",\\\"terminal.ansiYellow\\\":\\\"#d79921\\\",\\\"terminal.background\\\":\\\"#32302f\\\",\\\"terminal.foreground\\\":\\\"#ebdbb2\\\",\\\"textLink.activeForeground\\\":\\\"#458588\\\",\\\"textLink.foreground\\\":\\\"#83a598\\\",\\\"titleBar.activeBackground\\\":\\\"#32302f\\\",\\\"titleBar.activeForeground\\\":\\\"#ebdbb2\\\",\\\"titleBar.inactiveBackground\\\":\\\"#32302f\\\",\\\"widget.border\\\":\\\"#3c3836\\\",\\\"widget.shadow\\\":\\\"#32302f30\\\"},\\\"displayName\\\":\\\"Gruvbox Dark Soft\\\",\\\"name\\\":\\\"gruvbox-dark-soft\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"component\\\":\\\"#fe8019\\\",\\\"constant.builtin\\\":\\\"#d3869b\\\",\\\"function\\\":\\\"#8ec07c\\\",\\\"function.builtin\\\":\\\"#fe8019\\\",\\\"method\\\":\\\"#8ec07c\\\",\\\"parameter\\\":\\\"#83a598\\\",\\\"property\\\":\\\"#83a598\\\",\\\"property:python\\\":\\\"#ebdbb2\\\",\\\"variable\\\":\\\"#ebdbb2\\\"},\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"emphasis\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"strong\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"header\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#458588\\\"}},{\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":[\\\"constant\\\",\\\"support.constant\\\",\\\"variable.arguments\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"constant.rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"entity.name.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"punctuation.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#cc241d\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b16286\\\"}},{\\\"scope\\\":\\\"meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.preprocessor.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"meta.header.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type\\\",\\\"storage.modifier\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"string.escape\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"string.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.entity\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"object\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"module.node\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"keyword.control.module\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.less\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d79921\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.operator.new\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"metatag.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"support.function.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"constant.sha.git-rebase\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"meta.type.name\\\",\\\"meta.return.type\\\",\\\"meta.return-type\\\",\\\"meta.cast\\\",\\\"meta.type.annotation\\\",\\\"support.type\\\",\\\"storage.type.cs\\\",\\\"variable.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"variable.this\\\",\\\"support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"entity.name\\\",\\\"entity.static\\\",\\\"entity.name.class.static.function\\\",\\\"entity.name.function\\\",\\\"entity.name.class\\\",\\\"entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"entity.function\\\",\\\"entity.name.function.static\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"entity.name.function.function-call\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.builtin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"entity.name.method\\\",\\\"entity.name.method.function-call\\\",\\\"entity.name.static.function-call\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"}},{\\\"scope\\\":\\\"brace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":[\\\"meta.parameter.type.variable\\\",\\\"variable.parameter\\\",\\\"variable.name\\\",\\\"variable.other\\\",\\\"variable\\\",\\\"string.constant.other.placeholder\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"prototype\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"punctuation\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#a89984\\\"}},{\\\"scope\\\":\\\"punctuation.quoted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"punctuation.quasi\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":[\\\"meta.function.python\\\",\\\"entity.name.function.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"storage.type.function.python\\\",\\\"storage.modifier.declaration\\\",\\\"storage.type.class.python\\\",\\\"storage.type.string.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"storage.type.function.async.python\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"meta.function-call.generic\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"meta.function-call.arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"}},{\\\"scope\\\":\\\"entity.name.function.decorator\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"constant.other.caps\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"keyword.operator.logical\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"punctuation.definition.logical-expression\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"string.interpolated.dollar.shell\\\",\\\"string.interpolated.backtick.shell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"keyword.control.directive\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"support.function.C99\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"meta.function.cs\\\",\\\"entity.name.function.cs\\\",\\\"entity.name.type.namespace.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"keyword.other.using.cs\\\",\\\"entity.name.variable.field.cs\\\",\\\"entity.name.variable.local.cs\\\",\\\"variable.other.readwrite.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"keyword.other.this.cs\\\",\\\"keyword.other.base.cs\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"meta.scope.prerequisites\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"entity.name.function.target\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"storage.modifier.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"keyword.other.import.java\\\",\\\"keyword.other.package.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"storage.type.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"storage.type.annotation\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"keyword.other.documentation.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"comment.block.javadoc variable.parameter.java\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.java variable.other.object\\\",\\\"source.java variable.other.definition.java\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"meta.function-parameters.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"markup.underline\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#928374\\\"}},{\\\"scope\\\":\\\"markup.underline.link\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.1.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":\\\"heading.2.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"heading.3.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":\\\"heading.4.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"heading.5.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"heading.6.markdown entity.name.section.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"markup.punctuation.quote.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#98971a\\\"}},{\\\"scope\\\":\\\"markup.punctuation.list.beginning\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"markup.inline.raw\\\",\\\"markup.fenced_code.block\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":\\\"string.quoted.double.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"source.css meta.selector\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.css support.function.transform\\\",\\\"source.css support.function.timing-function\\\",\\\"source.css support.function.misc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.property-value\\\",\\\"constant.rgb-value\\\",\\\"support.property-value.scss\\\",\\\"constant.rgb-value.scss\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"}},{\\\"scope\\\":[\\\"entity.name.tag.css\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.tag\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"text.html entity.name.tag\\\",\\\"text.html punctuation.tag\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.js variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.ts variable.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.go storage.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.go keyword.package\\\",\\\"source.go keyword.import\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.go keyword.interface\\\",\\\"source.go keyword.struct\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"scope\\\":[\\\"source.go entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"keyword.control.cucumber.table\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason string.double\\\",\\\"source.reason string.regexp\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"}},{\\\"scope\\\":[\\\"source.reason keyword.control.less\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}},{\\\"scope\\\":[\\\"source.reason entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"}},{\\\"scope\\\":[\\\"source.reason support.property-value\\\",\\\"source.reason entity.name.filename\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell variable.other.member.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"}},{\\\"scope\\\":[\\\"source.powershell support.function.attribute.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"}},{\\\"scope\\\":[\\\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"support.function.be.latex\\\",\\\"support.function.general.tex\\\",\\\"support.function.section.latex\\\",\\\"support.function.textbf.latex\\\",\\\"support.function.textit.latex\\\",\\\"support.function.texttt.latex\\\",\\\"support.function.emph.latex\\\",\\\"support.function.url.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"}},{\\\"scope\\\":[\\\"support.class.math.block.tex\\\",\\\"support.class.math.block.environment.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"}},{\\\"scope\\\":[\\\"keyword.control.preamble.latex\\\",\\\"keyword.control.include.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"}},{\\\"scope\\\":[\\\"support.class.latex\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["gruvboxDarkSoft"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,+isBAA2hxB,CAAC","x_google_ignoreList":[0]}