@bytespell/shella 0.1.18 → 0.2.0

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 (951) hide show
  1. package/README.md +278 -0
  2. package/dist/bin/shella-daemon.d.ts +3 -0
  3. package/dist/bin/shella-daemon.d.ts.map +1 -0
  4. package/dist/bin/shella-daemon.js +8 -0
  5. package/dist/bin/shella-daemon.js.map +1 -0
  6. package/dist/bin/shella-init.d.ts +3 -0
  7. package/dist/bin/shella-init.d.ts.map +1 -0
  8. package/dist/bin/shella-init.js +234 -0
  9. package/dist/bin/shella-init.js.map +1 -0
  10. package/dist/src/api.d.ts +3 -0
  11. package/dist/src/api.d.ts.map +1 -0
  12. package/dist/src/api.js +201 -0
  13. package/dist/src/api.js.map +1 -0
  14. package/dist/src/index.d.ts +2 -0
  15. package/dist/src/index.d.ts.map +1 -0
  16. package/dist/src/index.js +70 -0
  17. package/dist/src/index.js.map +1 -0
  18. package/dist/src/logger.d.ts +4 -0
  19. package/dist/src/logger.d.ts.map +1 -0
  20. package/dist/src/logger.js +24 -0
  21. package/dist/src/logger.js.map +1 -0
  22. package/dist/src/paths.d.ts +17 -0
  23. package/dist/src/paths.d.ts.map +1 -0
  24. package/dist/src/paths.js +34 -0
  25. package/dist/src/paths.js.map +1 -0
  26. package/dist/src/plugin-manager.d.ts +24 -0
  27. package/dist/src/plugin-manager.d.ts.map +1 -0
  28. package/dist/src/plugin-manager.js +379 -0
  29. package/dist/src/plugin-manager.js.map +1 -0
  30. package/dist/src/port-allocator.d.ts +11 -0
  31. package/dist/src/port-allocator.d.ts.map +1 -0
  32. package/dist/src/port-allocator.js +51 -0
  33. package/dist/src/port-allocator.js.map +1 -0
  34. package/dist/src/registry.d.ts +22 -0
  35. package/dist/src/registry.d.ts.map +1 -0
  36. package/dist/src/registry.js +176 -0
  37. package/dist/src/registry.js.map +1 -0
  38. package/dist/src/types.d.ts +62 -0
  39. package/dist/src/types.d.ts.map +1 -0
  40. package/dist/src/types.js +4 -0
  41. package/dist/src/types.js.map +1 -0
  42. package/dist/src/watcher.d.ts +11 -0
  43. package/dist/src/watcher.d.ts.map +1 -0
  44. package/dist/src/watcher.js +111 -0
  45. package/dist/src/watcher.js.map +1 -0
  46. package/package.json +46 -74
  47. package/templates/express/package.json +11 -0
  48. package/templates/express/public/index.html +64 -0
  49. package/templates/express/server.js +37 -0
  50. package/templates/shadcn/README.md +3 -0
  51. package/templates/shadcn/components.json +24 -0
  52. package/templates/shadcn/eslint.config.js +23 -0
  53. package/templates/shadcn/index.html +13 -0
  54. package/templates/shadcn/package.json +43 -0
  55. package/templates/shadcn/public/vite.svg +1 -0
  56. package/templates/shadcn/server.js +59 -0
  57. package/templates/shadcn/src/App.tsx +35 -0
  58. package/templates/shadcn/src/assets/react.svg +1 -0
  59. package/templates/shadcn/src/components/ui/alert-dialog.tsx +182 -0
  60. package/templates/shadcn/src/components/ui/badge.tsx +45 -0
  61. package/templates/shadcn/src/components/ui/button.tsx +60 -0
  62. package/templates/shadcn/src/components/ui/card.tsx +94 -0
  63. package/templates/shadcn/src/components/ui/combobox.tsx +294 -0
  64. package/templates/shadcn/src/components/ui/dropdown-menu.tsx +253 -0
  65. package/templates/shadcn/src/components/ui/field.tsx +225 -0
  66. package/templates/shadcn/src/components/ui/input-group.tsx +147 -0
  67. package/templates/shadcn/src/components/ui/input.tsx +19 -0
  68. package/templates/shadcn/src/components/ui/label.tsx +24 -0
  69. package/templates/shadcn/src/components/ui/select.tsx +185 -0
  70. package/templates/shadcn/src/components/ui/separator.tsx +26 -0
  71. package/templates/shadcn/src/components/ui/textarea.tsx +18 -0
  72. package/templates/shadcn/src/index.css +129 -0
  73. package/templates/shadcn/src/lib/utils.ts +6 -0
  74. package/templates/shadcn/src/main.tsx +11 -0
  75. package/templates/shadcn/tsconfig.app.json +32 -0
  76. package/templates/shadcn/tsconfig.json +13 -0
  77. package/templates/shadcn/tsconfig.node.json +26 -0
  78. package/templates/shadcn/vite.config.ts +14 -0
  79. package/templates/vanilla/package.json +8 -0
  80. package/templates/vanilla/public/index.html +64 -0
  81. package/templates/vanilla/server.js +54 -0
  82. package/dist/bin/cli.js +0 -12203
  83. package/dist/bin/cli.js.map +0 -1
  84. package/dist/index.js +0 -12123
  85. package/dist/index.js.map +0 -1
  86. package/dist/public/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  87. package/dist/public/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  88. package/dist/public/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  89. package/dist/public/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  90. package/dist/public/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  91. package/dist/public/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  92. package/dist/public/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  93. package/dist/public/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  94. package/dist/public/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  95. package/dist/public/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  96. package/dist/public/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  97. package/dist/public/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  98. package/dist/public/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  99. package/dist/public/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  100. package/dist/public/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  101. package/dist/public/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  102. package/dist/public/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  103. package/dist/public/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  104. package/dist/public/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  105. package/dist/public/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  106. package/dist/public/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  107. package/dist/public/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  108. package/dist/public/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  109. package/dist/public/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  110. package/dist/public/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  111. package/dist/public/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  112. package/dist/public/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  113. package/dist/public/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  114. package/dist/public/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  115. package/dist/public/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  116. package/dist/public/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  117. package/dist/public/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  118. package/dist/public/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  119. package/dist/public/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  120. package/dist/public/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  121. package/dist/public/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  122. package/dist/public/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  123. package/dist/public/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  124. package/dist/public/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  125. package/dist/public/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  126. package/dist/public/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  127. package/dist/public/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  128. package/dist/public/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  129. package/dist/public/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  130. package/dist/public/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  131. package/dist/public/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  132. package/dist/public/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  133. package/dist/public/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  134. package/dist/public/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  135. package/dist/public/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  136. package/dist/public/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  137. package/dist/public/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  138. package/dist/public/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  139. package/dist/public/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  140. package/dist/public/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  141. package/dist/public/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  142. package/dist/public/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  143. package/dist/public/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  144. package/dist/public/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  145. package/dist/public/assets/_baseUniq-ByOyfTSt.js +0 -1
  146. package/dist/public/assets/abap-BdImnpbu.js +0 -1
  147. package/dist/public/assets/actionscript-3-CfeIJUat.js +0 -1
  148. package/dist/public/assets/ada-bCR0ucgS.js +0 -1
  149. package/dist/public/assets/andromeeda-C-Jbm3Hp.js +0 -1
  150. package/dist/public/assets/angular-html-CU67Zn6k.js +0 -1
  151. package/dist/public/assets/angular-ts-BwZT4LLn.js +0 -1
  152. package/dist/public/assets/apache-Pmp26Uib.js +0 -1
  153. package/dist/public/assets/apex-D8_7TLub.js +0 -1
  154. package/dist/public/assets/apl-dKokRX4l.js +0 -1
  155. package/dist/public/assets/applescript-Co6uUVPk.js +0 -1
  156. package/dist/public/assets/ara-BRHolxvo.js +0 -1
  157. package/dist/public/assets/arc-DskGrXLH.js +0 -1
  158. package/dist/public/assets/architectureDiagram-VXUJARFQ-WbUu03xi.js +0 -36
  159. package/dist/public/assets/asciidoc-Dv7Oe6Be.js +0 -1
  160. package/dist/public/assets/asm-D_Q5rh1f.js +0 -1
  161. package/dist/public/assets/astro-CbQHKStN.js +0 -1
  162. package/dist/public/assets/aurora-x-D-2ljcwZ.js +0 -1
  163. package/dist/public/assets/awk-DMzUqQB5.js +0 -1
  164. package/dist/public/assets/ayu-dark-CmMr59Fi.js +0 -1
  165. package/dist/public/assets/ballerina-BFfxhgS-.js +0 -1
  166. package/dist/public/assets/bat-BkioyH1T.js +0 -1
  167. package/dist/public/assets/beancount-k_qm7-4y.js +0 -1
  168. package/dist/public/assets/berry-uYugtg8r.js +0 -1
  169. package/dist/public/assets/bibtex-CHM0blh-.js +0 -1
  170. package/dist/public/assets/bicep-Bmn6On1c.js +0 -1
  171. package/dist/public/assets/blade-D4QpJJKB.js +0 -1
  172. package/dist/public/assets/blockDiagram-VD42YOAC-4KVAiSxZ.js +0 -122
  173. package/dist/public/assets/bsl-BO_Y6i37.js +0 -1
  174. package/dist/public/assets/c-BIGW1oBm.js +0 -1
  175. package/dist/public/assets/c3-VCDPK7BO.js +0 -1
  176. package/dist/public/assets/c4Diagram-YG6GDRKO-JcXJu5BS.js +0 -10
  177. package/dist/public/assets/cadence-Bv_4Rxtq.js +0 -1
  178. package/dist/public/assets/cairo-KRGpt6FW.js +0 -1
  179. package/dist/public/assets/catppuccin-frappe-DFWUc33u.js +0 -1
  180. package/dist/public/assets/catppuccin-latte-C9dUb6Cb.js +0 -1
  181. package/dist/public/assets/catppuccin-macchiato-DQyhUUbL.js +0 -1
  182. package/dist/public/assets/catppuccin-mocha-D87Tk5Gz.js +0 -1
  183. package/dist/public/assets/channel-BdAgzAMp.js +0 -1
  184. package/dist/public/assets/chunk-4BX2VUAB-CqfDS9Sf.js +0 -1
  185. package/dist/public/assets/chunk-55IACEB6-UUyu6Y64.js +0 -1
  186. package/dist/public/assets/chunk-B4BG7PRW-C0F414xz.js +0 -165
  187. package/dist/public/assets/chunk-DI55MBZ5--p_STlY7.js +0 -220
  188. package/dist/public/assets/chunk-FMBD7UC4-CB48BS8a.js +0 -15
  189. package/dist/public/assets/chunk-QN33PNHL-vwkXbKVH.js +0 -1
  190. package/dist/public/assets/chunk-QZHKN3VN-B33xbk2M.js +0 -1
  191. package/dist/public/assets/chunk-TZMSLE5B-CLiEWPPK.js +0 -1
  192. package/dist/public/assets/clarity-D53aC0YG.js +0 -1
  193. package/dist/public/assets/classDiagram-2ON5EDUG-DFl0tfxs.js +0 -1
  194. package/dist/public/assets/classDiagram-v2-WZHVMYZB-DFl0tfxs.js +0 -1
  195. package/dist/public/assets/clojure-P80f7IUj.js +0 -1
  196. package/dist/public/assets/clone-C0W1RDRM.js +0 -1
  197. package/dist/public/assets/cmake-D1j8_8rp.js +0 -1
  198. package/dist/public/assets/cobol-nwyudZeR.js +0 -1
  199. package/dist/public/assets/code-block-IT6T5CEO-B7sxiU38.js +0 -2
  200. package/dist/public/assets/codeowners-Bp6g37R7.js +0 -1
  201. package/dist/public/assets/codeql-DsOJ9woJ.js +0 -1
  202. package/dist/public/assets/coffee-Ch7k5sss.js +0 -1
  203. package/dist/public/assets/common-lisp-Cg-RD9OK.js +0 -1
  204. package/dist/public/assets/coq-DkFqJrB1.js +0 -1
  205. package/dist/public/assets/cose-bilkent-S5V4N54A-DXzclefE.js +0 -1
  206. package/dist/public/assets/cpp-CofmeUqb.js +0 -1
  207. package/dist/public/assets/crystal-tKQVLTB8.js +0 -1
  208. package/dist/public/assets/csharp-K5feNrxe.js +0 -1
  209. package/dist/public/assets/css-DPfMkruS.js +0 -1
  210. package/dist/public/assets/csv-fuZLfV_i.js +0 -1
  211. package/dist/public/assets/cue-D82EKSYY.js +0 -1
  212. package/dist/public/assets/cypher-COkxafJQ.js +0 -1
  213. package/dist/public/assets/cytoscape.esm-5J0xJHOV.js +0 -321
  214. package/dist/public/assets/d-85-TOEBH.js +0 -1
  215. package/dist/public/assets/dagre-6UL2VRFP-BsdG-n7L.js +0 -4
  216. package/dist/public/assets/dark-plus-C3mMm8J8.js +0 -1
  217. package/dist/public/assets/dart-CF10PKvl.js +0 -1
  218. package/dist/public/assets/dax-CEL-wOlO.js +0 -1
  219. package/dist/public/assets/defaultLocale-C4B-KCzX.js +0 -1
  220. package/dist/public/assets/demo.svg +0 -1
  221. package/dist/public/assets/desktop-BmXAJ9_W.js +0 -1
  222. package/dist/public/assets/diagram-PSM6KHXK-QgD_inp5.js +0 -24
  223. package/dist/public/assets/diagram-QEK2KX5R-wzLRdwrU.js +0 -43
  224. package/dist/public/assets/diagram-S2PKOQOG-CuUvB9bN.js +0 -24
  225. package/dist/public/assets/diff-D97Zzqfu.js +0 -1
  226. package/dist/public/assets/docker-BcOcwvcX.js +0 -1
  227. package/dist/public/assets/dotenv-Da5cRb03.js +0 -1
  228. package/dist/public/assets/dracula-BzJJZx-M.js +0 -1
  229. package/dist/public/assets/dracula-soft-BXkSAIEj.js +0 -1
  230. package/dist/public/assets/dream-maker-BtqSS_iP.js +0 -1
  231. package/dist/public/assets/edge-BkV0erSs.js +0 -1
  232. package/dist/public/assets/elixir-CDX3lj18.js +0 -1
  233. package/dist/public/assets/elm-DbKCFpqz.js +0 -1
  234. package/dist/public/assets/emacs-lisp-C9XAeP06.js +0 -1
  235. package/dist/public/assets/erDiagram-Q2GNP2WA-CGklTYeV.js +0 -60
  236. package/dist/public/assets/erb-BOJIQeun.js +0 -1
  237. package/dist/public/assets/erlang-DsQrWhSR.js +0 -1
  238. package/dist/public/assets/everforest-dark-BgDCqdQA.js +0 -1
  239. package/dist/public/assets/everforest-light-C8M2exoo.js +0 -1
  240. package/dist/public/assets/fennel-BYunw83y.js +0 -1
  241. package/dist/public/assets/fish-BvzEVeQv.js +0 -1
  242. package/dist/public/assets/flowDiagram-NV44I4VS-CxjU7AVg.js +0 -162
  243. package/dist/public/assets/fluent-C4IJs8-o.js +0 -1
  244. package/dist/public/assets/fortran-fixed-form-CkoXwp7k.js +0 -1
  245. package/dist/public/assets/fortran-free-form-BxgE0vQu.js +0 -1
  246. package/dist/public/assets/fsharp-CXgrBDvD.js +0 -1
  247. package/dist/public/assets/ganttDiagram-JELNMOA3-CYpYrSPR.js +0 -267
  248. package/dist/public/assets/gdresource-B7Tvp0Sc.js +0 -1
  249. package/dist/public/assets/gdscript-DTMYz4Jt.js +0 -1
  250. package/dist/public/assets/gdshader-DkwncUOv.js +0 -1
  251. package/dist/public/assets/genie-D0YGMca9.js +0 -1
  252. package/dist/public/assets/gherkin-DyxjwDmM.js +0 -1
  253. package/dist/public/assets/git-commit-F4YmCXRG.js +0 -1
  254. package/dist/public/assets/git-rebase-r7XF79zn.js +0 -1
  255. package/dist/public/assets/gitGraphDiagram-NY62KEGX-DVNwWIcr.js +0 -65
  256. package/dist/public/assets/github-dark-DHJKELXO.js +0 -1
  257. package/dist/public/assets/github-dark-default-Cuk6v7N8.js +0 -1
  258. package/dist/public/assets/github-dark-dimmed-DH5Ifo-i.js +0 -1
  259. package/dist/public/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -1
  260. package/dist/public/assets/github-light-DAi9KRSo.js +0 -1
  261. package/dist/public/assets/github-light-default-D7oLnXFd.js +0 -1
  262. package/dist/public/assets/github-light-high-contrast-BfjtVDDH.js +0 -1
  263. package/dist/public/assets/gleam-BspZqrRM.js +0 -1
  264. package/dist/public/assets/glimmer-js-Rg0-pVw9.js +0 -1
  265. package/dist/public/assets/glimmer-ts-U6CK756n.js +0 -1
  266. package/dist/public/assets/glsl-DplSGwfg.js +0 -1
  267. package/dist/public/assets/gn-n2N0HUVH.js +0 -1
  268. package/dist/public/assets/gnuplot-DdkO51Og.js +0 -1
  269. package/dist/public/assets/go-Dn2_MT6a.js +0 -1
  270. package/dist/public/assets/graph-pflBUROZ.js +0 -1
  271. package/dist/public/assets/graphql-ChdNCCLP.js +0 -1
  272. package/dist/public/assets/groovy-gcz8RCvz.js +0 -1
  273. package/dist/public/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -1
  274. package/dist/public/assets/gruvbox-dark-medium-GsRaNv29.js +0 -1
  275. package/dist/public/assets/gruvbox-dark-soft-CVdnzihN.js +0 -1
  276. package/dist/public/assets/gruvbox-light-hard-CH1njM8p.js +0 -1
  277. package/dist/public/assets/gruvbox-light-medium-DRw_LuNl.js +0 -1
  278. package/dist/public/assets/gruvbox-light-soft-hJgmCMqR.js +0 -1
  279. package/dist/public/assets/hack-CaT9iCJl.js +0 -1
  280. package/dist/public/assets/haml-B8DHNrY2.js +0 -1
  281. package/dist/public/assets/handlebars-BL8al0AC.js +0 -1
  282. package/dist/public/assets/haskell-Df6bDoY_.js +0 -1
  283. package/dist/public/assets/haxe-CzTSHFRz.js +0 -1
  284. package/dist/public/assets/hcl-BWvSN4gD.js +0 -1
  285. package/dist/public/assets/hjson-D5-asLiD.js +0 -1
  286. package/dist/public/assets/hlsl-D3lLCCz7.js +0 -1
  287. package/dist/public/assets/houston-DnULxvSX.js +0 -1
  288. package/dist/public/assets/html-GMplVEZG.js +0 -1
  289. package/dist/public/assets/html-derivative-BFtXZ54Q.js +0 -1
  290. package/dist/public/assets/http-jrhK8wxY.js +0 -1
  291. package/dist/public/assets/hurl-irOxFIW8.js +0 -1
  292. package/dist/public/assets/hxml-Bvhsp5Yf.js +0 -1
  293. package/dist/public/assets/hy-DFXneXwc.js +0 -1
  294. package/dist/public/assets/imba-DGztddWO.js +0 -1
  295. package/dist/public/assets/index-C2YNSdOx.js +0 -1781
  296. package/dist/public/assets/index-C7JP9qmQ.css +0 -1
  297. package/dist/public/assets/index-DkE6H0eh.js +0 -23
  298. package/dist/public/assets/infoDiagram-WHAUD3N6-CrSA2woO.js +0 -2
  299. package/dist/public/assets/ini-BEwlwnbL.js +0 -1
  300. package/dist/public/assets/init-Gi6I4Gst.js +0 -1
  301. package/dist/public/assets/inter-cyrillic-400-normal-HOLc17fK.woff +0 -0
  302. package/dist/public/assets/inter-cyrillic-400-normal-obahsSVq.woff2 +0 -0
  303. package/dist/public/assets/inter-cyrillic-ext-400-normal-BQZuk6qB.woff2 +0 -0
  304. package/dist/public/assets/inter-cyrillic-ext-400-normal-DQukG94-.woff +0 -0
  305. package/dist/public/assets/inter-greek-400-normal-B4URO6DV.woff2 +0 -0
  306. package/dist/public/assets/inter-greek-400-normal-q2sYcFCs.woff +0 -0
  307. package/dist/public/assets/inter-greek-ext-400-normal-DGGRlc-M.woff2 +0 -0
  308. package/dist/public/assets/inter-greek-ext-400-normal-KugGGMne.woff +0 -0
  309. package/dist/public/assets/inter-latin-400-normal-C38fXH4l.woff2 +0 -0
  310. package/dist/public/assets/inter-latin-400-normal-CyCys3Eg.woff +0 -0
  311. package/dist/public/assets/inter-latin-ext-400-normal-77YHD8bZ.woff +0 -0
  312. package/dist/public/assets/inter-latin-ext-400-normal-C1nco2VV.woff2 +0 -0
  313. package/dist/public/assets/inter-vietnamese-400-normal-Bbgyi5SW.woff +0 -0
  314. package/dist/public/assets/inter-vietnamese-400-normal-DMkecbls.woff2 +0 -0
  315. package/dist/public/assets/java-CylS5w8V.js +0 -1
  316. package/dist/public/assets/javascript-wDzz0qaB.js +0 -1
  317. package/dist/public/assets/jinja-4LBKfQ-Z.js +0 -1
  318. package/dist/public/assets/jison-wvAkD_A8.js +0 -1
  319. package/dist/public/assets/journeyDiagram-XKPGCS4Q-CZ4u0wMW.js +0 -139
  320. package/dist/public/assets/json-Cp-IABpG.js +0 -1
  321. package/dist/public/assets/json5-C9tS-k6U.js +0 -1
  322. package/dist/public/assets/jsonc-Des-eS-w.js +0 -1
  323. package/dist/public/assets/jsonl-DcaNXYhu.js +0 -1
  324. package/dist/public/assets/jsonnet-DFQXde-d.js +0 -1
  325. package/dist/public/assets/jssm-C2t-YnRu.js +0 -1
  326. package/dist/public/assets/jsx-g9-lgVsj.js +0 -1
  327. package/dist/public/assets/julia-CxzCAyBv.js +0 -1
  328. package/dist/public/assets/kanagawa-dragon-CkXjmgJE.js +0 -1
  329. package/dist/public/assets/kanagawa-lotus-CfQXZHmo.js +0 -1
  330. package/dist/public/assets/kanagawa-wave-DWedfzmr.js +0 -1
  331. package/dist/public/assets/kanban-definition-3W4ZIXB7-B_CeXxO7.js +0 -89
  332. package/dist/public/assets/katex-DvXFAOB1.css +0 -1
  333. package/dist/public/assets/kdl-DV7GczEv.js +0 -1
  334. package/dist/public/assets/kotlin-BdnUsdx6.js +0 -1
  335. package/dist/public/assets/kusto-DZf3V79B.js +0 -1
  336. package/dist/public/assets/laserwave-DUszq2jm.js +0 -1
  337. package/dist/public/assets/latex-B4uzh10-.js +0 -1
  338. package/dist/public/assets/layout-D5ppmRxC.js +0 -1
  339. package/dist/public/assets/lean-BZvkOJ9d.js +0 -1
  340. package/dist/public/assets/less-B1dDrJ26.js +0 -1
  341. package/dist/public/assets/light-plus-B7mTdjB0.js +0 -1
  342. package/dist/public/assets/linear-CMueD_Vx.js +0 -1
  343. package/dist/public/assets/liquid-DYVedYrR.js +0 -1
  344. package/dist/public/assets/llvm-BtvRca6l.js +0 -1
  345. package/dist/public/assets/log-2UxHyX5q.js +0 -1
  346. package/dist/public/assets/logo-BtOb2qkB.js +0 -1
  347. package/dist/public/assets/lua-BbnMAYS6.js +0 -1
  348. package/dist/public/assets/luau-C-HG3fhB.js +0 -1
  349. package/dist/public/assets/make-CHLpvVh8.js +0 -1
  350. package/dist/public/assets/markdown-Cvjx9yec.js +0 -1
  351. package/dist/public/assets/marko-DZsq8hO1.js +0 -1
  352. package/dist/public/assets/material-theme-D5KoaKCx.js +0 -1
  353. package/dist/public/assets/material-theme-darker-BfHTSMKl.js +0 -1
  354. package/dist/public/assets/material-theme-lighter-B0m2ddpp.js +0 -1
  355. package/dist/public/assets/material-theme-ocean-CyktbL80.js +0 -1
  356. package/dist/public/assets/material-theme-palenight-Csfq5Kiy.js +0 -1
  357. package/dist/public/assets/matlab-D7o27uSR.js +0 -1
  358. package/dist/public/assets/mdc-DUICxH0z.js +0 -1
  359. package/dist/public/assets/mdx-Cmh6b_Ma.js +0 -1
  360. package/dist/public/assets/mermaid-mWjccvbQ.js +0 -1
  361. package/dist/public/assets/mermaid.core-TRKy42Tp.js +0 -191
  362. package/dist/public/assets/min-DXLf4jfm.js +0 -1
  363. package/dist/public/assets/min-dark-CafNBF8u.js +0 -1
  364. package/dist/public/assets/min-light-CTRr51gU.js +0 -1
  365. package/dist/public/assets/mindmap-definition-VGOIOE7T-Bz9UxRPS.js +0 -68
  366. package/dist/public/assets/mipsasm-CKIfxQSi.js +0 -1
  367. package/dist/public/assets/mojo-B93PlW-d.js +0 -1
  368. package/dist/public/assets/monokai-D4h5O-jR.js +0 -1
  369. package/dist/public/assets/moonbit-Ba13S78F.js +0 -1
  370. package/dist/public/assets/move-Bu9oaDYs.js +0 -1
  371. package/dist/public/assets/narrat-DRg8JJMk.js +0 -1
  372. package/dist/public/assets/nextflow-BrzmwbiE.js +0 -1
  373. package/dist/public/assets/nginx-DknmC5AR.js +0 -1
  374. package/dist/public/assets/night-owl-C39BiMTA.js +0 -1
  375. package/dist/public/assets/nim-CVrawwO9.js +0 -1
  376. package/dist/public/assets/nix-CwoSXNpI.js +0 -1
  377. package/dist/public/assets/nord-Ddv68eIx.js +0 -1
  378. package/dist/public/assets/nushell-C-sUppwS.js +0 -1
  379. package/dist/public/assets/objective-c-DXmwc3jG.js +0 -1
  380. package/dist/public/assets/objective-cpp-CLxacb5B.js +0 -1
  381. package/dist/public/assets/ocaml-C0hk2d4L.js +0 -1
  382. package/dist/public/assets/one-dark-pro-DVMEJ2y_.js +0 -1
  383. package/dist/public/assets/one-light-PoHY5YXO.js +0 -1
  384. package/dist/public/assets/openscad-C4EeE6gA.js +0 -1
  385. package/dist/public/assets/ordinal-Cboi1Yqb.js +0 -1
  386. package/dist/public/assets/pascal-D93ZcfNL.js +0 -1
  387. package/dist/public/assets/perl-C0TMdlhV.js +0 -1
  388. package/dist/public/assets/php-CDn_0X-4.js +0 -1
  389. package/dist/public/assets/pieDiagram-ADFJNKIX-B__3BI2u.js +0 -30
  390. package/dist/public/assets/pierre-dark-BXuwtOqb.js +0 -1
  391. package/dist/public/assets/pierre-light-dckrK0oj.js +0 -1
  392. package/dist/public/assets/pkl-u5AG7uiY.js +0 -1
  393. package/dist/public/assets/plastic-3e1v2bzS.js +0 -1
  394. package/dist/public/assets/plsql-ChMvpjG-.js +0 -1
  395. package/dist/public/assets/po-BTJTHyun.js +0 -1
  396. package/dist/public/assets/poimandres-CS3Unz2-.js +0 -1
  397. package/dist/public/assets/polar-C0HS_06l.js +0 -1
  398. package/dist/public/assets/postcss-CXtECtnM.js +0 -1
  399. package/dist/public/assets/powerquery-CEu0bR-o.js +0 -1
  400. package/dist/public/assets/powershell-Dpen1YoG.js +0 -1
  401. package/dist/public/assets/prisma-Dd19v3D-.js +0 -1
  402. package/dist/public/assets/prolog-CbFg5uaA.js +0 -1
  403. package/dist/public/assets/proto-C7zT0LnQ.js +0 -1
  404. package/dist/public/assets/pug-CGlum2m_.js +0 -1
  405. package/dist/public/assets/puppet-BMWR74SV.js +0 -1
  406. package/dist/public/assets/purescript-CklMAg4u.js +0 -1
  407. package/dist/public/assets/python-B6aJPvgy.js +0 -1
  408. package/dist/public/assets/qml-3beO22l8.js +0 -1
  409. package/dist/public/assets/qmldir-C8lEn-DE.js +0 -1
  410. package/dist/public/assets/qss-IeuSbFQv.js +0 -1
  411. package/dist/public/assets/quadrantDiagram-AYHSOK5B-KinE0zs-.js +0 -7
  412. package/dist/public/assets/r-Dspwwk_N.js +0 -1
  413. package/dist/public/assets/racket-BqYA7rlc.js +0 -1
  414. package/dist/public/assets/raku-DXvB9xmW.js +0 -1
  415. package/dist/public/assets/razor-C1TweQQi.js +0 -1
  416. package/dist/public/assets/red-bN70gL4F.js +0 -1
  417. package/dist/public/assets/reg-C-SQnVFl.js +0 -1
  418. package/dist/public/assets/regexp-CDVJQ6XC.js +0 -1
  419. package/dist/public/assets/rel-C3B-1QV4.js +0 -1
  420. package/dist/public/assets/requirementDiagram-UZGBJVZJ-BsmhVLvc.js +0 -64
  421. package/dist/public/assets/riscv-BM1_JUlF.js +0 -1
  422. package/dist/public/assets/rose-pine-dawn-DHQR4-dF.js +0 -1
  423. package/dist/public/assets/rose-pine-moon-D4_iv3hh.js +0 -1
  424. package/dist/public/assets/rose-pine-qdsjHGoJ.js +0 -1
  425. package/dist/public/assets/rosmsg-BJDFO7_C.js +0 -1
  426. package/dist/public/assets/rst-B0xPkSld.js +0 -1
  427. package/dist/public/assets/ruby-BvKwtOVI.js +0 -1
  428. package/dist/public/assets/rust-B1yitclQ.js +0 -1
  429. package/dist/public/assets/sankeyDiagram-TZEHDZUN-BsWL3jC9.js +0 -10
  430. package/dist/public/assets/sas-cz2c8ADy.js +0 -1
  431. package/dist/public/assets/sass-Cj5Yp3dK.js +0 -1
  432. package/dist/public/assets/scala-C151Ov-r.js +0 -1
  433. package/dist/public/assets/scheme-C98Dy4si.js +0 -1
  434. package/dist/public/assets/scss-OYdSNvt2.js +0 -1
  435. package/dist/public/assets/sdbl-DVxCFoDh.js +0 -1
  436. package/dist/public/assets/sequenceDiagram-WL72ISMW-D7F2tlFl.js +0 -145
  437. package/dist/public/assets/shaderlab-Dg9Lc6iA.js +0 -1
  438. package/dist/public/assets/shellscript-Yzrsuije.js +0 -1
  439. package/dist/public/assets/shellsession-BADoaaVG.js +0 -1
  440. package/dist/public/assets/slack-dark-BthQWCQV.js +0 -1
  441. package/dist/public/assets/slack-ochin-DqwNpetd.js +0 -1
  442. package/dist/public/assets/smalltalk-BERRCDM3.js +0 -1
  443. package/dist/public/assets/snazzy-light-Bw305WKR.js +0 -1
  444. package/dist/public/assets/solarized-dark-DXbdFlpD.js +0 -1
  445. package/dist/public/assets/solarized-light-L9t79GZl.js +0 -1
  446. package/dist/public/assets/solidity-rGO070M0.js +0 -1
  447. package/dist/public/assets/soy-Brmx7dQM.js +0 -1
  448. package/dist/public/assets/sparql-rVzFXLq3.js +0 -1
  449. package/dist/public/assets/splunk-BtCnVYZw.js +0 -1
  450. package/dist/public/assets/sql-BLtJtn59.js +0 -1
  451. package/dist/public/assets/ssh-config-_ykCGR6B.js +0 -1
  452. package/dist/public/assets/stata-BH5u7GGu.js +0 -1
  453. package/dist/public/assets/stateDiagram-FKZM4ZOC-ChtT7kWx.js +0 -1
  454. package/dist/public/assets/stateDiagram-v2-4FDKWEC3-owa6FG7W.js +0 -1
  455. package/dist/public/assets/stylus-BEDo0Tqx.js +0 -1
  456. package/dist/public/assets/svelte-zxCyuUbr.js +0 -1
  457. package/dist/public/assets/swift-Dg5xB15N.js +0 -1
  458. package/dist/public/assets/synthwave-84-CbfX1IO0.js +0 -1
  459. package/dist/public/assets/system-verilog-CnnmHF94.js +0 -1
  460. package/dist/public/assets/systemd-4A_iFExJ.js +0 -1
  461. package/dist/public/assets/talonscript-CkByrt1z.js +0 -1
  462. package/dist/public/assets/tasl-QIJgUcNo.js +0 -1
  463. package/dist/public/assets/tcl-dwOrl1Do.js +0 -1
  464. package/dist/public/assets/templ-W15q3VgB.js +0 -1
  465. package/dist/public/assets/terraform-BETggiCN.js +0 -1
  466. package/dist/public/assets/tex-CvyZ59Mk.js +0 -1
  467. package/dist/public/assets/timeline-definition-IT6M3QCI-B0yUYz0D.js +0 -61
  468. package/dist/public/assets/tokyo-night-hegEt444.js +0 -1
  469. package/dist/public/assets/toml-vGWfd6FD.js +0 -1
  470. package/dist/public/assets/treemap-KMMF4GRG-8kxwYcwm.js +0 -128
  471. package/dist/public/assets/ts-tags-zn1MmPIZ.js +0 -1
  472. package/dist/public/assets/tsv-B_m7g4N7.js +0 -1
  473. package/dist/public/assets/tsx-COt5Ahok.js +0 -1
  474. package/dist/public/assets/turtle-BsS91CYL.js +0 -1
  475. package/dist/public/assets/twig-CO9l9SDP.js +0 -1
  476. package/dist/public/assets/typescript-BPQ3VLAy.js +0 -1
  477. package/dist/public/assets/typespec-BGHnOYBU.js +0 -1
  478. package/dist/public/assets/typst-DHCkPAjA.js +0 -1
  479. package/dist/public/assets/v-BcVCzyr7.js +0 -1
  480. package/dist/public/assets/vala-CsfeWuGM.js +0 -1
  481. package/dist/public/assets/vb-D17OF-Vu.js +0 -1
  482. package/dist/public/assets/verilog-BQ8w6xss.js +0 -1
  483. package/dist/public/assets/vesper-DU1UobuO.js +0 -1
  484. package/dist/public/assets/vhdl-CeAyd5Ju.js +0 -1
  485. package/dist/public/assets/viml-CJc9bBzg.js +0 -1
  486. package/dist/public/assets/vitesse-black-Bkuqu6BP.js +0 -1
  487. package/dist/public/assets/vitesse-dark-D0r3Knsf.js +0 -1
  488. package/dist/public/assets/vitesse-light-CVO1_9PV.js +0 -1
  489. package/dist/public/assets/vue-DN_0RTcg.js +0 -1
  490. package/dist/public/assets/vue-html-AaS7Mt5G.js +0 -1
  491. package/dist/public/assets/vue-vine-CQOfvN7w.js +0 -1
  492. package/dist/public/assets/vyper-CDx5xZoG.js +0 -1
  493. package/dist/public/assets/wasm-CG6Dc4jp.js +0 -1
  494. package/dist/public/assets/wasm-MzD3tlZU.js +0 -1
  495. package/dist/public/assets/wenyan-BV7otONQ.js +0 -1
  496. package/dist/public/assets/wgsl-Dx-B1_4e.js +0 -1
  497. package/dist/public/assets/wikitext-BhOHFoWU.js +0 -1
  498. package/dist/public/assets/wit-5i3qLPDT.js +0 -1
  499. package/dist/public/assets/wolfram-lXgVvXCa.js +0 -1
  500. package/dist/public/assets/xml-sdJ4AIDG.js +0 -1
  501. package/dist/public/assets/xsl-CtQFsRM5.js +0 -1
  502. package/dist/public/assets/xychartDiagram-PRI3JC2R-Bm8prpCy.js +0 -7
  503. package/dist/public/assets/yaml-Buea-lGh.js +0 -1
  504. package/dist/public/assets/zenscript-DVFEvuxE.js +0 -1
  505. package/dist/public/assets/zig-VOosw3JB.js +0 -1
  506. package/dist/public/favicon-16.ico +0 -0
  507. package/dist/public/favicon-32.ico +0 -0
  508. package/dist/public/favicon-48.ico +0 -0
  509. package/dist/public/favicon.svg +0 -4
  510. package/dist/public/index.html +0 -33
  511. package/dist/public/logo-1024.png +0 -0
  512. package/dist/public/logo-128.png +0 -0
  513. package/dist/public/logo-16.png +0 -0
  514. package/dist/public/logo-256.png +0 -0
  515. package/dist/public/logo-32.png +0 -0
  516. package/dist/public/logo-48.png +0 -0
  517. package/dist/public/logo-512.png +0 -0
  518. package/dist/public/logo-64.png +0 -0
  519. package/public/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2 +0 -0
  520. package/public/assets/KaTeX_AMS-Regular-DMm9YOAa.woff +0 -0
  521. package/public/assets/KaTeX_AMS-Regular-DRggAlZN.ttf +0 -0
  522. package/public/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf +0 -0
  523. package/public/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff +0 -0
  524. package/public/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2 +0 -0
  525. package/public/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff +0 -0
  526. package/public/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2 +0 -0
  527. package/public/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf +0 -0
  528. package/public/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf +0 -0
  529. package/public/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff +0 -0
  530. package/public/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2 +0 -0
  531. package/public/assets/KaTeX_Fraktur-Regular-CB_wures.ttf +0 -0
  532. package/public/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2 +0 -0
  533. package/public/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff +0 -0
  534. package/public/assets/KaTeX_Main-Bold-Cx986IdX.woff2 +0 -0
  535. package/public/assets/KaTeX_Main-Bold-Jm3AIy58.woff +0 -0
  536. package/public/assets/KaTeX_Main-Bold-waoOVXN0.ttf +0 -0
  537. package/public/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2 +0 -0
  538. package/public/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf +0 -0
  539. package/public/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff +0 -0
  540. package/public/assets/KaTeX_Main-Italic-3WenGoN9.ttf +0 -0
  541. package/public/assets/KaTeX_Main-Italic-BMLOBm91.woff +0 -0
  542. package/public/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2 +0 -0
  543. package/public/assets/KaTeX_Main-Regular-B22Nviop.woff2 +0 -0
  544. package/public/assets/KaTeX_Main-Regular-Dr94JaBh.woff +0 -0
  545. package/public/assets/KaTeX_Main-Regular-ypZvNtVU.ttf +0 -0
  546. package/public/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf +0 -0
  547. package/public/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2 +0 -0
  548. package/public/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff +0 -0
  549. package/public/assets/KaTeX_Math-Italic-DA0__PXp.woff +0 -0
  550. package/public/assets/KaTeX_Math-Italic-flOr_0UB.ttf +0 -0
  551. package/public/assets/KaTeX_Math-Italic-t53AETM-.woff2 +0 -0
  552. package/public/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf +0 -0
  553. package/public/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2 +0 -0
  554. package/public/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff +0 -0
  555. package/public/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2 +0 -0
  556. package/public/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff +0 -0
  557. package/public/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf +0 -0
  558. package/public/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf +0 -0
  559. package/public/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff +0 -0
  560. package/public/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2 +0 -0
  561. package/public/assets/KaTeX_Script-Regular-C5JkGWo-.ttf +0 -0
  562. package/public/assets/KaTeX_Script-Regular-D3wIWfF6.woff2 +0 -0
  563. package/public/assets/KaTeX_Script-Regular-D5yQViql.woff +0 -0
  564. package/public/assets/KaTeX_Size1-Regular-C195tn64.woff +0 -0
  565. package/public/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf +0 -0
  566. package/public/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2 +0 -0
  567. package/public/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf +0 -0
  568. package/public/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2 +0 -0
  569. package/public/assets/KaTeX_Size2-Regular-oD1tc_U0.woff +0 -0
  570. package/public/assets/KaTeX_Size3-Regular-CTq5MqoE.woff +0 -0
  571. package/public/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf +0 -0
  572. package/public/assets/KaTeX_Size4-Regular-BF-4gkZK.woff +0 -0
  573. package/public/assets/KaTeX_Size4-Regular-DWFBv043.ttf +0 -0
  574. package/public/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2 +0 -0
  575. package/public/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff +0 -0
  576. package/public/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2 +0 -0
  577. package/public/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf +0 -0
  578. package/public/assets/_baseUniq-ByOyfTSt.js +0 -1
  579. package/public/assets/abap-BdImnpbu.js +0 -1
  580. package/public/assets/actionscript-3-CfeIJUat.js +0 -1
  581. package/public/assets/ada-bCR0ucgS.js +0 -1
  582. package/public/assets/andromeeda-C-Jbm3Hp.js +0 -1
  583. package/public/assets/angular-html-CU67Zn6k.js +0 -1
  584. package/public/assets/angular-ts-BwZT4LLn.js +0 -1
  585. package/public/assets/apache-Pmp26Uib.js +0 -1
  586. package/public/assets/apex-D8_7TLub.js +0 -1
  587. package/public/assets/apl-dKokRX4l.js +0 -1
  588. package/public/assets/applescript-Co6uUVPk.js +0 -1
  589. package/public/assets/ara-BRHolxvo.js +0 -1
  590. package/public/assets/arc-DskGrXLH.js +0 -1
  591. package/public/assets/architectureDiagram-VXUJARFQ-WbUu03xi.js +0 -36
  592. package/public/assets/asciidoc-Dv7Oe6Be.js +0 -1
  593. package/public/assets/asm-D_Q5rh1f.js +0 -1
  594. package/public/assets/astro-CbQHKStN.js +0 -1
  595. package/public/assets/aurora-x-D-2ljcwZ.js +0 -1
  596. package/public/assets/awk-DMzUqQB5.js +0 -1
  597. package/public/assets/ayu-dark-CmMr59Fi.js +0 -1
  598. package/public/assets/ballerina-BFfxhgS-.js +0 -1
  599. package/public/assets/bat-BkioyH1T.js +0 -1
  600. package/public/assets/beancount-k_qm7-4y.js +0 -1
  601. package/public/assets/berry-uYugtg8r.js +0 -1
  602. package/public/assets/bibtex-CHM0blh-.js +0 -1
  603. package/public/assets/bicep-Bmn6On1c.js +0 -1
  604. package/public/assets/blade-D4QpJJKB.js +0 -1
  605. package/public/assets/blockDiagram-VD42YOAC-4KVAiSxZ.js +0 -122
  606. package/public/assets/bsl-BO_Y6i37.js +0 -1
  607. package/public/assets/c-BIGW1oBm.js +0 -1
  608. package/public/assets/c3-VCDPK7BO.js +0 -1
  609. package/public/assets/c4Diagram-YG6GDRKO-JcXJu5BS.js +0 -10
  610. package/public/assets/cadence-Bv_4Rxtq.js +0 -1
  611. package/public/assets/cairo-KRGpt6FW.js +0 -1
  612. package/public/assets/catppuccin-frappe-DFWUc33u.js +0 -1
  613. package/public/assets/catppuccin-latte-C9dUb6Cb.js +0 -1
  614. package/public/assets/catppuccin-macchiato-DQyhUUbL.js +0 -1
  615. package/public/assets/catppuccin-mocha-D87Tk5Gz.js +0 -1
  616. package/public/assets/channel-BdAgzAMp.js +0 -1
  617. package/public/assets/chunk-4BX2VUAB-CqfDS9Sf.js +0 -1
  618. package/public/assets/chunk-55IACEB6-UUyu6Y64.js +0 -1
  619. package/public/assets/chunk-B4BG7PRW-C0F414xz.js +0 -165
  620. package/public/assets/chunk-DI55MBZ5--p_STlY7.js +0 -220
  621. package/public/assets/chunk-FMBD7UC4-CB48BS8a.js +0 -15
  622. package/public/assets/chunk-QN33PNHL-vwkXbKVH.js +0 -1
  623. package/public/assets/chunk-QZHKN3VN-B33xbk2M.js +0 -1
  624. package/public/assets/chunk-TZMSLE5B-CLiEWPPK.js +0 -1
  625. package/public/assets/clarity-D53aC0YG.js +0 -1
  626. package/public/assets/classDiagram-2ON5EDUG-DFl0tfxs.js +0 -1
  627. package/public/assets/classDiagram-v2-WZHVMYZB-DFl0tfxs.js +0 -1
  628. package/public/assets/clojure-P80f7IUj.js +0 -1
  629. package/public/assets/clone-C0W1RDRM.js +0 -1
  630. package/public/assets/cmake-D1j8_8rp.js +0 -1
  631. package/public/assets/cobol-nwyudZeR.js +0 -1
  632. package/public/assets/code-block-IT6T5CEO-B7sxiU38.js +0 -2
  633. package/public/assets/codeowners-Bp6g37R7.js +0 -1
  634. package/public/assets/codeql-DsOJ9woJ.js +0 -1
  635. package/public/assets/coffee-Ch7k5sss.js +0 -1
  636. package/public/assets/common-lisp-Cg-RD9OK.js +0 -1
  637. package/public/assets/coq-DkFqJrB1.js +0 -1
  638. package/public/assets/cose-bilkent-S5V4N54A-DXzclefE.js +0 -1
  639. package/public/assets/cpp-CofmeUqb.js +0 -1
  640. package/public/assets/crystal-tKQVLTB8.js +0 -1
  641. package/public/assets/csharp-K5feNrxe.js +0 -1
  642. package/public/assets/css-DPfMkruS.js +0 -1
  643. package/public/assets/csv-fuZLfV_i.js +0 -1
  644. package/public/assets/cue-D82EKSYY.js +0 -1
  645. package/public/assets/cypher-COkxafJQ.js +0 -1
  646. package/public/assets/cytoscape.esm-5J0xJHOV.js +0 -321
  647. package/public/assets/d-85-TOEBH.js +0 -1
  648. package/public/assets/dagre-6UL2VRFP-BsdG-n7L.js +0 -4
  649. package/public/assets/dark-plus-C3mMm8J8.js +0 -1
  650. package/public/assets/dart-CF10PKvl.js +0 -1
  651. package/public/assets/dax-CEL-wOlO.js +0 -1
  652. package/public/assets/defaultLocale-C4B-KCzX.js +0 -1
  653. package/public/assets/demo.svg +0 -1
  654. package/public/assets/desktop-BmXAJ9_W.js +0 -1
  655. package/public/assets/diagram-PSM6KHXK-QgD_inp5.js +0 -24
  656. package/public/assets/diagram-QEK2KX5R-wzLRdwrU.js +0 -43
  657. package/public/assets/diagram-S2PKOQOG-CuUvB9bN.js +0 -24
  658. package/public/assets/diff-D97Zzqfu.js +0 -1
  659. package/public/assets/docker-BcOcwvcX.js +0 -1
  660. package/public/assets/dotenv-Da5cRb03.js +0 -1
  661. package/public/assets/dracula-BzJJZx-M.js +0 -1
  662. package/public/assets/dracula-soft-BXkSAIEj.js +0 -1
  663. package/public/assets/dream-maker-BtqSS_iP.js +0 -1
  664. package/public/assets/edge-BkV0erSs.js +0 -1
  665. package/public/assets/elixir-CDX3lj18.js +0 -1
  666. package/public/assets/elm-DbKCFpqz.js +0 -1
  667. package/public/assets/emacs-lisp-C9XAeP06.js +0 -1
  668. package/public/assets/erDiagram-Q2GNP2WA-CGklTYeV.js +0 -60
  669. package/public/assets/erb-BOJIQeun.js +0 -1
  670. package/public/assets/erlang-DsQrWhSR.js +0 -1
  671. package/public/assets/everforest-dark-BgDCqdQA.js +0 -1
  672. package/public/assets/everforest-light-C8M2exoo.js +0 -1
  673. package/public/assets/fennel-BYunw83y.js +0 -1
  674. package/public/assets/fish-BvzEVeQv.js +0 -1
  675. package/public/assets/flowDiagram-NV44I4VS-CxjU7AVg.js +0 -162
  676. package/public/assets/fluent-C4IJs8-o.js +0 -1
  677. package/public/assets/fortran-fixed-form-CkoXwp7k.js +0 -1
  678. package/public/assets/fortran-free-form-BxgE0vQu.js +0 -1
  679. package/public/assets/fsharp-CXgrBDvD.js +0 -1
  680. package/public/assets/ganttDiagram-JELNMOA3-CYpYrSPR.js +0 -267
  681. package/public/assets/gdresource-B7Tvp0Sc.js +0 -1
  682. package/public/assets/gdscript-DTMYz4Jt.js +0 -1
  683. package/public/assets/gdshader-DkwncUOv.js +0 -1
  684. package/public/assets/genie-D0YGMca9.js +0 -1
  685. package/public/assets/gherkin-DyxjwDmM.js +0 -1
  686. package/public/assets/git-commit-F4YmCXRG.js +0 -1
  687. package/public/assets/git-rebase-r7XF79zn.js +0 -1
  688. package/public/assets/gitGraphDiagram-NY62KEGX-DVNwWIcr.js +0 -65
  689. package/public/assets/github-dark-DHJKELXO.js +0 -1
  690. package/public/assets/github-dark-default-Cuk6v7N8.js +0 -1
  691. package/public/assets/github-dark-dimmed-DH5Ifo-i.js +0 -1
  692. package/public/assets/github-dark-high-contrast-E3gJ1_iC.js +0 -1
  693. package/public/assets/github-light-DAi9KRSo.js +0 -1
  694. package/public/assets/github-light-default-D7oLnXFd.js +0 -1
  695. package/public/assets/github-light-high-contrast-BfjtVDDH.js +0 -1
  696. package/public/assets/gleam-BspZqrRM.js +0 -1
  697. package/public/assets/glimmer-js-Rg0-pVw9.js +0 -1
  698. package/public/assets/glimmer-ts-U6CK756n.js +0 -1
  699. package/public/assets/glsl-DplSGwfg.js +0 -1
  700. package/public/assets/gn-n2N0HUVH.js +0 -1
  701. package/public/assets/gnuplot-DdkO51Og.js +0 -1
  702. package/public/assets/go-Dn2_MT6a.js +0 -1
  703. package/public/assets/graph-pflBUROZ.js +0 -1
  704. package/public/assets/graphql-ChdNCCLP.js +0 -1
  705. package/public/assets/groovy-gcz8RCvz.js +0 -1
  706. package/public/assets/gruvbox-dark-hard-CFHQjOhq.js +0 -1
  707. package/public/assets/gruvbox-dark-medium-GsRaNv29.js +0 -1
  708. package/public/assets/gruvbox-dark-soft-CVdnzihN.js +0 -1
  709. package/public/assets/gruvbox-light-hard-CH1njM8p.js +0 -1
  710. package/public/assets/gruvbox-light-medium-DRw_LuNl.js +0 -1
  711. package/public/assets/gruvbox-light-soft-hJgmCMqR.js +0 -1
  712. package/public/assets/hack-CaT9iCJl.js +0 -1
  713. package/public/assets/haml-B8DHNrY2.js +0 -1
  714. package/public/assets/handlebars-BL8al0AC.js +0 -1
  715. package/public/assets/haskell-Df6bDoY_.js +0 -1
  716. package/public/assets/haxe-CzTSHFRz.js +0 -1
  717. package/public/assets/hcl-BWvSN4gD.js +0 -1
  718. package/public/assets/hjson-D5-asLiD.js +0 -1
  719. package/public/assets/hlsl-D3lLCCz7.js +0 -1
  720. package/public/assets/houston-DnULxvSX.js +0 -1
  721. package/public/assets/html-GMplVEZG.js +0 -1
  722. package/public/assets/html-derivative-BFtXZ54Q.js +0 -1
  723. package/public/assets/http-jrhK8wxY.js +0 -1
  724. package/public/assets/hurl-irOxFIW8.js +0 -1
  725. package/public/assets/hxml-Bvhsp5Yf.js +0 -1
  726. package/public/assets/hy-DFXneXwc.js +0 -1
  727. package/public/assets/imba-DGztddWO.js +0 -1
  728. package/public/assets/index-C2YNSdOx.js +0 -1781
  729. package/public/assets/index-C7JP9qmQ.css +0 -1
  730. package/public/assets/index-DkE6H0eh.js +0 -23
  731. package/public/assets/infoDiagram-WHAUD3N6-CrSA2woO.js +0 -2
  732. package/public/assets/ini-BEwlwnbL.js +0 -1
  733. package/public/assets/init-Gi6I4Gst.js +0 -1
  734. package/public/assets/inter-cyrillic-400-normal-HOLc17fK.woff +0 -0
  735. package/public/assets/inter-cyrillic-400-normal-obahsSVq.woff2 +0 -0
  736. package/public/assets/inter-cyrillic-ext-400-normal-BQZuk6qB.woff2 +0 -0
  737. package/public/assets/inter-cyrillic-ext-400-normal-DQukG94-.woff +0 -0
  738. package/public/assets/inter-greek-400-normal-B4URO6DV.woff2 +0 -0
  739. package/public/assets/inter-greek-400-normal-q2sYcFCs.woff +0 -0
  740. package/public/assets/inter-greek-ext-400-normal-DGGRlc-M.woff2 +0 -0
  741. package/public/assets/inter-greek-ext-400-normal-KugGGMne.woff +0 -0
  742. package/public/assets/inter-latin-400-normal-C38fXH4l.woff2 +0 -0
  743. package/public/assets/inter-latin-400-normal-CyCys3Eg.woff +0 -0
  744. package/public/assets/inter-latin-ext-400-normal-77YHD8bZ.woff +0 -0
  745. package/public/assets/inter-latin-ext-400-normal-C1nco2VV.woff2 +0 -0
  746. package/public/assets/inter-vietnamese-400-normal-Bbgyi5SW.woff +0 -0
  747. package/public/assets/inter-vietnamese-400-normal-DMkecbls.woff2 +0 -0
  748. package/public/assets/java-CylS5w8V.js +0 -1
  749. package/public/assets/javascript-wDzz0qaB.js +0 -1
  750. package/public/assets/jinja-4LBKfQ-Z.js +0 -1
  751. package/public/assets/jison-wvAkD_A8.js +0 -1
  752. package/public/assets/journeyDiagram-XKPGCS4Q-CZ4u0wMW.js +0 -139
  753. package/public/assets/json-Cp-IABpG.js +0 -1
  754. package/public/assets/json5-C9tS-k6U.js +0 -1
  755. package/public/assets/jsonc-Des-eS-w.js +0 -1
  756. package/public/assets/jsonl-DcaNXYhu.js +0 -1
  757. package/public/assets/jsonnet-DFQXde-d.js +0 -1
  758. package/public/assets/jssm-C2t-YnRu.js +0 -1
  759. package/public/assets/jsx-g9-lgVsj.js +0 -1
  760. package/public/assets/julia-CxzCAyBv.js +0 -1
  761. package/public/assets/kanagawa-dragon-CkXjmgJE.js +0 -1
  762. package/public/assets/kanagawa-lotus-CfQXZHmo.js +0 -1
  763. package/public/assets/kanagawa-wave-DWedfzmr.js +0 -1
  764. package/public/assets/kanban-definition-3W4ZIXB7-B_CeXxO7.js +0 -89
  765. package/public/assets/katex-DvXFAOB1.css +0 -1
  766. package/public/assets/kdl-DV7GczEv.js +0 -1
  767. package/public/assets/kotlin-BdnUsdx6.js +0 -1
  768. package/public/assets/kusto-DZf3V79B.js +0 -1
  769. package/public/assets/laserwave-DUszq2jm.js +0 -1
  770. package/public/assets/latex-B4uzh10-.js +0 -1
  771. package/public/assets/layout-D5ppmRxC.js +0 -1
  772. package/public/assets/lean-BZvkOJ9d.js +0 -1
  773. package/public/assets/less-B1dDrJ26.js +0 -1
  774. package/public/assets/light-plus-B7mTdjB0.js +0 -1
  775. package/public/assets/linear-CMueD_Vx.js +0 -1
  776. package/public/assets/liquid-DYVedYrR.js +0 -1
  777. package/public/assets/llvm-BtvRca6l.js +0 -1
  778. package/public/assets/log-2UxHyX5q.js +0 -1
  779. package/public/assets/logo-BtOb2qkB.js +0 -1
  780. package/public/assets/lua-BbnMAYS6.js +0 -1
  781. package/public/assets/luau-C-HG3fhB.js +0 -1
  782. package/public/assets/make-CHLpvVh8.js +0 -1
  783. package/public/assets/markdown-Cvjx9yec.js +0 -1
  784. package/public/assets/marko-DZsq8hO1.js +0 -1
  785. package/public/assets/material-theme-D5KoaKCx.js +0 -1
  786. package/public/assets/material-theme-darker-BfHTSMKl.js +0 -1
  787. package/public/assets/material-theme-lighter-B0m2ddpp.js +0 -1
  788. package/public/assets/material-theme-ocean-CyktbL80.js +0 -1
  789. package/public/assets/material-theme-palenight-Csfq5Kiy.js +0 -1
  790. package/public/assets/matlab-D7o27uSR.js +0 -1
  791. package/public/assets/mdc-DUICxH0z.js +0 -1
  792. package/public/assets/mdx-Cmh6b_Ma.js +0 -1
  793. package/public/assets/mermaid-mWjccvbQ.js +0 -1
  794. package/public/assets/mermaid.core-TRKy42Tp.js +0 -191
  795. package/public/assets/min-DXLf4jfm.js +0 -1
  796. package/public/assets/min-dark-CafNBF8u.js +0 -1
  797. package/public/assets/min-light-CTRr51gU.js +0 -1
  798. package/public/assets/mindmap-definition-VGOIOE7T-Bz9UxRPS.js +0 -68
  799. package/public/assets/mipsasm-CKIfxQSi.js +0 -1
  800. package/public/assets/mojo-B93PlW-d.js +0 -1
  801. package/public/assets/monokai-D4h5O-jR.js +0 -1
  802. package/public/assets/moonbit-Ba13S78F.js +0 -1
  803. package/public/assets/move-Bu9oaDYs.js +0 -1
  804. package/public/assets/narrat-DRg8JJMk.js +0 -1
  805. package/public/assets/nextflow-BrzmwbiE.js +0 -1
  806. package/public/assets/nginx-DknmC5AR.js +0 -1
  807. package/public/assets/night-owl-C39BiMTA.js +0 -1
  808. package/public/assets/nim-CVrawwO9.js +0 -1
  809. package/public/assets/nix-CwoSXNpI.js +0 -1
  810. package/public/assets/nord-Ddv68eIx.js +0 -1
  811. package/public/assets/nushell-C-sUppwS.js +0 -1
  812. package/public/assets/objective-c-DXmwc3jG.js +0 -1
  813. package/public/assets/objective-cpp-CLxacb5B.js +0 -1
  814. package/public/assets/ocaml-C0hk2d4L.js +0 -1
  815. package/public/assets/one-dark-pro-DVMEJ2y_.js +0 -1
  816. package/public/assets/one-light-PoHY5YXO.js +0 -1
  817. package/public/assets/openscad-C4EeE6gA.js +0 -1
  818. package/public/assets/ordinal-Cboi1Yqb.js +0 -1
  819. package/public/assets/pascal-D93ZcfNL.js +0 -1
  820. package/public/assets/perl-C0TMdlhV.js +0 -1
  821. package/public/assets/php-CDn_0X-4.js +0 -1
  822. package/public/assets/pieDiagram-ADFJNKIX-B__3BI2u.js +0 -30
  823. package/public/assets/pierre-dark-BXuwtOqb.js +0 -1
  824. package/public/assets/pierre-light-dckrK0oj.js +0 -1
  825. package/public/assets/pkl-u5AG7uiY.js +0 -1
  826. package/public/assets/plastic-3e1v2bzS.js +0 -1
  827. package/public/assets/plsql-ChMvpjG-.js +0 -1
  828. package/public/assets/po-BTJTHyun.js +0 -1
  829. package/public/assets/poimandres-CS3Unz2-.js +0 -1
  830. package/public/assets/polar-C0HS_06l.js +0 -1
  831. package/public/assets/postcss-CXtECtnM.js +0 -1
  832. package/public/assets/powerquery-CEu0bR-o.js +0 -1
  833. package/public/assets/powershell-Dpen1YoG.js +0 -1
  834. package/public/assets/prisma-Dd19v3D-.js +0 -1
  835. package/public/assets/prolog-CbFg5uaA.js +0 -1
  836. package/public/assets/proto-C7zT0LnQ.js +0 -1
  837. package/public/assets/pug-CGlum2m_.js +0 -1
  838. package/public/assets/puppet-BMWR74SV.js +0 -1
  839. package/public/assets/purescript-CklMAg4u.js +0 -1
  840. package/public/assets/python-B6aJPvgy.js +0 -1
  841. package/public/assets/qml-3beO22l8.js +0 -1
  842. package/public/assets/qmldir-C8lEn-DE.js +0 -1
  843. package/public/assets/qss-IeuSbFQv.js +0 -1
  844. package/public/assets/quadrantDiagram-AYHSOK5B-KinE0zs-.js +0 -7
  845. package/public/assets/r-Dspwwk_N.js +0 -1
  846. package/public/assets/racket-BqYA7rlc.js +0 -1
  847. package/public/assets/raku-DXvB9xmW.js +0 -1
  848. package/public/assets/razor-C1TweQQi.js +0 -1
  849. package/public/assets/red-bN70gL4F.js +0 -1
  850. package/public/assets/reg-C-SQnVFl.js +0 -1
  851. package/public/assets/regexp-CDVJQ6XC.js +0 -1
  852. package/public/assets/rel-C3B-1QV4.js +0 -1
  853. package/public/assets/requirementDiagram-UZGBJVZJ-BsmhVLvc.js +0 -64
  854. package/public/assets/riscv-BM1_JUlF.js +0 -1
  855. package/public/assets/rose-pine-dawn-DHQR4-dF.js +0 -1
  856. package/public/assets/rose-pine-moon-D4_iv3hh.js +0 -1
  857. package/public/assets/rose-pine-qdsjHGoJ.js +0 -1
  858. package/public/assets/rosmsg-BJDFO7_C.js +0 -1
  859. package/public/assets/rst-B0xPkSld.js +0 -1
  860. package/public/assets/ruby-BvKwtOVI.js +0 -1
  861. package/public/assets/rust-B1yitclQ.js +0 -1
  862. package/public/assets/sankeyDiagram-TZEHDZUN-BsWL3jC9.js +0 -10
  863. package/public/assets/sas-cz2c8ADy.js +0 -1
  864. package/public/assets/sass-Cj5Yp3dK.js +0 -1
  865. package/public/assets/scala-C151Ov-r.js +0 -1
  866. package/public/assets/scheme-C98Dy4si.js +0 -1
  867. package/public/assets/scss-OYdSNvt2.js +0 -1
  868. package/public/assets/sdbl-DVxCFoDh.js +0 -1
  869. package/public/assets/sequenceDiagram-WL72ISMW-D7F2tlFl.js +0 -145
  870. package/public/assets/shaderlab-Dg9Lc6iA.js +0 -1
  871. package/public/assets/shellscript-Yzrsuije.js +0 -1
  872. package/public/assets/shellsession-BADoaaVG.js +0 -1
  873. package/public/assets/slack-dark-BthQWCQV.js +0 -1
  874. package/public/assets/slack-ochin-DqwNpetd.js +0 -1
  875. package/public/assets/smalltalk-BERRCDM3.js +0 -1
  876. package/public/assets/snazzy-light-Bw305WKR.js +0 -1
  877. package/public/assets/solarized-dark-DXbdFlpD.js +0 -1
  878. package/public/assets/solarized-light-L9t79GZl.js +0 -1
  879. package/public/assets/solidity-rGO070M0.js +0 -1
  880. package/public/assets/soy-Brmx7dQM.js +0 -1
  881. package/public/assets/sparql-rVzFXLq3.js +0 -1
  882. package/public/assets/splunk-BtCnVYZw.js +0 -1
  883. package/public/assets/sql-BLtJtn59.js +0 -1
  884. package/public/assets/ssh-config-_ykCGR6B.js +0 -1
  885. package/public/assets/stata-BH5u7GGu.js +0 -1
  886. package/public/assets/stateDiagram-FKZM4ZOC-ChtT7kWx.js +0 -1
  887. package/public/assets/stateDiagram-v2-4FDKWEC3-owa6FG7W.js +0 -1
  888. package/public/assets/stylus-BEDo0Tqx.js +0 -1
  889. package/public/assets/svelte-zxCyuUbr.js +0 -1
  890. package/public/assets/swift-Dg5xB15N.js +0 -1
  891. package/public/assets/synthwave-84-CbfX1IO0.js +0 -1
  892. package/public/assets/system-verilog-CnnmHF94.js +0 -1
  893. package/public/assets/systemd-4A_iFExJ.js +0 -1
  894. package/public/assets/talonscript-CkByrt1z.js +0 -1
  895. package/public/assets/tasl-QIJgUcNo.js +0 -1
  896. package/public/assets/tcl-dwOrl1Do.js +0 -1
  897. package/public/assets/templ-W15q3VgB.js +0 -1
  898. package/public/assets/terraform-BETggiCN.js +0 -1
  899. package/public/assets/tex-CvyZ59Mk.js +0 -1
  900. package/public/assets/timeline-definition-IT6M3QCI-B0yUYz0D.js +0 -61
  901. package/public/assets/tokyo-night-hegEt444.js +0 -1
  902. package/public/assets/toml-vGWfd6FD.js +0 -1
  903. package/public/assets/treemap-KMMF4GRG-8kxwYcwm.js +0 -128
  904. package/public/assets/ts-tags-zn1MmPIZ.js +0 -1
  905. package/public/assets/tsv-B_m7g4N7.js +0 -1
  906. package/public/assets/tsx-COt5Ahok.js +0 -1
  907. package/public/assets/turtle-BsS91CYL.js +0 -1
  908. package/public/assets/twig-CO9l9SDP.js +0 -1
  909. package/public/assets/typescript-BPQ3VLAy.js +0 -1
  910. package/public/assets/typespec-BGHnOYBU.js +0 -1
  911. package/public/assets/typst-DHCkPAjA.js +0 -1
  912. package/public/assets/v-BcVCzyr7.js +0 -1
  913. package/public/assets/vala-CsfeWuGM.js +0 -1
  914. package/public/assets/vb-D17OF-Vu.js +0 -1
  915. package/public/assets/verilog-BQ8w6xss.js +0 -1
  916. package/public/assets/vesper-DU1UobuO.js +0 -1
  917. package/public/assets/vhdl-CeAyd5Ju.js +0 -1
  918. package/public/assets/viml-CJc9bBzg.js +0 -1
  919. package/public/assets/vitesse-black-Bkuqu6BP.js +0 -1
  920. package/public/assets/vitesse-dark-D0r3Knsf.js +0 -1
  921. package/public/assets/vitesse-light-CVO1_9PV.js +0 -1
  922. package/public/assets/vue-DN_0RTcg.js +0 -1
  923. package/public/assets/vue-html-AaS7Mt5G.js +0 -1
  924. package/public/assets/vue-vine-CQOfvN7w.js +0 -1
  925. package/public/assets/vyper-CDx5xZoG.js +0 -1
  926. package/public/assets/wasm-CG6Dc4jp.js +0 -1
  927. package/public/assets/wasm-MzD3tlZU.js +0 -1
  928. package/public/assets/wenyan-BV7otONQ.js +0 -1
  929. package/public/assets/wgsl-Dx-B1_4e.js +0 -1
  930. package/public/assets/wikitext-BhOHFoWU.js +0 -1
  931. package/public/assets/wit-5i3qLPDT.js +0 -1
  932. package/public/assets/wolfram-lXgVvXCa.js +0 -1
  933. package/public/assets/xml-sdJ4AIDG.js +0 -1
  934. package/public/assets/xsl-CtQFsRM5.js +0 -1
  935. package/public/assets/xychartDiagram-PRI3JC2R-Bm8prpCy.js +0 -7
  936. package/public/assets/yaml-Buea-lGh.js +0 -1
  937. package/public/assets/zenscript-DVFEvuxE.js +0 -1
  938. package/public/assets/zig-VOosw3JB.js +0 -1
  939. package/public/favicon-16.ico +0 -0
  940. package/public/favicon-32.ico +0 -0
  941. package/public/favicon-48.ico +0 -0
  942. package/public/favicon.svg +0 -4
  943. package/public/index.html +0 -33
  944. package/public/logo-1024.png +0 -0
  945. package/public/logo-128.png +0 -0
  946. package/public/logo-16.png +0 -0
  947. package/public/logo-256.png +0 -0
  948. package/public/logo-32.png +0 -0
  949. package/public/logo-48.png +0 -0
  950. package/public/logo-512.png +0 -0
  951. package/public/logo-64.png +0 -0
@@ -1 +0,0 @@
1
- const e=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"}'));export{e as default};
@@ -1 +0,0 @@
1
- const e=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"}'));export{e as default};
@@ -1 +0,0 @@
1
- const e=Object.freeze(JSON.parse('{"colors":{"activityBar.background":"#f9f5d7","activityBar.border":"#ebdbb2","activityBar.foreground":"#3c3836","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#f9f5d7","activityBarTop.foreground":"#3c3836","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#3c3836","button.hoverBackground":"#45858860","debugToolBar.background":"#f9f5d7","diffEditor.insertedTextBackground":"#79740e30","diffEditor.removedTextBackground":"#9d000630","dropdown.background":"#f9f5d7","dropdown.border":"#ebdbb2","dropdown.foreground":"#3c3836","editor.background":"#f9f5d7","editor.findMatchBackground":"#07667870","editor.findMatchHighlightBackground":"#af3a0330","editor.findRangeHighlightBackground":"#07667870","editor.foreground":"#3c3836","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#ebdbb260","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#b5761440","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#7c6f6490","editorCursor.foreground":"#3c3836","editorError.foreground":"#cc241d","editorGhostText.background":"#bdae9360","editorGroup.border":"#ebdbb2","editorGroup.dropBackground":"#ebdbb260","editorGroupHeader.noTabsBackground":"#f9f5d7","editorGroupHeader.tabsBackground":"#f9f5d7","editorGroupHeader.tabsBorder":"#ebdbb2","editorGutter.addedBackground":"#79740e","editorGutter.background":"#0000","editorGutter.deletedBackground":"#9d0006","editorGutter.modifiedBackground":"#076678","editorHoverWidget.background":"#f9f5d7","editorHoverWidget.border":"#ebdbb2","editorIndentGuide.activeBackground":"#bdae93","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#bdae93","editorLink.activeForeground":"#3c3836","editorOverviewRuler.addedForeground":"#076678","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#076678","editorOverviewRuler.errorForeground":"#9d0006","editorOverviewRuler.findMatchForeground":"#665c54","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#8f3f71","editorOverviewRuler.modifiedForeground":"#076678","editorOverviewRuler.rangeHighlightForeground":"#665c54","editorOverviewRuler.selectionHighlightForeground":"#bdae93","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#bdae93","editorOverviewRuler.wordHighlightStrongForeground":"#bdae93","editorRuler.foreground":"#7c6f6440","editorStickyScroll.shadow":"#d5c4a199","editorStickyScrollHover.background":"#ebdbb260","editorSuggestWidget.background":"#f9f5d7","editorSuggestWidget.border":"#ebdbb2","editorSuggestWidget.foreground":"#3c3836","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#ebdbb260","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#7c6f6420","editorWidget.background":"#f9f5d7","editorWidget.border":"#ebdbb2","errorForeground":"#9d0006","extensionButton.prominentBackground":"#79740e80","extensionButton.prominentHoverBackground":"#79740e30","focusBorder":"#ebdbb2","foreground":"#3c3836","gitDecoration.addedResourceForeground":"#3c3836","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#a89984","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#a89984","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#076678","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#8f3f71","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#427b58","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#b57614","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#79740e","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#79740e","gitlens.graphMinimapMarkerLocalBranchesColor":"#076678","gitlens.graphMinimapMarkerPullRequestsColor":"#af3a03","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#a89984","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#79740e","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#076678","gitlens.graphScrollMarkerPullRequestsColor":"#af3a03","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#a89984","gitlens.graphScrollMarkerUpstreamColor":"#427b58","gitlens.gutterBackgroundColor":"#ebdbb2","gitlens.gutterForegroundColor":"#3c3836","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#b57614","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#9d0006","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#79740e","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#ebdbb2","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#f9f5d7a0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#af3a03","icon.foreground":"#3c3836","input.background":"#f9f5d7","input.border":"#ebdbb2","input.foreground":"#3c3836","input.placeholderForeground":"#3c383660","inputOption.activeBorder":"#3c383660","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#9d0006","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#076678","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#b57614","list.activeSelectionBackground":"#ebdbb280","list.activeSelectionForeground":"#427b58","list.dropBackground":"#ebdbb2","list.focusBackground":"#ebdbb2","list.focusForeground":"#3c3836","list.highlightForeground":"#689d6a","list.hoverBackground":"#ebdbb280","list.hoverForeground":"#504945","list.inactiveSelectionBackground":"#ebdbb280","list.inactiveSelectionForeground":"#689d6a","menu.border":"#ebdbb2","menu.separatorBackground":"#ebdbb2","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#d5c4a1","notebook.cellEditorBackground":"#ebdbb2","notebook.focusedCellBorder":"#7c6f64","notebook.focusedEditorBorder":"#d5c4a1","panel.border":"#ebdbb2","panelTitle.activeForeground":"#3c3836","peekView.border":"#ebdbb2","peekViewEditor.background":"#ebdbb270","peekViewEditor.matchHighlightBackground":"#d5c4a1","peekViewEditorGutter.background":"#ebdbb270","peekViewResult.background":"#ebdbb270","peekViewResult.fileForeground":"#3c3836","peekViewResult.lineForeground":"#3c3836","peekViewResult.matchHighlightBackground":"#d5c4a1","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#3c3836","peekViewTitle.background":"#ebdbb270","peekViewTitleDescription.foreground":"#665c54","peekViewTitleLabel.foreground":"#3c3836","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#f9f5d7","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#d5c4a199","scrollbarSlider.hoverBackground":"#bdae93","selection.background":"#689d6a80","sideBar.background":"#f9f5d7","sideBar.border":"#ebdbb2","sideBar.foreground":"#504945","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#3c3836","sideBarTitle.foreground":"#3c3836","statusBar.background":"#f9f5d7","statusBar.border":"#ebdbb2","statusBar.debuggingBackground":"#af3a03","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#f9f5d7","statusBar.foreground":"#3c3836","statusBar.noFolderBackground":"#f9f5d7","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#ebdbb2","tab.activeBorder":"#689d6a","tab.activeForeground":"#3c3836","tab.border":"#0000","tab.inactiveBackground":"#f9f5d7","tab.inactiveForeground":"#7c6f64","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#7c6f64","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#ebdbb2","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#076678","terminal.ansiBrightCyan":"#427b58","terminal.ansiBrightGreen":"#79740e","terminal.ansiBrightMagenta":"#8f3f71","terminal.ansiBrightRed":"#9d0006","terminal.ansiBrightWhite":"#3c3836","terminal.ansiBrightYellow":"#b57614","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#7c6f64","terminal.ansiYellow":"#d79921","terminal.background":"#f9f5d7","terminal.foreground":"#3c3836","textLink.activeForeground":"#458588","textLink.foreground":"#076678","titleBar.activeBackground":"#f9f5d7","titleBar.activeForeground":"#3c3836","titleBar.inactiveBackground":"#f9f5d7","widget.border":"#ebdbb2","widget.shadow":"#f9f5d730"},"displayName":"Gruvbox Light Hard","name":"gruvbox-light-hard","semanticHighlighting":true,"semanticTokenColors":{"component":"#af3a03","constant.builtin":"#8f3f71","function":"#427b58","function.builtin":"#af3a03","method":"#427b58","parameter":"#076678","property":"#076678","property:python":"#3c3836","variable":"#3c3836"},"tokenColors":[{"settings":{"foreground":"#3c3836"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#8f3f71"}},{"scope":"constant.rgb-value","settings":{"foreground":"#3c3836"}},{"scope":"entity.name.selector","settings":{"foreground":"#427b58"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#b57614"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#427b58"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#427b58"}},{"scope":"meta.preprocessor","settings":{"foreground":"#af3a03"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#79740e"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#79740e"}},{"scope":"meta.header.diff","settings":{"foreground":"#af3a03"}},{"scope":"storage","settings":{"foreground":"#9d0006"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#af3a03"}},{"scope":"string","settings":{"foreground":"#79740e"}},{"scope":"string.tag","settings":{"foreground":"#79740e"}},{"scope":"string.value","settings":{"foreground":"#79740e"}},{"scope":"string.regexp","settings":{"foreground":"#af3a03"}},{"scope":"string.escape","settings":{"foreground":"#9d0006"}},{"scope":"string.quasi","settings":{"foreground":"#427b58"}},{"scope":"string.entity","settings":{"foreground":"#79740e"}},{"scope":"object","settings":{"foreground":"#3c3836"}},{"scope":"module.node","settings":{"foreground":"#076678"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control.module","settings":{"foreground":"#427b58"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#427b58"}},{"scope":"keyword.operator.new","settings":{"foreground":"#af3a03"}},{"scope":"keyword.other.unit","settings":{"foreground":"#79740e"}},{"scope":"metatag.php","settings":{"foreground":"#af3a03"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#79740e"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#b57614"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#8f3f71"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#b57614"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#427b58"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#427b58"}},{"scope":"support.function.builtin","settings":{"foreground":"#af3a03"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#504945"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#076678"}},{"scope":"prototype","settings":{"foreground":"#8f3f71"}},{"scope":["punctuation"],"settings":{"foreground":"#7c6f64"}},{"scope":"punctuation.quoted","settings":{"foreground":"#3c3836"}},{"scope":"punctuation.quasi","settings":{"foreground":"#9d0006"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#427b58"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#9d0006"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#9d0006"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#076678"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#504945"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#9d0006"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#af3a03"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#427b58"}},{"scope":"keyword.control.directive","settings":{"foreground":"#427b58"}},{"scope":"support.function.C99","settings":{"foreground":"#b57614"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#79740e"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#427b58"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#8f3f71"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#b57614"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#665c54"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#427b58"}},{"scope":"storage.type.java","settings":{"foreground":"#b57614"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#427b58"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#3c3836"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#b57614"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#8f3f71"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#9d0006"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#8f3f71"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#79740e"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#af3a03"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#076678"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#427b58"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#076678"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#af3a03"}},{"scope":"source.css meta.selector","settings":{"foreground":"#3c3836"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#af3a03"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#79740e"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#9d0006"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#076678"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#427b58"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#b57614"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#79740e"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#427b58"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#076678"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#3c3836"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#8f3f71"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#076678"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#79740e"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#427b58"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#076678"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#b57614"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#665c54"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#9d0006"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#af3a03"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#8f3f71"}},{"scope":["support.class.latex"],"settings":{"foreground":"#427b58"}}],"type":"light"}'));export{e as default};
@@ -1 +0,0 @@
1
- const e=Object.freeze(JSON.parse('{"colors":{"activityBar.background":"#fbf1c7","activityBar.border":"#ebdbb2","activityBar.foreground":"#3c3836","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#fbf1c7","activityBarTop.foreground":"#3c3836","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#3c3836","button.hoverBackground":"#45858860","debugToolBar.background":"#fbf1c7","diffEditor.insertedTextBackground":"#79740e30","diffEditor.removedTextBackground":"#9d000630","dropdown.background":"#fbf1c7","dropdown.border":"#ebdbb2","dropdown.foreground":"#3c3836","editor.background":"#fbf1c7","editor.findMatchBackground":"#07667870","editor.findMatchHighlightBackground":"#af3a0330","editor.findRangeHighlightBackground":"#07667870","editor.foreground":"#3c3836","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#ebdbb260","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#b5761440","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#7c6f6490","editorCursor.foreground":"#3c3836","editorError.foreground":"#cc241d","editorGhostText.background":"#bdae9360","editorGroup.border":"#ebdbb2","editorGroup.dropBackground":"#ebdbb260","editorGroupHeader.noTabsBackground":"#fbf1c7","editorGroupHeader.tabsBackground":"#fbf1c7","editorGroupHeader.tabsBorder":"#ebdbb2","editorGutter.addedBackground":"#79740e","editorGutter.background":"#0000","editorGutter.deletedBackground":"#9d0006","editorGutter.modifiedBackground":"#076678","editorHoverWidget.background":"#fbf1c7","editorHoverWidget.border":"#ebdbb2","editorIndentGuide.activeBackground":"#bdae93","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#bdae93","editorLink.activeForeground":"#3c3836","editorOverviewRuler.addedForeground":"#076678","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#076678","editorOverviewRuler.errorForeground":"#9d0006","editorOverviewRuler.findMatchForeground":"#665c54","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#8f3f71","editorOverviewRuler.modifiedForeground":"#076678","editorOverviewRuler.rangeHighlightForeground":"#665c54","editorOverviewRuler.selectionHighlightForeground":"#bdae93","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#bdae93","editorOverviewRuler.wordHighlightStrongForeground":"#bdae93","editorRuler.foreground":"#7c6f6440","editorStickyScroll.shadow":"#d5c4a199","editorStickyScrollHover.background":"#ebdbb260","editorSuggestWidget.background":"#fbf1c7","editorSuggestWidget.border":"#ebdbb2","editorSuggestWidget.foreground":"#3c3836","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#ebdbb260","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#7c6f6420","editorWidget.background":"#fbf1c7","editorWidget.border":"#ebdbb2","errorForeground":"#9d0006","extensionButton.prominentBackground":"#79740e80","extensionButton.prominentHoverBackground":"#79740e30","focusBorder":"#ebdbb2","foreground":"#3c3836","gitDecoration.addedResourceForeground":"#3c3836","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#a89984","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#a89984","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#076678","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#8f3f71","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#427b58","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#b57614","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#79740e","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#79740e","gitlens.graphMinimapMarkerLocalBranchesColor":"#076678","gitlens.graphMinimapMarkerPullRequestsColor":"#af3a03","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#a89984","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#79740e","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#076678","gitlens.graphScrollMarkerPullRequestsColor":"#af3a03","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#a89984","gitlens.graphScrollMarkerUpstreamColor":"#427b58","gitlens.gutterBackgroundColor":"#ebdbb2","gitlens.gutterForegroundColor":"#3c3836","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#b57614","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#9d0006","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#79740e","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#ebdbb2","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#fbf1c7a0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#af3a03","icon.foreground":"#3c3836","input.background":"#fbf1c7","input.border":"#ebdbb2","input.foreground":"#3c3836","input.placeholderForeground":"#3c383660","inputOption.activeBorder":"#3c383660","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#9d0006","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#076678","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#b57614","list.activeSelectionBackground":"#ebdbb280","list.activeSelectionForeground":"#427b58","list.dropBackground":"#ebdbb2","list.focusBackground":"#ebdbb2","list.focusForeground":"#3c3836","list.highlightForeground":"#689d6a","list.hoverBackground":"#ebdbb280","list.hoverForeground":"#504945","list.inactiveSelectionBackground":"#ebdbb280","list.inactiveSelectionForeground":"#689d6a","menu.border":"#ebdbb2","menu.separatorBackground":"#ebdbb2","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#d5c4a1","notebook.cellEditorBackground":"#ebdbb2","notebook.focusedCellBorder":"#7c6f64","notebook.focusedEditorBorder":"#d5c4a1","panel.border":"#ebdbb2","panelTitle.activeForeground":"#3c3836","peekView.border":"#ebdbb2","peekViewEditor.background":"#ebdbb270","peekViewEditor.matchHighlightBackground":"#d5c4a1","peekViewEditorGutter.background":"#ebdbb270","peekViewResult.background":"#ebdbb270","peekViewResult.fileForeground":"#3c3836","peekViewResult.lineForeground":"#3c3836","peekViewResult.matchHighlightBackground":"#d5c4a1","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#3c3836","peekViewTitle.background":"#ebdbb270","peekViewTitleDescription.foreground":"#665c54","peekViewTitleLabel.foreground":"#3c3836","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#fbf1c7","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#d5c4a199","scrollbarSlider.hoverBackground":"#bdae93","selection.background":"#689d6a80","sideBar.background":"#fbf1c7","sideBar.border":"#ebdbb2","sideBar.foreground":"#504945","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#3c3836","sideBarTitle.foreground":"#3c3836","statusBar.background":"#fbf1c7","statusBar.border":"#ebdbb2","statusBar.debuggingBackground":"#af3a03","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#fbf1c7","statusBar.foreground":"#3c3836","statusBar.noFolderBackground":"#fbf1c7","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#ebdbb2","tab.activeBorder":"#689d6a","tab.activeForeground":"#3c3836","tab.border":"#0000","tab.inactiveBackground":"#fbf1c7","tab.inactiveForeground":"#7c6f64","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#7c6f64","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#ebdbb2","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#076678","terminal.ansiBrightCyan":"#427b58","terminal.ansiBrightGreen":"#79740e","terminal.ansiBrightMagenta":"#8f3f71","terminal.ansiBrightRed":"#9d0006","terminal.ansiBrightWhite":"#3c3836","terminal.ansiBrightYellow":"#b57614","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#7c6f64","terminal.ansiYellow":"#d79921","terminal.background":"#fbf1c7","terminal.foreground":"#3c3836","textLink.activeForeground":"#458588","textLink.foreground":"#076678","titleBar.activeBackground":"#fbf1c7","titleBar.activeForeground":"#3c3836","titleBar.inactiveBackground":"#fbf1c7","widget.border":"#ebdbb2","widget.shadow":"#fbf1c730"},"displayName":"Gruvbox Light Medium","name":"gruvbox-light-medium","semanticHighlighting":true,"semanticTokenColors":{"component":"#af3a03","constant.builtin":"#8f3f71","function":"#427b58","function.builtin":"#af3a03","method":"#427b58","parameter":"#076678","property":"#076678","property:python":"#3c3836","variable":"#3c3836"},"tokenColors":[{"settings":{"foreground":"#3c3836"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#8f3f71"}},{"scope":"constant.rgb-value","settings":{"foreground":"#3c3836"}},{"scope":"entity.name.selector","settings":{"foreground":"#427b58"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#b57614"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#427b58"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#427b58"}},{"scope":"meta.preprocessor","settings":{"foreground":"#af3a03"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#79740e"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#79740e"}},{"scope":"meta.header.diff","settings":{"foreground":"#af3a03"}},{"scope":"storage","settings":{"foreground":"#9d0006"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#af3a03"}},{"scope":"string","settings":{"foreground":"#79740e"}},{"scope":"string.tag","settings":{"foreground":"#79740e"}},{"scope":"string.value","settings":{"foreground":"#79740e"}},{"scope":"string.regexp","settings":{"foreground":"#af3a03"}},{"scope":"string.escape","settings":{"foreground":"#9d0006"}},{"scope":"string.quasi","settings":{"foreground":"#427b58"}},{"scope":"string.entity","settings":{"foreground":"#79740e"}},{"scope":"object","settings":{"foreground":"#3c3836"}},{"scope":"module.node","settings":{"foreground":"#076678"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control.module","settings":{"foreground":"#427b58"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#427b58"}},{"scope":"keyword.operator.new","settings":{"foreground":"#af3a03"}},{"scope":"keyword.other.unit","settings":{"foreground":"#79740e"}},{"scope":"metatag.php","settings":{"foreground":"#af3a03"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#79740e"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#b57614"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#8f3f71"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#b57614"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#427b58"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#427b58"}},{"scope":"support.function.builtin","settings":{"foreground":"#af3a03"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#504945"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#076678"}},{"scope":"prototype","settings":{"foreground":"#8f3f71"}},{"scope":["punctuation"],"settings":{"foreground":"#7c6f64"}},{"scope":"punctuation.quoted","settings":{"foreground":"#3c3836"}},{"scope":"punctuation.quasi","settings":{"foreground":"#9d0006"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#427b58"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#9d0006"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#9d0006"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#076678"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#504945"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#9d0006"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#af3a03"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#427b58"}},{"scope":"keyword.control.directive","settings":{"foreground":"#427b58"}},{"scope":"support.function.C99","settings":{"foreground":"#b57614"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#79740e"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#427b58"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#8f3f71"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#b57614"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#665c54"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#427b58"}},{"scope":"storage.type.java","settings":{"foreground":"#b57614"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#427b58"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#3c3836"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#b57614"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#8f3f71"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#9d0006"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#8f3f71"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#79740e"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#af3a03"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#076678"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#427b58"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#076678"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#af3a03"}},{"scope":"source.css meta.selector","settings":{"foreground":"#3c3836"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#af3a03"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#79740e"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#9d0006"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#076678"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#427b58"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#b57614"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#79740e"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#427b58"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#076678"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#3c3836"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#8f3f71"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#076678"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#79740e"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#427b58"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#076678"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#b57614"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#665c54"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#9d0006"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#af3a03"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#8f3f71"}},{"scope":["support.class.latex"],"settings":{"foreground":"#427b58"}}],"type":"light"}'));export{e as default};
@@ -1 +0,0 @@
1
- const e=Object.freeze(JSON.parse('{"colors":{"activityBar.background":"#f2e5bc","activityBar.border":"#ebdbb2","activityBar.foreground":"#3c3836","activityBarBadge.background":"#458588","activityBarBadge.foreground":"#ebdbb2","activityBarTop.background":"#f2e5bc","activityBarTop.foreground":"#3c3836","badge.background":"#b16286","badge.foreground":"#ebdbb2","button.background":"#45858880","button.foreground":"#3c3836","button.hoverBackground":"#45858860","debugToolBar.background":"#f2e5bc","diffEditor.insertedTextBackground":"#79740e30","diffEditor.removedTextBackground":"#9d000630","dropdown.background":"#f2e5bc","dropdown.border":"#ebdbb2","dropdown.foreground":"#3c3836","editor.background":"#f2e5bc","editor.findMatchBackground":"#07667870","editor.findMatchHighlightBackground":"#af3a0330","editor.findRangeHighlightBackground":"#07667870","editor.foreground":"#3c3836","editor.hoverHighlightBackground":"#689d6a50","editor.lineHighlightBackground":"#ebdbb260","editor.lineHighlightBorder":"#0000","editor.selectionBackground":"#689d6a40","editor.selectionHighlightBackground":"#b5761440","editorBracketHighlight.foreground1":"#b16286","editorBracketHighlight.foreground2":"#458588","editorBracketHighlight.foreground3":"#689d6a","editorBracketHighlight.foreground4":"#98971a","editorBracketHighlight.foreground5":"#d79921","editorBracketHighlight.foreground6":"#d65d0e","editorBracketHighlight.unexpectedBracket.foreground":"#cc241d","editorBracketMatch.background":"#92837480","editorBracketMatch.border":"#0000","editorCodeLens.foreground":"#7c6f6490","editorCursor.foreground":"#3c3836","editorError.foreground":"#cc241d","editorGhostText.background":"#bdae9360","editorGroup.border":"#ebdbb2","editorGroup.dropBackground":"#ebdbb260","editorGroupHeader.noTabsBackground":"#f2e5bc","editorGroupHeader.tabsBackground":"#f2e5bc","editorGroupHeader.tabsBorder":"#ebdbb2","editorGutter.addedBackground":"#79740e","editorGutter.background":"#0000","editorGutter.deletedBackground":"#9d0006","editorGutter.modifiedBackground":"#076678","editorHoverWidget.background":"#f2e5bc","editorHoverWidget.border":"#ebdbb2","editorIndentGuide.activeBackground":"#bdae93","editorInfo.foreground":"#458588","editorLineNumber.foreground":"#bdae93","editorLink.activeForeground":"#3c3836","editorOverviewRuler.addedForeground":"#076678","editorOverviewRuler.border":"#0000","editorOverviewRuler.commonContentForeground":"#928374","editorOverviewRuler.currentContentForeground":"#458588","editorOverviewRuler.deletedForeground":"#076678","editorOverviewRuler.errorForeground":"#9d0006","editorOverviewRuler.findMatchForeground":"#665c54","editorOverviewRuler.incomingContentForeground":"#689d6a","editorOverviewRuler.infoForeground":"#8f3f71","editorOverviewRuler.modifiedForeground":"#076678","editorOverviewRuler.rangeHighlightForeground":"#665c54","editorOverviewRuler.selectionHighlightForeground":"#bdae93","editorOverviewRuler.warningForeground":"#d79921","editorOverviewRuler.wordHighlightForeground":"#bdae93","editorOverviewRuler.wordHighlightStrongForeground":"#bdae93","editorRuler.foreground":"#7c6f6440","editorStickyScroll.shadow":"#d5c4a199","editorStickyScrollHover.background":"#ebdbb260","editorSuggestWidget.background":"#f2e5bc","editorSuggestWidget.border":"#ebdbb2","editorSuggestWidget.foreground":"#3c3836","editorSuggestWidget.highlightForeground":"#689d6a","editorSuggestWidget.selectedBackground":"#ebdbb260","editorWarning.foreground":"#d79921","editorWhitespace.foreground":"#7c6f6420","editorWidget.background":"#f2e5bc","editorWidget.border":"#ebdbb2","errorForeground":"#9d0006","extensionButton.prominentBackground":"#79740e80","extensionButton.prominentHoverBackground":"#79740e30","focusBorder":"#ebdbb2","foreground":"#3c3836","gitDecoration.addedResourceForeground":"#3c3836","gitDecoration.conflictingResourceForeground":"#b16286","gitDecoration.deletedResourceForeground":"#cc241d","gitDecoration.ignoredResourceForeground":"#a89984","gitDecoration.modifiedResourceForeground":"#d79921","gitDecoration.untrackedResourceForeground":"#98971a","gitlens.closedAutolinkedIssueIconColor":"#b16286","gitlens.closedPullRequestIconColor":"#cc241d","gitlens.decorations.branchAheadForegroundColor":"#98971a","gitlens.decorations.branchBehindForegroundColor":"#d65d0e","gitlens.decorations.branchDivergedForegroundColor":"#d79921","gitlens.decorations.branchMissingUpstreamForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingConflictForegroundColor":"#cc241d","gitlens.decorations.statusMergingOrRebasingForegroundColor":"#d79921","gitlens.decorations.workspaceCurrentForegroundColor":"#98971a","gitlens.decorations.workspaceRepoMissingForegroundColor":"#a89984","gitlens.decorations.workspaceRepoOpenForegroundColor":"#98971a","gitlens.decorations.worktreeHasUncommittedChangesForegroundColor":"#928374","gitlens.decorations.worktreeMissingForegroundColor":"#cc241d","gitlens.graphChangesColumnAddedColor":"#98971a","gitlens.graphChangesColumnDeletedColor":"#cc241d","gitlens.graphLane10Color":"#98971a","gitlens.graphLane1Color":"#076678","gitlens.graphLane2Color":"#458588","gitlens.graphLane3Color":"#8f3f71","gitlens.graphLane4Color":"#b16286","gitlens.graphLane5Color":"#427b58","gitlens.graphLane6Color":"#689d6a","gitlens.graphLane7Color":"#b57614","gitlens.graphLane8Color":"#d79921","gitlens.graphLane9Color":"#79740e","gitlens.graphMinimapMarkerHeadColor":"#98971a","gitlens.graphMinimapMarkerHighlightsColor":"#79740e","gitlens.graphMinimapMarkerLocalBranchesColor":"#076678","gitlens.graphMinimapMarkerPullRequestsColor":"#af3a03","gitlens.graphMinimapMarkerRemoteBranchesColor":"#458588","gitlens.graphMinimapMarkerStashesColor":"#b16286","gitlens.graphMinimapMarkerTagsColor":"#a89984","gitlens.graphMinimapMarkerUpstreamColor":"#689d6a","gitlens.graphScrollMarkerHeadColor":"#79740e","gitlens.graphScrollMarkerHighlightsColor":"#d79921","gitlens.graphScrollMarkerLocalBranchesColor":"#076678","gitlens.graphScrollMarkerPullRequestsColor":"#af3a03","gitlens.graphScrollMarkerRemoteBranchesColor":"#458588","gitlens.graphScrollMarkerStashesColor":"#b16286","gitlens.graphScrollMarkerTagsColor":"#a89984","gitlens.graphScrollMarkerUpstreamColor":"#427b58","gitlens.gutterBackgroundColor":"#ebdbb2","gitlens.gutterForegroundColor":"#3c3836","gitlens.gutterUncommittedForegroundColor":"#458588","gitlens.launchpadIndicatorAttentionColor":"#b57614","gitlens.launchpadIndicatorAttentionHoverColor":"#d79921","gitlens.launchpadIndicatorBlockedColor":"#9d0006","gitlens.launchpadIndicatorBlockedHoverColor":"#cc241d","gitlens.launchpadIndicatorMergeableColor":"#79740e","gitlens.launchpadIndicatorMergeableHoverColor":"#98971a","gitlens.lineHighlightBackgroundColor":"#ebdbb2","gitlens.lineHighlightOverviewRulerColor":"#458588","gitlens.mergedPullRequestIconColor":"#b16286","gitlens.openAutolinkedIssueIconColor":"#98971a","gitlens.openPullRequestIconColor":"#98971a","gitlens.trailingLineBackgroundColor":"#f2e5bca0","gitlens.trailingLineForegroundColor":"#928374a0","gitlens.unpublishedChangesIconColor":"#98971a","gitlens.unpublishedCommitIconColor":"#98971a","gitlens.unpulledChangesIconColor":"#af3a03","icon.foreground":"#3c3836","input.background":"#f2e5bc","input.border":"#ebdbb2","input.foreground":"#3c3836","input.placeholderForeground":"#3c383660","inputOption.activeBorder":"#3c383660","inputValidation.errorBackground":"#cc241d","inputValidation.errorBorder":"#9d0006","inputValidation.infoBackground":"#45858880","inputValidation.infoBorder":"#076678","inputValidation.warningBackground":"#d79921","inputValidation.warningBorder":"#b57614","list.activeSelectionBackground":"#ebdbb280","list.activeSelectionForeground":"#427b58","list.dropBackground":"#ebdbb2","list.focusBackground":"#ebdbb2","list.focusForeground":"#3c3836","list.highlightForeground":"#689d6a","list.hoverBackground":"#ebdbb280","list.hoverForeground":"#504945","list.inactiveSelectionBackground":"#ebdbb280","list.inactiveSelectionForeground":"#689d6a","menu.border":"#ebdbb2","menu.separatorBackground":"#ebdbb2","merge.border":"#0000","merge.currentContentBackground":"#45858820","merge.currentHeaderBackground":"#45858840","merge.incomingContentBackground":"#689d6a20","merge.incomingHeaderBackground":"#689d6a40","notebook.cellBorderColor":"#d5c4a1","notebook.cellEditorBackground":"#ebdbb2","notebook.focusedCellBorder":"#7c6f64","notebook.focusedEditorBorder":"#d5c4a1","panel.border":"#ebdbb2","panelTitle.activeForeground":"#3c3836","peekView.border":"#ebdbb2","peekViewEditor.background":"#ebdbb270","peekViewEditor.matchHighlightBackground":"#d5c4a1","peekViewEditorGutter.background":"#ebdbb270","peekViewResult.background":"#ebdbb270","peekViewResult.fileForeground":"#3c3836","peekViewResult.lineForeground":"#3c3836","peekViewResult.matchHighlightBackground":"#d5c4a1","peekViewResult.selectionBackground":"#45858820","peekViewResult.selectionForeground":"#3c3836","peekViewTitle.background":"#ebdbb270","peekViewTitleDescription.foreground":"#665c54","peekViewTitleLabel.foreground":"#3c3836","progressBar.background":"#689d6a","scmGraph.historyItemHoverDefaultLabelForeground":"#ebdbb2","scmGraph.historyItemHoverLabelForeground":"#ebdbb2","scrollbar.shadow":"#f2e5bc","scrollbarSlider.activeBackground":"#689d6a","scrollbarSlider.background":"#d5c4a199","scrollbarSlider.hoverBackground":"#bdae93","selection.background":"#689d6a80","sideBar.background":"#f2e5bc","sideBar.border":"#ebdbb2","sideBar.foreground":"#504945","sideBarSectionHeader.background":"#0000","sideBarSectionHeader.foreground":"#3c3836","sideBarTitle.foreground":"#3c3836","statusBar.background":"#f2e5bc","statusBar.border":"#ebdbb2","statusBar.debuggingBackground":"#af3a03","statusBar.debuggingBorder":"#0000","statusBar.debuggingForeground":"#f2e5bc","statusBar.foreground":"#3c3836","statusBar.noFolderBackground":"#f2e5bc","statusBar.noFolderBorder":"#0000","tab.activeBackground":"#ebdbb2","tab.activeBorder":"#689d6a","tab.activeForeground":"#3c3836","tab.border":"#0000","tab.inactiveBackground":"#f2e5bc","tab.inactiveForeground":"#7c6f64","tab.unfocusedActiveBorder":"#0000","tab.unfocusedActiveForeground":"#7c6f64","tab.unfocusedInactiveForeground":"#928374","terminal.ansiBlack":"#ebdbb2","terminal.ansiBlue":"#458588","terminal.ansiBrightBlack":"#928374","terminal.ansiBrightBlue":"#076678","terminal.ansiBrightCyan":"#427b58","terminal.ansiBrightGreen":"#79740e","terminal.ansiBrightMagenta":"#8f3f71","terminal.ansiBrightRed":"#9d0006","terminal.ansiBrightWhite":"#3c3836","terminal.ansiBrightYellow":"#b57614","terminal.ansiCyan":"#689d6a","terminal.ansiGreen":"#98971a","terminal.ansiMagenta":"#b16286","terminal.ansiRed":"#cc241d","terminal.ansiWhite":"#7c6f64","terminal.ansiYellow":"#d79921","terminal.background":"#f2e5bc","terminal.foreground":"#3c3836","textLink.activeForeground":"#458588","textLink.foreground":"#076678","titleBar.activeBackground":"#f2e5bc","titleBar.activeForeground":"#3c3836","titleBar.inactiveBackground":"#f2e5bc","widget.border":"#ebdbb2","widget.shadow":"#f2e5bc30"},"displayName":"Gruvbox Light Soft","name":"gruvbox-light-soft","semanticHighlighting":true,"semanticTokenColors":{"component":"#af3a03","constant.builtin":"#8f3f71","function":"#427b58","function.builtin":"#af3a03","method":"#427b58","parameter":"#076678","property":"#076678","property:python":"#3c3836","variable":"#3c3836"},"tokenColors":[{"settings":{"foreground":"#3c3836"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"header","settings":{"foreground":"#458588"}},{"scope":["comment","punctuation.definition.comment"],"settings":{"fontStyle":"italic","foreground":"#928374"}},{"scope":["constant","support.constant","variable.arguments"],"settings":{"foreground":"#8f3f71"}},{"scope":"constant.rgb-value","settings":{"foreground":"#3c3836"}},{"scope":"entity.name.selector","settings":{"foreground":"#427b58"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#b57614"}},{"scope":["entity.name.tag","punctuation.tag"],"settings":{"foreground":"#427b58"}},{"scope":["invalid","invalid.illegal"],"settings":{"foreground":"#cc241d"}},{"scope":"invalid.deprecated","settings":{"foreground":"#b16286"}},{"scope":"meta.selector","settings":{"foreground":"#427b58"}},{"scope":"meta.preprocessor","settings":{"foreground":"#af3a03"}},{"scope":"meta.preprocessor.string","settings":{"foreground":"#79740e"}},{"scope":"meta.preprocessor.numeric","settings":{"foreground":"#79740e"}},{"scope":"meta.header.diff","settings":{"foreground":"#af3a03"}},{"scope":"storage","settings":{"foreground":"#9d0006"}},{"scope":["storage.type","storage.modifier"],"settings":{"foreground":"#af3a03"}},{"scope":"string","settings":{"foreground":"#79740e"}},{"scope":"string.tag","settings":{"foreground":"#79740e"}},{"scope":"string.value","settings":{"foreground":"#79740e"}},{"scope":"string.regexp","settings":{"foreground":"#af3a03"}},{"scope":"string.escape","settings":{"foreground":"#9d0006"}},{"scope":"string.quasi","settings":{"foreground":"#427b58"}},{"scope":"string.entity","settings":{"foreground":"#79740e"}},{"scope":"object","settings":{"foreground":"#3c3836"}},{"scope":"module.node","settings":{"foreground":"#076678"}},{"scope":"support.type.property-name","settings":{"foreground":"#689d6a"}},{"scope":"keyword","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control","settings":{"foreground":"#9d0006"}},{"scope":"keyword.control.module","settings":{"foreground":"#427b58"}},{"scope":"keyword.control.less","settings":{"foreground":"#d79921"}},{"scope":"keyword.operator","settings":{"foreground":"#427b58"}},{"scope":"keyword.operator.new","settings":{"foreground":"#af3a03"}},{"scope":"keyword.other.unit","settings":{"foreground":"#79740e"}},{"scope":"metatag.php","settings":{"foreground":"#af3a03"}},{"scope":"support.function.git-rebase","settings":{"foreground":"#689d6a"}},{"scope":"constant.sha.git-rebase","settings":{"foreground":"#79740e"}},{"scope":["meta.type.name","meta.return.type","meta.return-type","meta.cast","meta.type.annotation","support.type","storage.type.cs","variable.class"],"settings":{"foreground":"#b57614"}},{"scope":["variable.this","support.variable"],"settings":{"foreground":"#8f3f71"}},{"scope":["entity.name","entity.static","entity.name.class.static.function","entity.name.function","entity.name.class","entity.name.type"],"settings":{"foreground":"#b57614"}},{"scope":["entity.function","entity.name.function.static"],"settings":{"foreground":"#427b58"}},{"scope":"entity.name.function.function-call","settings":{"foreground":"#427b58"}},{"scope":"support.function.builtin","settings":{"foreground":"#af3a03"}},{"scope":["entity.name.method","entity.name.method.function-call","entity.name.static.function-call"],"settings":{"foreground":"#689d6a"}},{"scope":"brace","settings":{"foreground":"#504945"}},{"scope":["meta.parameter.type.variable","variable.parameter","variable.name","variable.other","variable","string.constant.other.placeholder"],"settings":{"foreground":"#076678"}},{"scope":"prototype","settings":{"foreground":"#8f3f71"}},{"scope":["punctuation"],"settings":{"foreground":"#7c6f64"}},{"scope":"punctuation.quoted","settings":{"foreground":"#3c3836"}},{"scope":"punctuation.quasi","settings":{"foreground":"#9d0006"}},{"scope":["*url*","*link*","*uri*"],"settings":{"fontStyle":"underline"}},{"scope":["meta.function.python","entity.name.function.python"],"settings":{"foreground":"#427b58"}},{"scope":["storage.type.function.python","storage.modifier.declaration","storage.type.class.python","storage.type.string.python"],"settings":{"foreground":"#9d0006"}},{"scope":["storage.type.function.async.python"],"settings":{"foreground":"#9d0006"}},{"scope":"meta.function-call.generic","settings":{"foreground":"#076678"}},{"scope":"meta.function-call.arguments","settings":{"foreground":"#504945"}},{"scope":"entity.name.function.decorator","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"constant.other.caps","settings":{"fontStyle":"bold"}},{"scope":"keyword.operator.logical","settings":{"foreground":"#9d0006"}},{"scope":"punctuation.definition.logical-expression","settings":{"foreground":"#af3a03"}},{"scope":["string.interpolated.dollar.shell","string.interpolated.backtick.shell"],"settings":{"foreground":"#427b58"}},{"scope":"keyword.control.directive","settings":{"foreground":"#427b58"}},{"scope":"support.function.C99","settings":{"foreground":"#b57614"}},{"scope":["meta.function.cs","entity.name.function.cs","entity.name.type.namespace.cs"],"settings":{"foreground":"#79740e"}},{"scope":["keyword.other.using.cs","entity.name.variable.field.cs","entity.name.variable.local.cs","variable.other.readwrite.cs"],"settings":{"foreground":"#427b58"}},{"scope":["keyword.other.this.cs","keyword.other.base.cs"],"settings":{"foreground":"#8f3f71"}},{"scope":"meta.scope.prerequisites","settings":{"foreground":"#b57614"}},{"scope":"entity.name.function.target","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["storage.modifier.import.java","storage.modifier.package.java"],"settings":{"foreground":"#665c54"}},{"scope":["keyword.other.import.java","keyword.other.package.java"],"settings":{"foreground":"#427b58"}},{"scope":"storage.type.java","settings":{"foreground":"#b57614"}},{"scope":"storage.type.annotation","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"keyword.other.documentation.javadoc","settings":{"foreground":"#427b58"}},{"scope":"comment.block.javadoc variable.parameter.java","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":["source.java variable.other.object","source.java variable.other.definition.java"],"settings":{"foreground":"#3c3836"}},{"scope":"meta.function-parameters.lisp","settings":{"foreground":"#b57614"}},{"scope":"markup.underline","settings":{"fontStyle":"underline"}},{"scope":"string.other.link.title.markdown","settings":{"fontStyle":"underline","foreground":"#928374"}},{"scope":"markup.underline.link","settings":{"foreground":"#8f3f71"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"markup.heading","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.1.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#9d0006"}},{"scope":"heading.2.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#af3a03"}},{"scope":"heading.3.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#b57614"}},{"scope":"heading.4.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#79740e"}},{"scope":"heading.5.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#076678"}},{"scope":"heading.6.markdown entity.name.section.markdown","settings":{"fontStyle":"bold","foreground":"#8f3f71"}},{"scope":"markup.italic","settings":{"fontStyle":"italic"}},{"scope":"markup.inserted","settings":{"foreground":"#79740e"}},{"scope":"markup.deleted","settings":{"foreground":"#d65d0e"}},{"scope":"markup.changed","settings":{"foreground":"#af3a03"}},{"scope":"markup.punctuation.quote.beginning","settings":{"foreground":"#98971a"}},{"scope":"markup.punctuation.list.beginning","settings":{"foreground":"#076678"}},{"scope":["markup.inline.raw","markup.fenced_code.block"],"settings":{"foreground":"#427b58"}},{"scope":"string.quoted.double.json","settings":{"foreground":"#076678"}},{"scope":"entity.other.attribute-name.css","settings":{"foreground":"#af3a03"}},{"scope":"source.css meta.selector","settings":{"foreground":"#3c3836"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#af3a03"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#79740e"}},{"scope":["source.css support.function.transform","source.css support.function.timing-function","source.css support.function.misc"],"settings":{"foreground":"#9d0006"}},{"scope":["support.property-value","constant.rgb-value","support.property-value.scss","constant.rgb-value.scss"],"settings":{"foreground":"#d65d0e"}},{"scope":["entity.name.tag.css"],"settings":{"fontStyle":""}},{"scope":["punctuation.definition.tag"],"settings":{"foreground":"#076678"}},{"scope":["text.html entity.name.tag","text.html punctuation.tag"],"settings":{"fontStyle":"bold","foreground":"#427b58"}},{"scope":["source.js variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.ts variable.language"],"settings":{"foreground":"#af3a03"}},{"scope":["source.go storage.type"],"settings":{"foreground":"#b57614"}},{"scope":["source.go entity.name.import"],"settings":{"foreground":"#79740e"}},{"scope":["source.go keyword.package","source.go keyword.import"],"settings":{"foreground":"#427b58"}},{"scope":["source.go keyword.interface","source.go keyword.struct"],"settings":{"foreground":"#076678"}},{"scope":["source.go entity.name.type"],"settings":{"foreground":"#3c3836"}},{"scope":["source.go entity.name.function"],"settings":{"foreground":"#8f3f71"}},{"scope":["keyword.control.cucumber.table"],"settings":{"foreground":"#076678"}},{"scope":["source.reason string.double","source.reason string.regexp"],"settings":{"foreground":"#79740e"}},{"scope":["source.reason keyword.control.less"],"settings":{"foreground":"#427b58"}},{"scope":["source.reason entity.name.function"],"settings":{"foreground":"#076678"}},{"scope":["source.reason support.property-value","source.reason entity.name.filename"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell variable.other.member.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["source.powershell support.function.powershell"],"settings":{"foreground":"#b57614"}},{"scope":["source.powershell support.function.attribute.powershell"],"settings":{"foreground":"#665c54"}},{"scope":["source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell"],"settings":{"foreground":"#af3a03"}},{"scope":["support.function.be.latex","support.function.general.tex","support.function.section.latex","support.function.textbf.latex","support.function.textit.latex","support.function.texttt.latex","support.function.emph.latex","support.function.url.latex"],"settings":{"foreground":"#9d0006"}},{"scope":["support.class.math.block.tex","support.class.math.block.environment.latex"],"settings":{"foreground":"#af3a03"}},{"scope":["keyword.control.preamble.latex","keyword.control.include.latex"],"settings":{"foreground":"#8f3f71"}},{"scope":["support.class.latex"],"settings":{"foreground":"#427b58"}}],"type":"light"}'));export{e as default};