neondeck 1.0.0-beta.4

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 (760) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/DEVELOPMENT.md +310 -0
  3. package/LICENSE +21 -0
  4. package/README.md +128 -0
  5. package/SOUL.md +8 -0
  6. package/bin/neondeck.mjs +27 -0
  7. package/config/dashboard.json +208 -0
  8. package/config/dashboard.schema.json +207 -0
  9. package/dist/SOUL.md +8 -0
  10. package/dist/assets/app-BuuvLo98.js +3620 -0
  11. package/dist/assets/app-BuuvLo98.js.map +1 -0
  12. package/dist/assets/autopilot-CKgEx8yQ.js +68025 -0
  13. package/dist/assets/autopilot-CKgEx8yQ.js.map +1 -0
  14. package/dist/assets/briefing-DYVbJaqk.js +2 -0
  15. package/dist/assets/briefing-DoO-fJr1.js +22 -0
  16. package/dist/assets/briefing-DoO-fJr1.js.map +1 -0
  17. package/dist/assets/command-run-B2TWLpLL.js +20 -0
  18. package/dist/assets/command-run-B2TWLpLL.js.map +1 -0
  19. package/dist/assets/command-run-CzQra_Y7.js +2 -0
  20. package/dist/assets/display-assistant-CbCRBSYM.js +389 -0
  21. package/dist/assets/display-assistant-CbCRBSYM.js.map +1 -0
  22. package/dist/assets/fix-pr-ci-BlUl-2ht.js +46 -0
  23. package/dist/assets/fix-pr-ci-BlUl-2ht.js.map +1 -0
  24. package/dist/assets/fix-pr-ci-Dl1wpKXp.js +2 -0
  25. package/dist/assets/migrations/20260710061339_neondeck_pre_1_0_baseline/migration.sql +748 -0
  26. package/dist/assets/migrations/20260710061339_neondeck_pre_1_0_baseline/snapshot.json +7240 -0
  27. package/dist/assets/prepare-pr-worktree-CLzccRYh.js +2 -0
  28. package/dist/assets/prepare-pr-worktree-DxyTygiU.js +17 -0
  29. package/dist/assets/prepare-pr-worktree-DxyTygiU.js.map +1 -0
  30. package/dist/assets/push-pr-autofix-BFNSEASU.js +2 -0
  31. package/dist/assets/push-pr-autofix-DlVjw1IN.js +17 -0
  32. package/dist/assets/push-pr-autofix-DlVjw1IN.js.map +1 -0
  33. package/dist/assets/review-pr-for-human-B2j8wz2L.js +2 -0
  34. package/dist/assets/review-pr-for-human-DcGE-7wb.js +708 -0
  35. package/dist/assets/review-pr-for-human-DcGE-7wb.js.map +1 -0
  36. package/dist/assets/safety-CawD9GxD.js +2499 -0
  37. package/dist/assets/safety-CawD9GxD.js.map +1 -0
  38. package/dist/assets/scheduled-agent-instruction-CQgogBv3.js +22 -0
  39. package/dist/assets/scheduled-agent-instruction-CQgogBv3.js.map +1 -0
  40. package/dist/assets/scheduled-agent-instruction-Dr2ebZRD.js +2 -0
  41. package/dist/assets/scheduler-tick-Cy26qBld.js +105 -0
  42. package/dist/assets/scheduler-tick-Cy26qBld.js.map +1 -0
  43. package/dist/assets/skills/github-gh/SKILL.md +56 -0
  44. package/dist/assets/skills/neon-ci-fix/SKILL.md +15 -0
  45. package/dist/assets/skills/neon-docs-fix/SKILL.md +15 -0
  46. package/dist/assets/skills/neon-issue-triage/SKILL.md +13 -0
  47. package/dist/assets/skills/neon-pr-review/SKILL.md +19 -0
  48. package/dist/assets/skills/neondeck/SKILL.md +123 -0
  49. package/dist/assets/skills/neondeck-handoff/SKILL.md +31 -0
  50. package/dist/assets/triage-pr-event-BlE3GKNR.js +17 -0
  51. package/dist/assets/triage-pr-event-BlE3GKNR.js.map +1 -0
  52. package/dist/assets/triage-pr-event-hxUP587F.js +2 -0
  53. package/dist/assets/verify-then-push-pr-autofix-CIl5ZwZm.js +2 -0
  54. package/dist/assets/verify-then-push-pr-autofix-Djy0UFUv.js +75 -0
  55. package/dist/assets/verify-then-push-pr-autofix-Djy0UFUv.js.map +1 -0
  56. package/dist/config/dashboard.json +208 -0
  57. package/dist/config/dashboard.schema.json +207 -0
  58. package/dist/server.mjs +582 -0
  59. package/dist/server.mjs.map +1 -0
  60. package/dist/skills/github-gh/SKILL.md +56 -0
  61. package/dist/skills/neon-ci-fix/SKILL.md +15 -0
  62. package/dist/skills/neon-docs-fix/SKILL.md +15 -0
  63. package/dist/skills/neon-issue-triage/SKILL.md +13 -0
  64. package/dist/skills/neon-pr-review/SKILL.md +19 -0
  65. package/dist/skills/neondeck/SKILL.md +123 -0
  66. package/dist/skills/neondeck-handoff/SKILL.md +31 -0
  67. package/drizzle.config.ts +7 -0
  68. package/package.json +155 -0
  69. package/shared/patch-anchors.ts +78 -0
  70. package/src/agents/busywork-workflow.ts +24 -0
  71. package/src/agents/display-assistant.ts +134 -0
  72. package/src/agents/pr-review-assistant.ts +25 -0
  73. package/src/agents/scheduler-workflow.ts +20 -0
  74. package/src/agents/support/tools.ts +346 -0
  75. package/src/app.ts +1 -0
  76. package/src/cli/index.ts +560 -0
  77. package/src/cli/learning.ts +44 -0
  78. package/src/cli/mcp.ts +496 -0
  79. package/src/cli/modules.ts +107 -0
  80. package/src/cli/onboarding.ts +667 -0
  81. package/src/cli/options.ts +103 -0
  82. package/src/cli/output.ts +399 -0
  83. package/src/cli/preapprovals.ts +204 -0
  84. package/src/cli/prompts.ts +108 -0
  85. package/src/cli/types.ts +59 -0
  86. package/src/db.ts +41 -0
  87. package/src/desktop/open.ts +698 -0
  88. package/src/desktop/service.ts +863 -0
  89. package/src/domains/mcp/actions.ts +420 -0
  90. package/src/domains/mcp/config.ts +501 -0
  91. package/src/domains/mcp/format.ts +35 -0
  92. package/src/domains/mcp/gate.ts +188 -0
  93. package/src/domains/mcp/index.ts +9 -0
  94. package/src/domains/mcp/instructions.ts +18 -0
  95. package/src/domains/mcp/oauth.ts +1063 -0
  96. package/src/domains/mcp/policy.ts +15 -0
  97. package/src/domains/mcp/registry.ts +461 -0
  98. package/src/domains/mcp/schemas.ts +171 -0
  99. package/src/domains/mcp/stdio.ts +451 -0
  100. package/src/domains/mcp/store.ts +905 -0
  101. package/src/domains/mcp/tools.ts +119 -0
  102. package/src/lib/action-result.ts +51 -0
  103. package/src/lib/exec.ts +118 -0
  104. package/src/lib/git.ts +20 -0
  105. package/src/lib/report-html.ts +193 -0
  106. package/src/lib/sqlite.ts +51 -0
  107. package/src/lib/valibot.ts +33 -0
  108. package/src/modules/app-state/index.ts +5 -0
  109. package/src/modules/app-state/native-notifications.ts +76 -0
  110. package/src/modules/app-state/notification-events.ts +45 -0
  111. package/src/modules/app-state/notifications.ts +276 -0
  112. package/src/modules/app-state/types.ts +42 -0
  113. package/src/modules/app-state/workflow-summaries.ts +201 -0
  114. package/src/modules/autonomous-audit/index.ts +225 -0
  115. package/src/modules/autopilot/actions.ts +165 -0
  116. package/src/modules/autopilot/admissions.ts +865 -0
  117. package/src/modules/autopilot/approvals.ts +59 -0
  118. package/src/modules/autopilot/ci-fix-run.ts +1332 -0
  119. package/src/modules/autopilot/ci-fix.ts +692 -0
  120. package/src/modules/autopilot/comments.ts +426 -0
  121. package/src/modules/autopilot/fixtures.ts +344 -0
  122. package/src/modules/autopilot/github-facts.ts +303 -0
  123. package/src/modules/autopilot/index.ts +64 -0
  124. package/src/modules/autopilot/notifications.ts +271 -0
  125. package/src/modules/autopilot/push-support.ts +288 -0
  126. package/src/modules/autopilot/push.ts +661 -0
  127. package/src/modules/autopilot/recovery.ts +656 -0
  128. package/src/modules/autopilot/review-feedback.ts +651 -0
  129. package/src/modules/autopilot/review-support.ts +524 -0
  130. package/src/modules/autopilot/revision-run.ts +445 -0
  131. package/src/modules/autopilot/schemas.ts +485 -0
  132. package/src/modules/autopilot/state-mappers.ts +512 -0
  133. package/src/modules/autopilot/state-schemas.ts +451 -0
  134. package/src/modules/autopilot/state-store.ts +183 -0
  135. package/src/modules/autopilot/state.ts +255 -0
  136. package/src/modules/autopilot/triage-support.ts +234 -0
  137. package/src/modules/autopilot/triage.ts +156 -0
  138. package/src/modules/autopilot/utils.ts +145 -0
  139. package/src/modules/autopilot/worktree.ts +622 -0
  140. package/src/modules/autopilot-policy/config.ts +110 -0
  141. package/src/modules/autopilot-policy/index.ts +4 -0
  142. package/src/modules/autopilot-policy/risk.ts +359 -0
  143. package/src/modules/autopilot-policy/schemas.ts +284 -0
  144. package/src/modules/autopilot-policy/service.ts +304 -0
  145. package/src/modules/commands/actions.ts +112 -0
  146. package/src/modules/commands/handlers/index.ts +3 -0
  147. package/src/modules/commands/handlers/misc.ts +441 -0
  148. package/src/modules/commands/handlers/queue.ts +694 -0
  149. package/src/modules/commands/handlers/repo.ts +339 -0
  150. package/src/modules/commands/index.ts +5 -0
  151. package/src/modules/commands/registry.ts +157 -0
  152. package/src/modules/commands/runner.ts +152 -0
  153. package/src/modules/commands/schemas.ts +107 -0
  154. package/src/modules/commands/summaries.ts +92 -0
  155. package/src/modules/commands/utils.ts +113 -0
  156. package/src/modules/config/actions.ts +253 -0
  157. package/src/modules/config/events.ts +80 -0
  158. package/src/modules/config/files.ts +9 -0
  159. package/src/modules/config/history.ts +74 -0
  160. package/src/modules/config/index.ts +9 -0
  161. package/src/modules/config/mutations/dashboard.ts +319 -0
  162. package/src/modules/config/mutations/execution.ts +89 -0
  163. package/src/modules/config/mutations/models.ts +467 -0
  164. package/src/modules/config/mutations/providers.ts +163 -0
  165. package/src/modules/config/mutations/repos.ts +620 -0
  166. package/src/modules/config/read.ts +135 -0
  167. package/src/modules/config/result.ts +66 -0
  168. package/src/modules/config/schemas.ts +181 -0
  169. package/src/modules/docs-drift/index.ts +1 -0
  170. package/src/modules/docs-drift/service.ts +863 -0
  171. package/src/modules/execution/actions.ts +35 -0
  172. package/src/modules/execution/approvals.ts +322 -0
  173. package/src/modules/execution/exedev/checkouts.ts +356 -0
  174. package/src/modules/execution/exedev/context.ts +286 -0
  175. package/src/modules/execution/index.ts +7 -0
  176. package/src/modules/execution/policy.ts +102 -0
  177. package/src/modules/execution/run.ts +589 -0
  178. package/src/modules/execution/schemas.ts +116 -0
  179. package/src/modules/execution/scope.ts +137 -0
  180. package/src/modules/execution/store.ts +320 -0
  181. package/src/modules/execution/utils.ts +105 -0
  182. package/src/modules/execution-policy/index.ts +424 -0
  183. package/src/modules/flue/execution-context.ts +41 -0
  184. package/src/modules/github/actions.ts +334 -0
  185. package/src/modules/github/checks.ts +484 -0
  186. package/src/modules/github/client.ts +110 -0
  187. package/src/modules/github/comments.ts +204 -0
  188. package/src/modules/github/errors.ts +50 -0
  189. package/src/modules/github/index.ts +92 -0
  190. package/src/modules/github/issues.ts +116 -0
  191. package/src/modules/github/pr-file-cache.ts +264 -0
  192. package/src/modules/github/pull-requests.ts +384 -0
  193. package/src/modules/github/queue.ts +342 -0
  194. package/src/modules/github/reviews.ts +1421 -0
  195. package/src/modules/github/schemas.ts +794 -0
  196. package/src/modules/github/state-truncation.ts +31 -0
  197. package/src/modules/handoff/index.ts +2 -0
  198. package/src/modules/handoff/schemas.ts +61 -0
  199. package/src/modules/handoff/service.ts +587 -0
  200. package/src/modules/hygiene/index.ts +1 -0
  201. package/src/modules/hygiene/service.ts +513 -0
  202. package/src/modules/kilo/actions.ts +229 -0
  203. package/src/modules/kilo/ci-fix-run-reconcile.ts +299 -0
  204. package/src/modules/kilo/docs-drift-boundary.ts +178 -0
  205. package/src/modules/kilo/index.ts +8 -0
  206. package/src/modules/kilo/notifications.ts +295 -0
  207. package/src/modules/kilo/process.ts +637 -0
  208. package/src/modules/kilo/results/actions.ts +66 -0
  209. package/src/modules/kilo/results/gates.ts +227 -0
  210. package/src/modules/kilo/results/index.ts +23 -0
  211. package/src/modules/kilo/results/schemas.ts +112 -0
  212. package/src/modules/kilo/results/service.ts +512 -0
  213. package/src/modules/kilo/results/state.ts +508 -0
  214. package/src/modules/kilo/results/verify.ts +328 -0
  215. package/src/modules/kilo/revision-reconcile.ts +187 -0
  216. package/src/modules/kilo/runtime-facts.ts +128 -0
  217. package/src/modules/kilo/schemas.ts +265 -0
  218. package/src/modules/kilo/service.ts +714 -0
  219. package/src/modules/kilo/sessions-adapters.ts +343 -0
  220. package/src/modules/kilo/sessions.ts +446 -0
  221. package/src/modules/kilo/store.ts +689 -0
  222. package/src/modules/kilo/utils.ts +166 -0
  223. package/src/modules/learning/automation-health.ts +441 -0
  224. package/src/modules/learning/automation-memory.ts +179 -0
  225. package/src/modules/learning/index.ts +6 -0
  226. package/src/modules/learning/observability.ts +616 -0
  227. package/src/modules/learning/operator.ts +404 -0
  228. package/src/modules/learning/reviews/agents.ts +33 -0
  229. package/src/modules/learning/reviews/complete.ts +321 -0
  230. package/src/modules/learning/reviews/context.ts +145 -0
  231. package/src/modules/learning/reviews/events.ts +306 -0
  232. package/src/modules/learning/reviews/index.ts +6 -0
  233. package/src/modules/learning/reviews/pr-cadence.ts +157 -0
  234. package/src/modules/learning/reviews/pr-context.ts +749 -0
  235. package/src/modules/learning/reviews/prepare.ts +387 -0
  236. package/src/modules/learning/reviews/schemas.ts +184 -0
  237. package/src/modules/learning/reviews/store.ts +405 -0
  238. package/src/modules/learning/skill-patches/actions.ts +86 -0
  239. package/src/modules/learning/skill-patches/index.ts +3 -0
  240. package/src/modules/learning/skill-patches/schemas.ts +60 -0
  241. package/src/modules/learning/skill-patches/service.ts +571 -0
  242. package/src/modules/learning/skill-patches/support.ts +417 -0
  243. package/src/modules/memory/actions.ts +183 -0
  244. package/src/modules/memory/candidates.ts +525 -0
  245. package/src/modules/memory/events.ts +2 -0
  246. package/src/modules/memory/index.ts +6 -0
  247. package/src/modules/memory/prompt.ts +214 -0
  248. package/src/modules/memory/schemas.ts +170 -0
  249. package/src/modules/memory/service.ts +578 -0
  250. package/src/modules/memory/store.ts +489 -0
  251. package/src/modules/pr-events/actions.ts +191 -0
  252. package/src/modules/pr-events/index.ts +45 -0
  253. package/src/modules/pr-events/schemas.ts +186 -0
  254. package/src/modules/pr-events/service.ts +1414 -0
  255. package/src/modules/pr-events/target.ts +222 -0
  256. package/src/modules/pr-events/utils.ts +85 -0
  257. package/src/modules/pr-events/watermarks.ts +308 -0
  258. package/src/modules/pr-local-diffs/index.ts +334 -0
  259. package/src/modules/pr-review-assist/actions.ts +199 -0
  260. package/src/modules/pr-review-assist/index.ts +3 -0
  261. package/src/modules/pr-review-assist/schemas.ts +74 -0
  262. package/src/modules/pr-review-assist/service.ts +656 -0
  263. package/src/modules/prepared-diffs/actions.ts +132 -0
  264. package/src/modules/prepared-diffs/index.ts +53 -0
  265. package/src/modules/prepared-diffs/schemas.ts +255 -0
  266. package/src/modules/prepared-diffs/service.ts +777 -0
  267. package/src/modules/prepared-diffs/store.ts +606 -0
  268. package/src/modules/reports/index.ts +1 -0
  269. package/src/modules/reports/service.ts +322 -0
  270. package/src/modules/repos/index.ts +3 -0
  271. package/src/modules/repos/model-discovery.ts +233 -0
  272. package/src/modules/repos/providers.ts +194 -0
  273. package/src/modules/repos/registry.ts +232 -0
  274. package/src/modules/runtime/agent-config.ts +167 -0
  275. package/src/modules/runtime/doctor.ts +528 -0
  276. package/src/modules/runtime/env.ts +123 -0
  277. package/src/modules/runtime/index.ts +12 -0
  278. package/src/modules/runtime/local-api-auth.ts +43 -0
  279. package/src/modules/runtime/metrics.ts +211 -0
  280. package/src/modules/runtime/skills-actions.ts +141 -0
  281. package/src/modules/runtime/skills.ts +689 -0
  282. package/src/modules/runtime/soul.ts +68 -0
  283. package/src/modules/runtime/status-database.ts +252 -0
  284. package/src/modules/runtime/status-schema.ts +149 -0
  285. package/src/modules/runtime/status.ts +482 -0
  286. package/src/modules/runtime/subagents.ts +37 -0
  287. package/src/modules/runtime/utility-model.ts +47 -0
  288. package/src/modules/safety/index.ts +3 -0
  289. package/src/modules/safety/policy-entries.ts +2432 -0
  290. package/src/modules/safety/schemas.ts +63 -0
  291. package/src/modules/safety/service.ts +58 -0
  292. package/src/modules/safety/tools.ts +15 -0
  293. package/src/modules/scheduled-tasks/actions.ts +113 -0
  294. package/src/modules/scheduled-tasks/dispatch.ts +105 -0
  295. package/src/modules/scheduled-tasks/index.ts +6 -0
  296. package/src/modules/scheduled-tasks/schemas.ts +91 -0
  297. package/src/modules/scheduled-tasks/service.ts +296 -0
  298. package/src/modules/scheduled-tasks/store.ts +814 -0
  299. package/src/modules/scheduled-tasks/triggers.ts +87 -0
  300. package/src/modules/scheduler/actions.ts +37 -0
  301. package/src/modules/scheduler/dispatch.ts +126 -0
  302. package/src/modules/scheduler/index.ts +4 -0
  303. package/src/modules/scheduler/lease.ts +247 -0
  304. package/src/modules/scheduler/pr-watch-event-deltas.ts +367 -0
  305. package/src/modules/scheduler/pr-watch-events.ts +834 -0
  306. package/src/modules/scheduler/schemas.ts +79 -0
  307. package/src/modules/scheduler/service.ts +228 -0
  308. package/src/modules/scheduler/utils.ts +106 -0
  309. package/src/modules/scheduler/workflow-invocation.ts +40 -0
  310. package/src/modules/sessions/actions.ts +213 -0
  311. package/src/modules/sessions/active-session.ts +46 -0
  312. package/src/modules/sessions/agent-context.ts +146 -0
  313. package/src/modules/sessions/approval-nudges.ts +156 -0
  314. package/src/modules/sessions/events.ts +58 -0
  315. package/src/modules/sessions/index.ts +10 -0
  316. package/src/modules/sessions/queries.ts +252 -0
  317. package/src/modules/sessions/references.ts +113 -0
  318. package/src/modules/sessions/schemas.ts +263 -0
  319. package/src/modules/sessions/service.ts +845 -0
  320. package/src/modules/sessions/store.ts +559 -0
  321. package/src/modules/sessions/summaries.ts +129 -0
  322. package/src/modules/sessions/utils.ts +18 -0
  323. package/src/modules/watches/actions.ts +115 -0
  324. package/src/modules/watches/index.ts +6 -0
  325. package/src/modules/watches/polling.ts +245 -0
  326. package/src/modules/watches/references.ts +293 -0
  327. package/src/modules/watches/schemas.ts +156 -0
  328. package/src/modules/watches/service.ts +558 -0
  329. package/src/modules/watches/store.ts +398 -0
  330. package/src/modules/watches/utils.ts +51 -0
  331. package/src/modules/worktree-verification/index.ts +256 -0
  332. package/src/modules/worktrees/access.ts +129 -0
  333. package/src/modules/worktrees/actions.ts +108 -0
  334. package/src/modules/worktrees/cleanup.ts +98 -0
  335. package/src/modules/worktrees/errors.ts +38 -0
  336. package/src/modules/worktrees/git.ts +48 -0
  337. package/src/modules/worktrees/index.ts +5 -0
  338. package/src/modules/worktrees/locks.ts +192 -0
  339. package/src/modules/worktrees/paths.ts +209 -0
  340. package/src/modules/worktrees/queries.ts +31 -0
  341. package/src/modules/worktrees/schemas.ts +234 -0
  342. package/src/modules/worktrees/service.ts +657 -0
  343. package/src/modules/worktrees/store.ts +414 -0
  344. package/src/repo-edit/actions.ts +129 -0
  345. package/src/repo-edit/audit.ts +180 -0
  346. package/src/repo-edit/fuzzy-replace.ts +256 -0
  347. package/src/repo-edit/git.ts +784 -0
  348. package/src/repo-edit/index.ts +4 -0
  349. package/src/repo-edit/locks.ts +27 -0
  350. package/src/repo-edit/patch-parser.ts +212 -0
  351. package/src/repo-edit/patch-service.ts +572 -0
  352. package/src/repo-edit/path-safety.ts +294 -0
  353. package/src/repo-edit/schemas.ts +220 -0
  354. package/src/repo-edit/service.ts +488 -0
  355. package/src/repo-edit/support.ts +459 -0
  356. package/src/runtime-home/app-db/index.ts +73 -0
  357. package/src/runtime-home/app-db/migrate.ts +491 -0
  358. package/src/runtime-home/app-db/migrations/20260710061339_neondeck_pre_1_0_baseline/migration.sql +748 -0
  359. package/src/runtime-home/app-db/migrations/20260710061339_neondeck_pre_1_0_baseline/snapshot.json +7240 -0
  360. package/src/runtime-home/app-db/reconcile.ts +155 -0
  361. package/src/runtime-home/app-db/schema.ts +1118 -0
  362. package/src/runtime-home/bootstrap.ts +171 -0
  363. package/src/runtime-home/defaults.ts +42 -0
  364. package/src/runtime-home/files.ts +193 -0
  365. package/src/runtime-home/index.ts +68 -0
  366. package/src/runtime-home/paths.ts +75 -0
  367. package/src/runtime-home/schemas.ts +485 -0
  368. package/src/sandboxes/exedev.ts +676 -0
  369. package/src/server/app.ts +5 -0
  370. package/src/server/autopilot-push-dispatch.ts +326 -0
  371. package/src/server/create-app.ts +160 -0
  372. package/src/server/events/config-stream.ts +67 -0
  373. package/src/server/events/notification-stream.ts +49 -0
  374. package/src/server/events/session-stream.ts +49 -0
  375. package/src/server/http.ts +56 -0
  376. package/src/server/learning-hooks.ts +430 -0
  377. package/src/server/middleware.ts +81 -0
  378. package/src/server/routes/autopilot.ts +318 -0
  379. package/src/server/routes/commands.ts +12 -0
  380. package/src/server/routes/config.ts +124 -0
  381. package/src/server/routes/execution.ts +71 -0
  382. package/src/server/routes/github.ts +372 -0
  383. package/src/server/routes/handoff.ts +69 -0
  384. package/src/server/routes/kilo.ts +179 -0
  385. package/src/server/routes/learning.ts +384 -0
  386. package/src/server/routes/mcp.ts +301 -0
  387. package/src/server/routes/memory.ts +99 -0
  388. package/src/server/routes/metrics.ts +12 -0
  389. package/src/server/routes/notifications.ts +48 -0
  390. package/src/server/routes/repo-edit.ts +115 -0
  391. package/src/server/routes/reports.ts +127 -0
  392. package/src/server/routes/repos.ts +50 -0
  393. package/src/server/routes/runtime.ts +48 -0
  394. package/src/server/routes/safety.ts +13 -0
  395. package/src/server/routes/scheduled-tasks.ts +58 -0
  396. package/src/server/routes/scheduler.ts +13 -0
  397. package/src/server/routes/sessions.ts +216 -0
  398. package/src/server/routes/skills.ts +103 -0
  399. package/src/server/routes/watches.ts +81 -0
  400. package/src/server/routes/workflows.ts +21 -0
  401. package/src/server/routes/worktrees.ts +64 -0
  402. package/src/server/scheduler-workflow.ts +541 -0
  403. package/src/server/serve.ts +100 -0
  404. package/src/setup.ts +162 -0
  405. package/src/skills/github-gh/SKILL.md +56 -0
  406. package/src/skills/neon-ci-fix/SKILL.md +15 -0
  407. package/src/skills/neon-docs-fix/SKILL.md +15 -0
  408. package/src/skills/neon-issue-triage/SKILL.md +13 -0
  409. package/src/skills/neon-pr-review/SKILL.md +19 -0
  410. package/src/skills/neondeck/SKILL.md +123 -0
  411. package/src/skills/neondeck-handoff/SKILL.md +31 -0
  412. package/src/workflows/briefing.ts +14 -0
  413. package/src/workflows/command-run.ts +15 -0
  414. package/src/workflows/comment-pr-autofix-result.ts +10 -0
  415. package/src/workflows/curate_learning_store.ts +37 -0
  416. package/src/workflows/dev-doctor.ts +10 -0
  417. package/src/workflows/fix-pr-ci-failure.ts +10 -0
  418. package/src/workflows/fix-pr-ci.ts +15 -0
  419. package/src/workflows/fix-pr-review-feedback.ts +10 -0
  420. package/src/workflows/handoff_to_kilo.ts +10 -0
  421. package/src/workflows/prepare-pr-worktree.ts +10 -0
  422. package/src/workflows/promote_kilo_result.ts +10 -0
  423. package/src/workflows/push-pr-autofix.ts +10 -0
  424. package/src/workflows/reconcile_kilo_task.ts +10 -0
  425. package/src/workflows/review-pr-for-human.ts +15 -0
  426. package/src/workflows/review_conversation_for_learning.ts +37 -0
  427. package/src/workflows/review_kilo_result.ts +10 -0
  428. package/src/workflows/review_pr_batch_for_learning.ts +37 -0
  429. package/src/workflows/scheduled-agent-instruction.ts +16 -0
  430. package/src/workflows/scheduler-tick.ts +10 -0
  431. package/src/workflows/summarize_kilo_session.ts +25 -0
  432. package/src/workflows/triage-pr-event.ts +10 -0
  433. package/src/workflows/verify-pr-worktree.ts +10 -0
  434. package/src/workflows/verify-then-push-pr-autofix.ts +82 -0
  435. package/src/workflows/verify_kilo_result.ts +10 -0
  436. package/src/workflows/watch-pr.ts +10 -0
  437. package/web/dist/assets/GitHubPrReview-QK9oqeDs.js +2 -0
  438. package/web/dist/assets/MultiFileView-CMm6tA9f.js +2970 -0
  439. package/web/dist/assets/abap-CLvhMVsD.js +1 -0
  440. package/web/dist/assets/actionscript-3--17pq3dv.js +1 -0
  441. package/web/dist/assets/ada-C5qYipkI.js +1 -0
  442. package/web/dist/assets/andromeeda-vGVdxbeo.js +1 -0
  443. package/web/dist/assets/angular-html-BVBpGdXr.js +1 -0
  444. package/web/dist/assets/angular-ts-BfdufMKP.js +1 -0
  445. package/web/dist/assets/apache-U0d_L8uA.js +1 -0
  446. package/web/dist/assets/apex-VAyPSnFM.js +1 -0
  447. package/web/dist/assets/apl-DWBSSoBH.js +1 -0
  448. package/web/dist/assets/applescript-CCn79oCD.js +1 -0
  449. package/web/dist/assets/ara-4CJ0cIlV.js +1 -0
  450. package/web/dist/assets/asciidoc-DE70LPWp.js +1 -0
  451. package/web/dist/assets/asm-Cmm7eHzH.js +1 -0
  452. package/web/dist/assets/astro-3LtMP0Sq.js +1 -0
  453. package/web/dist/assets/aurora-x-CDeNXAV0.js +1 -0
  454. package/web/dist/assets/awk-BWXHIvNe.js +1 -0
  455. package/web/dist/assets/ayu-dark-DluEY0Gj.js +1 -0
  456. package/web/dist/assets/ayu-light-C3h-C4tm.js +1 -0
  457. package/web/dist/assets/ayu-mirage-Bqwy1Gya.js +1 -0
  458. package/web/dist/assets/ballerina-B7ZEbQpA.js +1 -0
  459. package/web/dist/assets/bat-Bo4NYOV-.js +1 -0
  460. package/web/dist/assets/beancount-D-usSTwE.js +1 -0
  461. package/web/dist/assets/berry-DKpUyyne.js +1 -0
  462. package/web/dist/assets/bibtex-Ci_nEsc7.js +1 -0
  463. package/web/dist/assets/bicep-CUHmPFLl.js +1 -0
  464. package/web/dist/assets/bird2-C6vDhewU.js +1 -0
  465. package/web/dist/assets/blade-llJRbbtR.js +1 -0
  466. package/web/dist/assets/bsl-BkkzgIyY.js +1 -0
  467. package/web/dist/assets/c-Wt1voDr2.js +1 -0
  468. package/web/dist/assets/c3-BFHwR3_K.js +1 -0
  469. package/web/dist/assets/cadence-CQ2zXKGN.js +1 -0
  470. package/web/dist/assets/cairo-DLTphjLi.js +1 -0
  471. package/web/dist/assets/catppuccin-frappe-3VR1Za6u.js +1 -0
  472. package/web/dist/assets/catppuccin-latte-DwIHMF0Q.js +1 -0
  473. package/web/dist/assets/catppuccin-macchiato-DYnBP6_5.js +1 -0
  474. package/web/dist/assets/catppuccin-mocha-DYhrFGRu.js +1 -0
  475. package/web/dist/assets/clarity-SemFz856.js +1 -0
  476. package/web/dist/assets/clojure-DqKBuwfJ.js +1 -0
  477. package/web/dist/assets/cmake-Bj61d0ZC.js +1 -0
  478. package/web/dist/assets/cobol-x_HIyl2P.js +1 -0
  479. package/web/dist/assets/codeowners-C8r90Shi.js +1 -0
  480. package/web/dist/assets/codeql-oeQT6MSM.js +1 -0
  481. package/web/dist/assets/coffee-CThvmt4R.js +1 -0
  482. package/web/dist/assets/common-lisp-Cv5bFMCO.js +1 -0
  483. package/web/dist/assets/coq-BrsZFFmf.js +1 -0
  484. package/web/dist/assets/cpp-NtAeskI3.js +1 -0
  485. package/web/dist/assets/crystal-DNu_sX0G.js +1 -0
  486. package/web/dist/assets/csharp-oqKa8noW.js +1 -0
  487. package/web/dist/assets/css-DJp_X0uY.js +1 -0
  488. package/web/dist/assets/csv-Dx-8-gkx.js +1 -0
  489. package/web/dist/assets/cue-CE9AQfxI.js +1 -0
  490. package/web/dist/assets/cypher-ClKdZ_lG.js +1 -0
  491. package/web/dist/assets/d-qD-0Kul2.js +1 -0
  492. package/web/dist/assets/dark-plus-Cs2F2srj.js +1 -0
  493. package/web/dist/assets/dart-CnvKMtbv.js +1 -0
  494. package/web/dist/assets/dax-BkyTk9wS.js +1 -0
  495. package/web/dist/assets/desktop-Dlh5hvp9.js +1 -0
  496. package/web/dist/assets/diff-woXpYk--.js +1 -0
  497. package/web/dist/assets/docker-IyjqRm3v.js +1 -0
  498. package/web/dist/assets/dotenv-_5a1GRtc.js +1 -0
  499. package/web/dist/assets/dracula-BHWKrbxM.js +1 -0
  500. package/web/dist/assets/dracula-soft-5eyTD99u.js +1 -0
  501. package/web/dist/assets/dream-maker-DW3nJb8Q.js +1 -0
  502. package/web/dist/assets/edge-ozw5tpLl.js +1 -0
  503. package/web/dist/assets/elixir-VhA6FeZt.js +1 -0
  504. package/web/dist/assets/elm-dREJmIFz.js +1 -0
  505. package/web/dist/assets/emacs-lisp-B4R74twV.js +1 -0
  506. package/web/dist/assets/erb-CIg6G69l.js +1 -0
  507. package/web/dist/assets/erlang-Cphh6RMH.js +1 -0
  508. package/web/dist/assets/everforest-dark-sB-x3p7T.js +1 -0
  509. package/web/dist/assets/everforest-light-Df2xbC6M.js +1 -0
  510. package/web/dist/assets/fennel-DQxkIbk2.js +1 -0
  511. package/web/dist/assets/fish-BJitypiv.js +1 -0
  512. package/web/dist/assets/fluent-C03EYrpw.js +1 -0
  513. package/web/dist/assets/fortran-fixed-form-DEKoE2YW.js +1 -0
  514. package/web/dist/assets/fortran-free-form-CYNrtFtB.js +1 -0
  515. package/web/dist/assets/fsharp-D13ZGOAj.js +1 -0
  516. package/web/dist/assets/gdresource-C0sCabJj.js +1 -0
  517. package/web/dist/assets/gdscript-Cp2uCuqX.js +1 -0
  518. package/web/dist/assets/gdshader-CBce3t8t.js +1 -0
  519. package/web/dist/assets/genie-CV2tkWYe.js +1 -0
  520. package/web/dist/assets/gherkin-DExj1W_8.js +1 -0
  521. package/web/dist/assets/git-commit-BSykSTBG.js +1 -0
  522. package/web/dist/assets/git-rebase-B44mJPta.js +1 -0
  523. package/web/dist/assets/github-dark-C-LZuMrd.js +1 -0
  524. package/web/dist/assets/github-dark-default-DXG-b-1a.js +1 -0
  525. package/web/dist/assets/github-dark-dimmed-Bx1FflLF.js +1 -0
  526. package/web/dist/assets/github-dark-high-contrast-B_tTalzw.js +1 -0
  527. package/web/dist/assets/github-light-EUqPIrTm.js +1 -0
  528. package/web/dist/assets/github-light-default-BXViO-2h.js +1 -0
  529. package/web/dist/assets/github-light-high-contrast-B68TUdTA.js +1 -0
  530. package/web/dist/assets/gleam-CSRkHgEL.js +1 -0
  531. package/web/dist/assets/glimmer-js-vH_gHG0-.js +1 -0
  532. package/web/dist/assets/glimmer-ts--abOzSAQ.js +1 -0
  533. package/web/dist/assets/glsl-Dv5r7kPw.js +1 -0
  534. package/web/dist/assets/gn-ilITqXS6.js +1 -0
  535. package/web/dist/assets/gnuplot-7GGW24-e.js +1 -0
  536. package/web/dist/assets/go-rLFTqkRN.js +1 -0
  537. package/web/dist/assets/graphql-CB4jsw2E.js +1 -0
  538. package/web/dist/assets/groovy-CacY0gHj.js +1 -0
  539. package/web/dist/assets/gruvbox-dark-hard-C820rvS2.js +1 -0
  540. package/web/dist/assets/gruvbox-dark-medium-BPjhmG05.js +1 -0
  541. package/web/dist/assets/gruvbox-dark-soft-MrdJrrXF.js +1 -0
  542. package/web/dist/assets/gruvbox-light-hard-BC_s9l72.js +1 -0
  543. package/web/dist/assets/gruvbox-light-medium-BAWPOn9u.js +1 -0
  544. package/web/dist/assets/gruvbox-light-soft-BSMLrYjP.js +1 -0
  545. package/web/dist/assets/hack-DvEYX148.js +1 -0
  546. package/web/dist/assets/haml-zE6W3STP.js +1 -0
  547. package/web/dist/assets/handlebars-CzBR2SDs.js +1 -0
  548. package/web/dist/assets/haskell-D8IpX4py.js +1 -0
  549. package/web/dist/assets/haxe-OTjmBuCE.js +1 -0
  550. package/web/dist/assets/hcl-Dh228itO.js +1 -0
  551. package/web/dist/assets/hjson-CxZEssPk.js +1 -0
  552. package/web/dist/assets/hlsl-Cvrh5tZx.js +1 -0
  553. package/web/dist/assets/horizon-CE9ld1lL.js +1 -0
  554. package/web/dist/assets/horizon-bright-DSNQnXHK.js +1 -0
  555. package/web/dist/assets/houston-CsvMBhTu.js +1 -0
  556. package/web/dist/assets/html-C8UlPnhE.js +1 -0
  557. package/web/dist/assets/html-derivative-CY6NRz-J.js +1 -0
  558. package/web/dist/assets/http-Cyd7bS_S.js +1 -0
  559. package/web/dist/assets/hurl-CWPsiEpf.js +1 -0
  560. package/web/dist/assets/hxml-B0Qn7Nwc.js +1 -0
  561. package/web/dist/assets/hy-CZbG8q4J.js +1 -0
  562. package/web/dist/assets/imba-DsUTQ-LC.js +1 -0
  563. package/web/dist/assets/index-DqZpo0Jd.js +44 -0
  564. package/web/dist/assets/index-_jKCE4ks.css +2 -0
  565. package/web/dist/assets/ini-B5eOa1yu.js +1 -0
  566. package/web/dist/assets/java-CGc3VwQr.js +1 -0
  567. package/web/dist/assets/javascript-CUt1pgmJ.js +1 -0
  568. package/web/dist/assets/jinja-CD-Z-FLd.js +1 -0
  569. package/web/dist/assets/jison-imPNup1l.js +1 -0
  570. package/web/dist/assets/json-Bg9ijW3F.js +1 -0
  571. package/web/dist/assets/json5-BR5RXkoi.js +1 -0
  572. package/web/dist/assets/jsonc-CYpm1nAK.js +1 -0
  573. package/web/dist/assets/jsonl-CmCQp5Yx.js +1 -0
  574. package/web/dist/assets/jsonnet-CJTPZ8u_.js +1 -0
  575. package/web/dist/assets/jssm-DXw9l8Rf.js +1 -0
  576. package/web/dist/assets/jsx-CY6oMTks.js +1 -0
  577. package/web/dist/assets/julia-Dc3O-irA.js +1 -0
  578. package/web/dist/assets/just-BhOq_Kbv.js +1 -0
  579. package/web/dist/assets/kanagawa-dragon-CXtmUGW6.js +1 -0
  580. package/web/dist/assets/kanagawa-lotus-BN08jTvb.js +1 -0
  581. package/web/dist/assets/kanagawa-wave-CTweb8Dz.js +1 -0
  582. package/web/dist/assets/kdl-CsD5j6eV.js +1 -0
  583. package/web/dist/assets/kotlin-DhhofPvG.js +1 -0
  584. package/web/dist/assets/kusto-C7mF5XQf.js +1 -0
  585. package/web/dist/assets/laserwave-C_8bwKvT.js +1 -0
  586. package/web/dist/assets/latex-Cu4Y1d5w.js +1 -0
  587. package/web/dist/assets/lean-CewbzKMR.js +1 -0
  588. package/web/dist/assets/less-DVTAwKKz.js +1 -0
  589. package/web/dist/assets/light-plus-DVQuIRkW.js +1 -0
  590. package/web/dist/assets/liquid-CvXMrjlQ.js +1 -0
  591. package/web/dist/assets/llvm-Cm23YOpf.js +1 -0
  592. package/web/dist/assets/log-BNLmms1o.js +1 -0
  593. package/web/dist/assets/logo-Cluzi2Zq.js +1 -0
  594. package/web/dist/assets/lua-BjLEUjKY.js +1 -0
  595. package/web/dist/assets/luau-FMPmPwt6.js +1 -0
  596. package/web/dist/assets/make-Dixweg8N.js +1 -0
  597. package/web/dist/assets/markdown-BYOwaDjH.js +1 -0
  598. package/web/dist/assets/marko-DvhNOisQ.js +1 -0
  599. package/web/dist/assets/material-theme-Bm3Qr25_.js +1 -0
  600. package/web/dist/assets/material-theme-darker-2IIEA8gg.js +1 -0
  601. package/web/dist/assets/material-theme-lighter-uhdI0v04.js +1 -0
  602. package/web/dist/assets/material-theme-ocean-CHQ94UKr.js +1 -0
  603. package/web/dist/assets/material-theme-palenight-B5W6OYN7.js +1 -0
  604. package/web/dist/assets/matlab-D7qyCx1q.js +1 -0
  605. package/web/dist/assets/mdc-Bm9TpL1X.js +1 -0
  606. package/web/dist/assets/mdx-DQZ5AkYe.js +1 -0
  607. package/web/dist/assets/mermaid-Bk4SNUv9.js +1 -0
  608. package/web/dist/assets/min-dark-BSWPekZh.js +1 -0
  609. package/web/dist/assets/min-light-DDpmG2fV.js +1 -0
  610. package/web/dist/assets/mipsasm-BMqwQI7S.js +1 -0
  611. package/web/dist/assets/mojo-BgCJLMeH.js +1 -0
  612. package/web/dist/assets/monokai-CdkpiU2Y.js +1 -0
  613. package/web/dist/assets/moonbit-CaWjb8XO.js +1 -0
  614. package/web/dist/assets/move-B1IS1UjX.js +1 -0
  615. package/web/dist/assets/narrat-_X_XdTYD.js +1 -0
  616. package/web/dist/assets/nextflow-BJtWHP5T.js +1 -0
  617. package/web/dist/assets/nextflow-groovy-DJMQeKeT.js +1 -0
  618. package/web/dist/assets/nginx-Bhc82uuv.js +1 -0
  619. package/web/dist/assets/night-owl-DhmEMT88.js +1 -0
  620. package/web/dist/assets/night-owl-light-eJ-hLW7d.js +1 -0
  621. package/web/dist/assets/nim-DXTVBFnF.js +1 -0
  622. package/web/dist/assets/nix-IvuFDN5E.js +1 -0
  623. package/web/dist/assets/nord-Cb4Vim4T.js +1 -0
  624. package/web/dist/assets/nushell-DcLAeLz5.js +1 -0
  625. package/web/dist/assets/objective-c-D1A_Heim.js +1 -0
  626. package/web/dist/assets/objective-cpp-BsSzOQcm.js +1 -0
  627. package/web/dist/assets/ocaml-O90oeIOV.js +1 -0
  628. package/web/dist/assets/odin-B1RWQWA5.js +1 -0
  629. package/web/dist/assets/one-dark-pro-CLwyXe_n.js +1 -0
  630. package/web/dist/assets/one-light-D7Lr4KcI.js +1 -0
  631. package/web/dist/assets/openscad-BUDT5pXO.js +1 -0
  632. package/web/dist/assets/pascal-4ZHwLPI5.js +1 -0
  633. package/web/dist/assets/perl-C7veXV9z.js +1 -0
  634. package/web/dist/assets/php-BRiuMnnr.js +1 -0
  635. package/web/dist/assets/pierre-dark-CpLgRqie.js +1 -0
  636. package/web/dist/assets/pierre-dark-protanopia-deuteranopia-B35FxJx-.js +1 -0
  637. package/web/dist/assets/pierre-dark-soft-kZQmAZld.js +1 -0
  638. package/web/dist/assets/pierre-dark-tritanopia-CpjhbsIL.js +1 -0
  639. package/web/dist/assets/pierre-dark-vibrant-CpQYzh95.js +1 -0
  640. package/web/dist/assets/pierre-light-CoaEpmwp.js +1 -0
  641. package/web/dist/assets/pierre-light-protanopia-deuteranopia-0fSaH845.js +1 -0
  642. package/web/dist/assets/pierre-light-soft-lWLdNTOI.js +1 -0
  643. package/web/dist/assets/pierre-light-tritanopia-CEbqgOJL.js +1 -0
  644. package/web/dist/assets/pierre-light-vibrant-D80Fkn33.js +1 -0
  645. package/web/dist/assets/pkl-ot-7Btpt.js +1 -0
  646. package/web/dist/assets/plastic-DQwYfKfQ.js +1 -0
  647. package/web/dist/assets/plsql-DGHpHOYJ.js +1 -0
  648. package/web/dist/assets/po-BiJDBrnU.js +1 -0
  649. package/web/dist/assets/poimandres-DRFjx7u4.js +1 -0
  650. package/web/dist/assets/polar-C7UOKdEL.js +1 -0
  651. package/web/dist/assets/postcss-BXeXVLqQ.js +1 -0
  652. package/web/dist/assets/powerquery-DNMTfnFr.js +1 -0
  653. package/web/dist/assets/powershell-DshXNtvi.js +1 -0
  654. package/web/dist/assets/prisma-BsRQq5mF.js +1 -0
  655. package/web/dist/assets/prolog-iXnhIJG7.js +1 -0
  656. package/web/dist/assets/proto-DB4EqR-F.js +1 -0
  657. package/web/dist/assets/pug-C5hz5LQ7.js +1 -0
  658. package/web/dist/assets/puppet-CDv2pdJW.js +1 -0
  659. package/web/dist/assets/purescript-9MfHhQsQ.js +1 -0
  660. package/web/dist/assets/python-gzcpVVnB.js +1 -0
  661. package/web/dist/assets/qml-BdUV3aTS.js +1 -0
  662. package/web/dist/assets/qmldir-DCQb3MpD.js +1 -0
  663. package/web/dist/assets/qss-Fe1Jh2GI.js +1 -0
  664. package/web/dist/assets/r-8R7vtdQc.js +1 -0
  665. package/web/dist/assets/racket-DcIDlBhZ.js +1 -0
  666. package/web/dist/assets/raku-B3gFvitq.js +1 -0
  667. package/web/dist/assets/razor-DRL52XO2.js +1 -0
  668. package/web/dist/assets/red-CJ3rzSJv.js +1 -0
  669. package/web/dist/assets/reg-CRGYupPL.js +1 -0
  670. package/web/dist/assets/regexp-Omp9DhTb.js +1 -0
  671. package/web/dist/assets/rel-BtDbiS_P.js +1 -0
  672. package/web/dist/assets/riscv-Ckw8ddFX.js +1 -0
  673. package/web/dist/assets/rolldown-runtime-QTnfLwEv.js +1 -0
  674. package/web/dist/assets/ron-VUp2lXgN.js +1 -0
  675. package/web/dist/assets/rose-pine-BthvhNj6.js +1 -0
  676. package/web/dist/assets/rose-pine-dawn-Dg85fqjY.js +1 -0
  677. package/web/dist/assets/rose-pine-moon-hon4tzzS.js +1 -0
  678. package/web/dist/assets/rosmsg-CAekHB0j.js +1 -0
  679. package/web/dist/assets/rst-BHX71KW9.js +1 -0
  680. package/web/dist/assets/ruby-B--HzjGU.js +1 -0
  681. package/web/dist/assets/rust-Cfkwpbl8.js +1 -0
  682. package/web/dist/assets/sas-DrLaYOK_.js +1 -0
  683. package/web/dist/assets/sass-DXrisJhu.js +1 -0
  684. package/web/dist/assets/scala-DKOlJaKm.js +1 -0
  685. package/web/dist/assets/scheme-DQCgrYNe.js +1 -0
  686. package/web/dist/assets/scss-DdSxiZKl.js +1 -0
  687. package/web/dist/assets/sdbl-bTVj8UrX.js +1 -0
  688. package/web/dist/assets/shaderlab-TOUzSsQk.js +1 -0
  689. package/web/dist/assets/shellscript-DwcUjJBL.js +1 -0
  690. package/web/dist/assets/shellsession-CPZkydE6.js +1 -0
  691. package/web/dist/assets/slack-dark-DnToyrRv.js +1 -0
  692. package/web/dist/assets/slack-ochin-B2OO5cIa.js +1 -0
  693. package/web/dist/assets/smalltalk-B16xEiuN.js +1 -0
  694. package/web/dist/assets/snazzy-light-4G7pJPwS.js +1 -0
  695. package/web/dist/assets/solarized-dark-DV17i1UV.js +1 -0
  696. package/web/dist/assets/solarized-light-DSh2HLQt.js +1 -0
  697. package/web/dist/assets/solidity-CKzVLygQ.js +1 -0
  698. package/web/dist/assets/soy-Br5FhD7c.js +1 -0
  699. package/web/dist/assets/sparql-D_iOobhT.js +1 -0
  700. package/web/dist/assets/splunk-BC2Px7Mm.js +1 -0
  701. package/web/dist/assets/sql-DNssxck8.js +1 -0
  702. package/web/dist/assets/ssh-config-BgfXC-Er.js +1 -0
  703. package/web/dist/assets/stata-DXn1tqOr.js +1 -0
  704. package/web/dist/assets/stylus-B6D30XZt.js +1 -0
  705. package/web/dist/assets/surfaces-B8Ko8AJ3.js +1 -0
  706. package/web/dist/assets/surrealql-IeLNQw0f.js +1 -0
  707. package/web/dist/assets/svelte-DOdLCIlh.js +1 -0
  708. package/web/dist/assets/swift-DonLKvLd.js +1 -0
  709. package/web/dist/assets/synthwave-84-nFMaYfgc.js +1 -0
  710. package/web/dist/assets/system-verilog-DJ5XKQeo.js +1 -0
  711. package/web/dist/assets/systemd-BxMlprV5.js +1 -0
  712. package/web/dist/assets/talonscript-CohzipZa.js +1 -0
  713. package/web/dist/assets/tasl-DMoTqEGO.js +1 -0
  714. package/web/dist/assets/tcl-CZd0xW_V.js +1 -0
  715. package/web/dist/assets/templ-CIwIngms.js +1 -0
  716. package/web/dist/assets/terraform-DswuEJGm.js +1 -0
  717. package/web/dist/assets/tex-D8QMumu5.js +1 -0
  718. package/web/dist/assets/tokyo-night-oM2G3aXe.js +1 -0
  719. package/web/dist/assets/toml-CcmNWLt0.js +1 -0
  720. package/web/dist/assets/ts-tags-BMVY4q-l.js +1 -0
  721. package/web/dist/assets/tsv-sltzmVWM.js +1 -0
  722. package/web/dist/assets/tsx-5Eka4NBX.js +1 -0
  723. package/web/dist/assets/turtle-ByJddavk.js +1 -0
  724. package/web/dist/assets/twig-C8o_5mgw.js +1 -0
  725. package/web/dist/assets/typescript-DOu2WMV5.js +1 -0
  726. package/web/dist/assets/typespec-BRdr0IET.js +1 -0
  727. package/web/dist/assets/typst-DI99ib-x.js +1 -0
  728. package/web/dist/assets/v-DETTlOr0.js +1 -0
  729. package/web/dist/assets/vala-zf12oZj6.js +1 -0
  730. package/web/dist/assets/vb-Djn5o6TS.js +1 -0
  731. package/web/dist/assets/verilog-CiiDBU1e.js +1 -0
  732. package/web/dist/assets/vesper-DdrHHSXu.js +1 -0
  733. package/web/dist/assets/vhdl-BroJfC0k.js +1 -0
  734. package/web/dist/assets/viml-DvXPmvsu.js +1 -0
  735. package/web/dist/assets/vitesse-black-fwtXNY1n.js +1 -0
  736. package/web/dist/assets/vitesse-dark-BZCL-v6S.js +1 -0
  737. package/web/dist/assets/vitesse-light-VbXTXTou.js +1 -0
  738. package/web/dist/assets/vue-BU18DNDL.js +1 -0
  739. package/web/dist/assets/vue-html-BeluIYX0.js +1 -0
  740. package/web/dist/assets/vue-vine-DGUAbOCX.js +1 -0
  741. package/web/dist/assets/vyper-CgoNMtux.js +1 -0
  742. package/web/dist/assets/wasm-BnjxR4X6.js +1 -0
  743. package/web/dist/assets/wasm-ByWQv1Qj.js +1 -0
  744. package/web/dist/assets/wenyan-C8pVoKbM.js +1 -0
  745. package/web/dist/assets/wgsl-BsKzXJz4.js +1 -0
  746. package/web/dist/assets/wikitext-ClFFjSW2.js +1 -0
  747. package/web/dist/assets/wit-DdvCle-K.js +1 -0
  748. package/web/dist/assets/wolfram-DLL8P-h_.js +1 -0
  749. package/web/dist/assets/worker-CBKQOXEl.js +160 -0
  750. package/web/dist/assets/xml-DIqSwXR3.js +1 -0
  751. package/web/dist/assets/xsl-Ct_-YIAy.js +1 -0
  752. package/web/dist/assets/yaml-DTtCYNlS.js +1 -0
  753. package/web/dist/assets/zenscript-BnlCZFoB.js +1 -0
  754. package/web/dist/assets/zig-CMLA9XwU.js +1 -0
  755. package/web/dist/icons/neondeck-icon-192.png +0 -0
  756. package/web/dist/icons/neondeck-icon-512.png +0 -0
  757. package/web/dist/icons/neondeck-icon.svg +41 -0
  758. package/web/dist/icons/neondeck-maskable-512.png +0 -0
  759. package/web/dist/index.html +24 -0
  760. package/web/dist/manifest.webmanifest +28 -0
@@ -0,0 +1 @@
1
+ var e=Object.freeze(JSON.parse(`{"name":"pierre-dark","displayName":"Pierre Dark","type":"dark","colors":{"editor.background":"#0a0a0a","editor.foreground":"#fafafa","foreground":"#fafafa","focusBorder":"#009fff","selection.background":"#19283c","editor.selectionBackground":"#009fff4d","editor.lineHighlightBackground":"#19283c8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#a3a3a3","editorIndentGuide.background":"#1d1d1d","editorIndentGuide.activeBackground":"#262626","diffEditor.insertedTextBackground":"#07c4801a","diffEditor.deletedTextBackground":"#ff2e3f1a","sideBar.background":"#171717","sideBar.foreground":"#a3a3a3","sideBar.border":"#0a0a0a","sideBarTitle.foreground":"#fafafa","sideBarSectionHeader.background":"#171717","sideBarSectionHeader.foreground":"#a3a3a3","sideBarSectionHeader.border":"#0a0a0a","activityBar.background":"#171717","activityBar.foreground":"#fafafa","activityBar.border":"#0a0a0a","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#0a0a0a","titleBar.activeBackground":"#171717","titleBar.activeForeground":"#fafafa","titleBar.inactiveBackground":"#171717","titleBar.inactiveForeground":"#737373","titleBar.border":"#0a0a0a","list.activeSelectionBackground":"#19283c99","list.activeSelectionForeground":"#fafafa","list.inactiveSelectionBackground":"#19283c73","list.hoverBackground":"#19283c59","list.focusOutline":"#009fff","tab.activeBackground":"#0a0a0a","tab.activeForeground":"#fafafa","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#171717","tab.inactiveForeground":"#737373","tab.border":"#0a0a0a","editorGroupHeader.tabsBackground":"#171717","editorGroupHeader.tabsBorder":"#0a0a0a","panel.background":"#171717","panel.border":"#0a0a0a","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#fafafa","panelTitle.inactiveForeground":"#737373","statusBar.background":"#171717","statusBar.foreground":"#a3a3a3","statusBar.border":"#0a0a0a","statusBar.noFolderBackground":"#171717","statusBar.debuggingBackground":"#ffca00","statusBar.debuggingForeground":"#0a0a0a","statusBarItem.remoteBackground":"#171717","statusBarItem.remoteForeground":"#a3a3a3","input.background":"#1d1d1d","input.border":"#1d1d1d","input.foreground":"#fafafa","input.placeholderForeground":"#636363","dropdown.background":"#1d1d1d","dropdown.border":"#1d1d1d","dropdown.foreground":"#fafafa","button.background":"#009fff","button.foreground":"#0a0a0a","button.hoverBackground":"#0190e7","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#101010","notifications.foreground":"#fafafa","notifications.border":"#1d1d1d","notificationToast.border":"#1d1d1d","notificationCenter.border":"#1d1d1d","notificationCenterHeader.background":"#101010","notificationCenterHeader.foreground":"#a3a3a3","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#ff2e3f","notificationsWarningIcon.foreground":"#ffca00","notificationsInfoIcon.foreground":"#08c0ef","quickInput.background":"#101010","quickInput.foreground":"#fafafa","quickInputTitle.background":"#101010","widget.border":"#1d1d1d","gitDecoration.addedResourceForeground":"#07c480","gitDecoration.conflictingResourceForeground":"#7b43f8","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#ff2e3f","gitDecoration.untrackedResourceForeground":"#07c480","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#7b43f84d","merge.currentContentBackground":"#7b43f81f","merge.incomingHeaderBackground":"#08c0ef4d","merge.incomingContentBackground":"#08c0ef1f","editorOverviewRuler.currentContentForeground":"#7b43f8","editorOverviewRuler.incomingContentForeground":"#08c0ef","terminal.titleForeground":"#a3a3a3","terminal.titleInactiveForeground":"#737373","terminal.background":"#171717","terminal.foreground":"#a3a3a3","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ff2e3f","terminal.ansiGreen":"#0dbe4e","terminal.ansiYellow":"#ffca00","terminal.ansiBlue":"#009fff","terminal.ansiMagenta":"#e130ac","terminal.ansiCyan":"#08c0ef","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ff2e3f","terminal.ansiBrightGreen":"#86c427","terminal.ansiBrightYellow":"#ffca00","terminal.ansiBrightBlue":"#009fff","terminal.ansiBrightMagenta":"#e130ac","terminal.ansiBrightCyan":"#08c0ef","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#5ecc71"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#68cdf2"}},{"scope":"constant","settings":{"foreground":"#ffd452"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffd452"}},{"scope":"constant.language","settings":{"foreground":"#68cdf2"}},{"scope":"variable.other.constant","settings":{"foreground":"#ffab16"}},{"scope":"keyword","settings":{"foreground":"#ff678d"}},{"scope":"keyword.control","settings":{"foreground":"#ff678d"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#ff678d"}},{"scope":"token.storage","settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#ff678d"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ffa359"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ffa359"}},{"scope":"variable.language","settings":{"foreground":"#ffab16"}},{"scope":"variable.parameter.function","settings":{"foreground":"#a3a3a3"}},{"scope":"function.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffd452"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffd452"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#9d6afb"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.function","settings":{"foreground":"#9d6afb"}},{"scope":"support.function.console","settings":{"foreground":"#9d6afb"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#d568ea"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#d568ea"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#d568ea"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ffab16"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#ff678d"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#9d6afb"}},{"scope":"keyword.operator.module","settings":{"foreground":"#ff678d"}},{"scope":"support.type.object.console","settings":{"foreground":"#ffa359"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ffab16"}},{"scope":"support.constant.math","settings":{"foreground":"#ffab16"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffd452"}},{"scope":"support.constant.json","settings":{"foreground":"#ffd452"}},{"scope":"support.type.object.dom","settings":{"foreground":"#08c0ef"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ffa359"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffd452"}},{"scope":"meta.property.object","settings":{"foreground":"#ffa359"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ffa359"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#5ecc71"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#ff678d"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ffa359"}},{"scope":"variable.interpolation","settings":{"foreground":"#ffa359"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#ff678d"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#ff678d"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#d568ea"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#9d6afb"}},{"scope":"support.type.primitive","settings":{"foreground":"#d568ea"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#69b1ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ffab16"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#ff678d"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#9d6afb"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffd452"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#9d6afb"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#08c0ef"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ffab16"}},{"scope":"variable.language.rust","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#ff678d"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffd452"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#ff678d"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#ff678d"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ffab16"}},{"scope":"source.java","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#9d6afb"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#ff678d"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ff855e"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ffab16"}},{"scope":"token.package.keyword","settings":{"foreground":"#ff678d"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ffab16"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#ff678d"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ffab16"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ffab16"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#ff678d"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ffab16"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#9d6afb"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffd452"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#9d6afb"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#ff678d"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#ff678d"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ff855e"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#fafafa"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#ff678d"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffd452"}},{"scope":"storage.type.cs","settings":{"foreground":"#ffab16"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ffab16"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ffab16"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.edge","settings":{"foreground":"#ff678d"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#08c0ef"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffd452"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ffab16"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ff855e"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#08c0ef"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ff855e"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ffab16"}},{"scope":"meta.method.groovy","settings":{"foreground":"#9d6afb"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#5ecc71"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ffab16"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#ff678d"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ff855e"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ffab16"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.makefile","settings":{"foreground":"#ffab16"}},{"scope":"source.ini","settings":{"foreground":"#5ecc71"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#08c0ef"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#08c0ef"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#ff678d"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#ff678d"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ffab16"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#08c0ef"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ff855e"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#ff678d"}},{"scope":"keyword.control.xi","settings":{"foreground":"#08c0ef"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#5ecc71"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#9d6afb"}},{"scope":"accent.xi","settings":{"foreground":"#9d6afb"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffd452"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#fafafa"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffd452"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#08c0ef"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffd452"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffd452"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#60d199","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#9d6afb","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#08c0ef"}},{"scope":"meta.selector","settings":{"foreground":"#ff678d"}},{"scope":"selector.sass","settings":{"foreground":"#ff855e"}},{"scope":"rgb-value","settings":{"foreground":"#08c0ef"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffd452"}},{"scope":"less rgb-value","settings":{"foreground":"#ffd452"}},{"scope":"control.elements","settings":{"foreground":"#ffd452"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffd452"}},{"scope":"entity.name.tag","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#60d199","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ff855e"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ff855e"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#9d6afb"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ff855e"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffd452"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ffab16"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffd452"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#ff678d","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#ff678d"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#ff678d"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#9d6afb"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ff855e"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#5ecc71"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ff855e"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ffab16"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#9d6afb"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#5ecc71"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ff855e"}},{"scope":"string.regexp","settings":{"foreground":"#64d1db"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffd452"}},{"scope":"constant.character.escape","settings":{"foreground":"#61d5c0"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ff855e"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ff855e"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#5ecc71"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ff855e"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#9d6afb"}},{"scope":"token.warn-token","settings":{"foreground":"#ffd452"}},{"scope":"token.error-token","settings":{"foreground":"#fafafa"}},{"scope":"token.debug-token","settings":{"foreground":"#ff678d"}},{"scope":"invalid.illegal","settings":{"foreground":"#fafafa"}},{"scope":"invalid.broken","settings":{"foreground":"#fafafa"}},{"scope":"invalid.deprecated","settings":{"foreground":"#fafafa"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#fafafa"}}],"semanticTokenColors":{"comment":"#737373","string":"#5ecc71","number":"#68cdf2","regexp":"#64d1db","keyword":"#ff678d","variable":"#ffa359","parameter":"#a3a3a3","property":"#ffa359","function":"#9d6afb","method":"#9d6afb","type":"#d568ea","class":"#d568ea","namespace":"#ffab16","enumMember":"#08c0ef","variable.constant":"#ffd452","variable.defaultLibrary":"#ffab16","decorator":"#69b1ff"}}`));export{e as default};
@@ -0,0 +1 @@
1
+ var e=Object.freeze(JSON.parse(`{"name":"pierre-dark-protanopia-deuteranopia","displayName":"Pierre Dark Protanopia & Deuteranopia","type":"dark","colors":{"editor.background":"#0a0a0a","editor.foreground":"#fafafa","foreground":"#fafafa","focusBorder":"#009fff","selection.background":"#19283c","editor.selectionBackground":"#009fff4d","editor.lineHighlightBackground":"#19283c8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#a3a3a3","editorIndentGuide.background":"#1d1d1d","editorIndentGuide.activeBackground":"#262626","diffEditor.insertedTextBackground":"#97c4ff1a","diffEditor.deletedTextBackground":"#fe8c2c1a","sideBar.background":"#171717","sideBar.foreground":"#a3a3a3","sideBar.border":"#0a0a0a","sideBarTitle.foreground":"#fafafa","sideBarSectionHeader.background":"#171717","sideBarSectionHeader.foreground":"#a3a3a3","sideBarSectionHeader.border":"#0a0a0a","activityBar.background":"#171717","activityBar.foreground":"#fafafa","activityBar.border":"#0a0a0a","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#0a0a0a","titleBar.activeBackground":"#171717","titleBar.activeForeground":"#fafafa","titleBar.inactiveBackground":"#171717","titleBar.inactiveForeground":"#737373","titleBar.border":"#0a0a0a","list.activeSelectionBackground":"#19283c99","list.activeSelectionForeground":"#fafafa","list.inactiveSelectionBackground":"#19283c73","list.hoverBackground":"#19283c59","list.focusOutline":"#009fff","tab.activeBackground":"#0a0a0a","tab.activeForeground":"#fafafa","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#171717","tab.inactiveForeground":"#737373","tab.border":"#0a0a0a","editorGroupHeader.tabsBackground":"#171717","editorGroupHeader.tabsBorder":"#0a0a0a","panel.background":"#171717","panel.border":"#0a0a0a","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#fafafa","panelTitle.inactiveForeground":"#737373","statusBar.background":"#171717","statusBar.foreground":"#a3a3a3","statusBar.border":"#0a0a0a","statusBar.noFolderBackground":"#171717","statusBar.debuggingBackground":"#ffde80","statusBar.debuggingForeground":"#0a0a0a","statusBarItem.remoteBackground":"#171717","statusBarItem.remoteForeground":"#a3a3a3","input.background":"#1d1d1d","input.border":"#1d1d1d","input.foreground":"#fafafa","input.placeholderForeground":"#636363","dropdown.background":"#1d1d1d","dropdown.border":"#1d1d1d","dropdown.foreground":"#fafafa","button.background":"#009fff","button.foreground":"#0a0a0a","button.hoverBackground":"#0190e7","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#101010","notifications.foreground":"#fafafa","notifications.border":"#1d1d1d","notificationToast.border":"#1d1d1d","notificationCenter.border":"#1d1d1d","notificationCenterHeader.background":"#101010","notificationCenterHeader.foreground":"#a3a3a3","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#fe8c2c","notificationsWarningIcon.foreground":"#ffde80","notificationsInfoIcon.foreground":"#68cdf2","quickInput.background":"#101010","quickInput.foreground":"#fafafa","quickInputTitle.background":"#101010","widget.border":"#1d1d1d","gitDecoration.addedResourceForeground":"#97c4ff","gitDecoration.conflictingResourceForeground":"#b969f3","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#fe8c2c","gitDecoration.untrackedResourceForeground":"#97c4ff","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#b969f34d","merge.currentContentBackground":"#b969f31f","merge.incomingHeaderBackground":"#68cdf24d","merge.incomingContentBackground":"#68cdf21f","editorOverviewRuler.currentContentForeground":"#b969f3","editorOverviewRuler.incomingContentForeground":"#68cdf2","terminal.titleForeground":"#a3a3a3","terminal.titleInactiveForeground":"#737373","terminal.background":"#171717","terminal.foreground":"#a3a3a3","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ffa359","terminal.ansiGreen":"#69b1ff","terminal.ansiYellow":"#ffd452","terminal.ansiBlue":"#009fff","terminal.ansiMagenta":"#b969f3","terminal.ansiCyan":"#68cdf2","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ffba82","terminal.ansiBrightGreen":"#97c4ff","terminal.ansiBrightYellow":"#ffde80","terminal.ansiBrightBlue":"#69b1ff","terminal.ansiBrightMagenta":"#ce90f7","terminal.ansiBrightCyan":"#96d9f6","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#97c4ff"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#97c4ff"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#96d9f6"}},{"scope":"constant","settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffcc81"}},{"scope":"constant.language","settings":{"foreground":"#96d9f6"}},{"scope":"variable.other.constant","settings":{"foreground":"#ffbc56"}},{"scope":"keyword","settings":{"foreground":"#b969f3"}},{"scope":"keyword.control","settings":{"foreground":"#b969f3"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#b969f3"}},{"scope":"token.storage","settings":{"foreground":"#b969f3"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#b969f3"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#b969f3"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ffa359"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ffa359"}},{"scope":"variable.language","settings":{"foreground":"#ffbc56"}},{"scope":"variable.parameter.function","settings":{"foreground":"#a3a3a3"}},{"scope":"function.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffcc81"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffcc81"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#ba8ffd"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.function","settings":{"foreground":"#ba8ffd"}},{"scope":"support.function.console","settings":{"foreground":"#ba8ffd"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#e290f0"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#e290f0"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#e290f0"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#e290f0"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ffbc56"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#e290f0"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#b969f3"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#b969f3"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#b969f3"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#ba8ffd"}},{"scope":"keyword.operator.module","settings":{"foreground":"#b969f3"}},{"scope":"support.type.object.console","settings":{"foreground":"#ffa359"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ffbc56"}},{"scope":"support.constant.math","settings":{"foreground":"#ffbc56"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffcc81"}},{"scope":"support.constant.json","settings":{"foreground":"#ffcc81"}},{"scope":"support.type.object.dom","settings":{"foreground":"#08c0ef"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ffa359"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffcc81"}},{"scope":"meta.property.object","settings":{"foreground":"#ffa359"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ffa359"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#97c4ff"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#97c4ff"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#b969f3"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ffa359"}},{"scope":"variable.interpolation","settings":{"foreground":"#ffa359"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#b969f3"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#b969f3"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#e290f0"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#ba8ffd"}},{"scope":"support.type.primitive","settings":{"foreground":"#e290f0"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#69b1ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ffa359"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ffbc56"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#b969f3"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#ba8ffd"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffcc81"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#ba8ffd"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#08c0ef"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ffbc56"}},{"scope":"variable.language.rust","settings":{"foreground":"#ffa359"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#b969f3"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffcc81"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ffa359"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#b969f3"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#b969f3"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#b969f3"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#b969f3"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ffbc56"}},{"scope":"source.java","settings":{"foreground":"#ffa359"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#ba8ffd"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#b969f3"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ffa359"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ffbc56"}},{"scope":"token.package.keyword","settings":{"foreground":"#b969f3"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ffbc56"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#b969f3"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ffbc56"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#b969f3"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#b969f3"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ffbc56"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#ba8ffd"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffcc81"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#ba8ffd"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#08c0ef"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#b969f3"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#08c0ef"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#b969f3"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ffa359"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#fafafa"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#b969f3"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffcc81"}},{"scope":"storage.type.cs","settings":{"foreground":"#ffbc56"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ffa359"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ffbc56"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ffbc56"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ffa359"}},{"scope":"support.constant.edge","settings":{"foreground":"#b969f3"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#08c0ef"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffcc81"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ffbc56"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ffa359"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#08c0ef"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ffa359"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ffbc56"}},{"scope":"meta.method.groovy","settings":{"foreground":"#ba8ffd"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ffa359"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#97c4ff"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ffbc56"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#b969f3"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ffa359"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ffbc56"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ffa359"}},{"scope":"source.makefile","settings":{"foreground":"#ffbc56"}},{"scope":"source.ini","settings":{"foreground":"#97c4ff"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#08c0ef"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#08c0ef"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#b969f3"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#b969f3"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ffbc56"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#08c0ef"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ffa359"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#b969f3"}},{"scope":"keyword.control.xi","settings":{"foreground":"#08c0ef"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#97c4ff"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#ba8ffd"}},{"scope":"accent.xi","settings":{"foreground":"#ba8ffd"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffcc81"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#fafafa"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffcc81"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#08c0ef"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffcc81"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#ffbc56","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#ba8ffd","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#08c0ef"}},{"scope":"meta.selector","settings":{"foreground":"#b969f3"}},{"scope":"selector.sass","settings":{"foreground":"#ffa359"}},{"scope":"rgb-value","settings":{"foreground":"#08c0ef"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"less rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"control.elements","settings":{"foreground":"#ffcc81"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffcc81"}},{"scope":"entity.name.tag","settings":{"foreground":"#ffa359"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#ffbc56","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ffa359"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ffa359"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ffa359"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ffa359"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ffa359"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ffbc56"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffcc81"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#b969f3","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#b969f3"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#b969f3"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#ba8ffd"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ffa359"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#97c4ff"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ffa359"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ffa359"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ffa359"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ffa359"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ffa359"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ffbc56"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#ba8ffd"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#97c4ff"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ffa359"}},{"scope":"string.regexp","settings":{"foreground":"#68cdf2"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ffa359"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffcc81"}},{"scope":"constant.character.escape","settings":{"foreground":"#64d1db"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ffa359"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ffa359"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#97c4ff"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#08c0ef"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ffa359"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ffa359"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#ba8ffd"}},{"scope":"token.warn-token","settings":{"foreground":"#ffcc81"}},{"scope":"token.error-token","settings":{"foreground":"#fafafa"}},{"scope":"token.debug-token","settings":{"foreground":"#b969f3"}},{"scope":"invalid.illegal","settings":{"foreground":"#fafafa"}},{"scope":"invalid.broken","settings":{"foreground":"#fafafa"}},{"scope":"invalid.deprecated","settings":{"foreground":"#fafafa"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#fafafa"}}],"semanticTokenColors":{"comment":"#737373","string":"#97c4ff","number":"#96d9f6","regexp":"#68cdf2","keyword":"#b969f3","variable":"#ffa359","parameter":"#a3a3a3","property":"#ffa359","function":"#ba8ffd","method":"#ba8ffd","type":"#e290f0","class":"#e290f0","namespace":"#ffbc56","enumMember":"#08c0ef","variable.constant":"#ffcc81","variable.defaultLibrary":"#ffbc56","decorator":"#69b1ff"}}`));export{e as default};
@@ -0,0 +1 @@
1
+ var e=Object.freeze(JSON.parse(`{"name":"pierre-dark-soft","displayName":"Pierre Dark Soft","type":"dark","colors":{"editor.background":"#171717","editor.foreground":"#d4d4d4","foreground":"#d4d4d4","focusBorder":"#69b1ff","selection.background":"#1f3e5e","editor.selectionBackground":"#69b1ff4d","editor.lineHighlightBackground":"#1f3e5e8c","editorCursor.foreground":"#69b1ff","editorLineNumber.foreground":"#636363","editorLineNumber.activeForeground":"#8a8a8a","editorIndentGuide.background":"#262626","editorIndentGuide.activeBackground":"#2c2c2c","diffEditor.insertedTextBackground":"#60d1991a","diffEditor.deletedTextBackground":"#ff67621a","sideBar.background":"#101010","sideBar.foreground":"#8a8a8a","sideBar.border":"#1d1d1d","sideBarTitle.foreground":"#d4d4d4","sideBarSectionHeader.background":"#101010","sideBarSectionHeader.foreground":"#8a8a8a","sideBarSectionHeader.border":"#1d1d1d","activityBar.background":"#101010","activityBar.foreground":"#d4d4d4","activityBar.border":"#1d1d1d","activityBar.activeBorder":"#69b1ff","activityBarBadge.background":"#69b1ff","activityBarBadge.foreground":"#171717","titleBar.activeBackground":"#101010","titleBar.activeForeground":"#d4d4d4","titleBar.inactiveBackground":"#101010","titleBar.inactiveForeground":"#636363","titleBar.border":"#1d1d1d","list.activeSelectionBackground":"#1f3e5e99","list.activeSelectionForeground":"#d4d4d4","list.inactiveSelectionBackground":"#1f3e5e73","list.hoverBackground":"#1f3e5e59","list.focusOutline":"#69b1ff","tab.activeBackground":"#171717","tab.activeForeground":"#d4d4d4","tab.activeBorderTop":"#69b1ff","tab.inactiveBackground":"#101010","tab.inactiveForeground":"#636363","tab.border":"#1d1d1d","editorGroupHeader.tabsBackground":"#101010","editorGroupHeader.tabsBorder":"#1d1d1d","panel.background":"#101010","panel.border":"#1d1d1d","panelTitle.activeBorder":"#69b1ff","panelTitle.activeForeground":"#d4d4d4","panelTitle.inactiveForeground":"#636363","statusBar.background":"#101010","statusBar.foreground":"#8a8a8a","statusBar.border":"#1d1d1d","statusBar.noFolderBackground":"#101010","statusBar.debuggingBackground":"#ffd452","statusBar.debuggingForeground":"#171717","statusBarItem.remoteBackground":"#101010","statusBarItem.remoteForeground":"#8a8a8a","input.background":"#262626","input.border":"#2c2c2c","input.foreground":"#d4d4d4","input.placeholderForeground":"#525252","dropdown.background":"#262626","dropdown.border":"#2c2c2c","dropdown.foreground":"#d4d4d4","button.background":"#69b1ff","button.foreground":"#171717","button.hoverBackground":"#61a2e8","textLink.foreground":"#69b1ff","textLink.activeForeground":"#69b1ff","notifications.background":"#1d1d1d","notifications.foreground":"#d4d4d4","notifications.border":"#262626","notificationToast.border":"#262626","notificationCenter.border":"#262626","notificationCenterHeader.background":"#1d1d1d","notificationCenterHeader.foreground":"#8a8a8a","notificationLink.foreground":"#69b1ff","notificationsErrorIcon.foreground":"#ff6762","notificationsWarningIcon.foreground":"#ffd452","notificationsInfoIcon.foreground":"#68cdf2","quickInput.background":"#1d1d1d","quickInput.foreground":"#d4d4d4","quickInputTitle.background":"#1d1d1d","widget.border":"#262626","gitDecoration.addedResourceForeground":"#60d199","gitDecoration.conflictingResourceForeground":"#9d6afb","gitDecoration.modifiedResourceForeground":"#69b1ff","gitDecoration.deletedResourceForeground":"#ff6762","gitDecoration.untrackedResourceForeground":"#60d199","gitDecoration.ignoredResourceForeground":"#636363","merge.currentHeaderBackground":"#9d6afb4d","merge.currentContentBackground":"#9d6afb1f","merge.incomingHeaderBackground":"#68cdf24d","merge.incomingContentBackground":"#68cdf21f","editorOverviewRuler.currentContentForeground":"#9d6afb","editorOverviewRuler.incomingContentForeground":"#68cdf2","terminal.titleForeground":"#8a8a8a","terminal.titleInactiveForeground":"#636363","terminal.background":"#101010","terminal.foreground":"#8a8a8a","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ff2e3f","terminal.ansiGreen":"#0dbe4e","terminal.ansiYellow":"#ffca00","terminal.ansiBlue":"#009fff","terminal.ansiMagenta":"#e130ac","terminal.ansiCyan":"#08c0ef","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ff2e3f","terminal.ansiBrightGreen":"#86c427","terminal.ansiBrightYellow":"#ffca00","terminal.ansiBrightBlue":"#009fff","terminal.ansiBrightMagenta":"#e130ac","terminal.ansiBrightCyan":"#08c0ef","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#636363"}},{"scope":"comment markup.link","settings":{"foreground":"#636363"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#8cda94"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#8cda94"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#96d9f6"}},{"scope":"constant","settings":{"foreground":"#ffde80"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffde80"}},{"scope":"constant.language","settings":{"foreground":"#96d9f6"}},{"scope":"variable.other.constant","settings":{"foreground":"#ffbc56"}},{"scope":"keyword","settings":{"foreground":"#ff91a8"}},{"scope":"keyword.control","settings":{"foreground":"#ff91a8"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#ff91a8"}},{"scope":"token.storage","settings":{"foreground":"#ff91a8"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#ff91a8"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#ff91a8"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ffba82"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ffba82"}},{"scope":"variable.language","settings":{"foreground":"#ffbc56"}},{"scope":"variable.parameter.function","settings":{"foreground":"#8a8a8a"}},{"scope":"function.parameter","settings":{"foreground":"#8a8a8a"}},{"scope":"variable.parameter","settings":{"foreground":"#8a8a8a"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffde80"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffde80"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#ba8ffd"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.function","settings":{"foreground":"#ba8ffd"}},{"scope":"support.function.console","settings":{"foreground":"#ba8ffd"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#e290f0"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#e290f0"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#e290f0"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#e290f0"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ffbc56"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#e290f0"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator","settings":{"foreground":"#737373"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#68cdf2"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#68cdf2"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#68cdf2"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#ff91a8"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#68cdf2"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#ff91a8"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#ff91a8"}},{"scope":"punctuation","settings":{"foreground":"#737373"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#737373"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#737373"}},{"scope":"punctuation.terminator","settings":{"foreground":"#737373"}},{"scope":"meta.brace","settings":{"foreground":"#737373"}},{"scope":"meta.brace.square","settings":{"foreground":"#737373"}},{"scope":"meta.brace.round","settings":{"foreground":"#737373"}},{"scope":"function.brace","settings":{"foreground":"#737373"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#737373"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#737373"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#737373"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#ba8ffd"}},{"scope":"keyword.operator.module","settings":{"foreground":"#ff91a8"}},{"scope":"support.type.object.console","settings":{"foreground":"#ffba82"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ffbc56"}},{"scope":"support.constant.math","settings":{"foreground":"#ffbc56"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffde80"}},{"scope":"support.constant.json","settings":{"foreground":"#ffde80"}},{"scope":"support.type.object.dom","settings":{"foreground":"#68cdf2"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ffba82"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffde80"}},{"scope":"meta.property.object","settings":{"foreground":"#ffba82"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ffba82"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#8cda94"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#8cda94"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#ff91a8"}},{"scope":"meta.template.expression","settings":{"foreground":"#737373"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ffba82"}},{"scope":"variable.interpolation","settings":{"foreground":"#ffba82"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#ff91a8"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#ff91a8"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#e290f0"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#ba8ffd"}},{"scope":"support.type.primitive","settings":{"foreground":"#e290f0"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#97c4ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#97c4ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ffa685"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ffbc56"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#737373"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#737373"}},{"scope":"support.type.python","settings":{"foreground":"#68cdf2"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#ff91a8"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#ba8ffd"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffde80"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#ba8ffd"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#68cdf2"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#737373"}},{"scope":"support.function.std.rust","settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ffbc56"}},{"scope":"variable.language.rust","settings":{"foreground":"#ffa685"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#737373"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#ff91a8"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffde80"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ffa685"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#737373"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#ff91a8"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#ff91a8"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#ff91a8"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#68cdf2"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#ff91a8"}},{"scope":"variable.c","settings":{"foreground":"#737373"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ffbc56"}},{"scope":"source.java","settings":{"foreground":"#ffa685"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#737373"}},{"scope":"meta.method.java","settings":{"foreground":"#ba8ffd"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#ff91a8"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ffa685"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#737373"}},{"scope":"import.storage.java","settings":{"foreground":"#ffbc56"}},{"scope":"token.package.keyword","settings":{"foreground":"#ff91a8"}},{"scope":"token.package","settings":{"foreground":"#737373"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ffbc56"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#ff91a8"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ffbc56"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ffbc56"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#ff91a8"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#ff91a8"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#737373"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ffbc56"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#ba8ffd"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#737373"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffde80"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#ba8ffd"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#68cdf2"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#ff91a8"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#68cdf2"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#ff91a8"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ffa685"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#d4d4d4"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#ff91a8"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffde80"}},{"scope":"storage.type.cs","settings":{"foreground":"#ffbc56"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ffa685"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ffbc56"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ffbc56"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ffa685"}},{"scope":"support.constant.edge","settings":{"foreground":"#ff91a8"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#68cdf2"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffde80"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ffbc56"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ffa685"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#68cdf2"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ffa685"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ffbc56"}},{"scope":"meta.method.groovy","settings":{"foreground":"#ba8ffd"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ffa685"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#8cda94"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ffbc56"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#ff91a8"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ffa685"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ffbc56"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ffa685"}},{"scope":"source.makefile","settings":{"foreground":"#ffbc56"}},{"scope":"source.ini","settings":{"foreground":"#8cda94"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#68cdf2"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#737373"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#68cdf2"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#ff91a8"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#ff91a8"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ffbc56"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#68cdf2"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ffa685"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#ff91a8"}},{"scope":"keyword.control.xi","settings":{"foreground":"#68cdf2"}},{"scope":"invalid.xi","settings":{"foreground":"#737373"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#8cda94"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#636363"}},{"scope":"constant.character.xi","settings":{"foreground":"#ba8ffd"}},{"scope":"accent.xi","settings":{"foreground":"#ba8ffd"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffde80"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#d4d4d4"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#636363"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffde80"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#68cdf2"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffde80"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#737373"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#68cdf2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#68cdf2"}},{"scope":"support.type.property-name","settings":{"foreground":"#737373"}},{"scope":"support.constant.property-value","settings":{"foreground":"#737373"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffde80"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#8eddb2","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#ba8ffd","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#68cdf2"}},{"scope":"meta.selector","settings":{"foreground":"#ff91a8"}},{"scope":"selector.sass","settings":{"foreground":"#ffa685"}},{"scope":"rgb-value","settings":{"foreground":"#68cdf2"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffde80"}},{"scope":"less rgb-value","settings":{"foreground":"#ffde80"}},{"scope":"control.elements","settings":{"foreground":"#ffde80"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffde80"}},{"scope":"entity.name.tag","settings":{"foreground":"#ffa685"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#8eddb2","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ffa685"}},{"scope":"meta.tag","settings":{"foreground":"#737373"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#737373"}},{"scope":"markup.heading","settings":{"foreground":"#ffa685"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#ba8ffd"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ffa685"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ffa685"}},{"scope":"markup.heading.setext","settings":{"foreground":"#737373"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ffa685"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffde80"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ffbc56"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffde80"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#ff91a8","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#ff91a8"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#ff91a8"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#ba8ffd"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ffa685"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#8cda94"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ffa685"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ffa685"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ffa685"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ffa685"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#636363"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ffa685"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ffbc56"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#ba8ffd"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#8cda94"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ffa685"}},{"scope":"string.regexp","settings":{"foreground":"#92dde4"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ffa685"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffde80"}},{"scope":"constant.character.escape","settings":{"foreground":"#8fe0d0"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ffa685"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ffa685"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#8cda94"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#68cdf2"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ffa685"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ffa685"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#737373"}},{"scope":"block.scope.end","settings":{"foreground":"#737373"}},{"scope":"block.scope.begin","settings":{"foreground":"#737373"}},{"scope":"token.info-token","settings":{"foreground":"#ba8ffd"}},{"scope":"token.warn-token","settings":{"foreground":"#ffde80"}},{"scope":"token.error-token","settings":{"foreground":"#d4d4d4"}},{"scope":"token.debug-token","settings":{"foreground":"#ff91a8"}},{"scope":"invalid.illegal","settings":{"foreground":"#d4d4d4"}},{"scope":"invalid.broken","settings":{"foreground":"#d4d4d4"}},{"scope":"invalid.deprecated","settings":{"foreground":"#d4d4d4"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#d4d4d4"}}],"semanticTokenColors":{"comment":"#636363","string":"#8cda94","number":"#96d9f6","regexp":"#92dde4","keyword":"#ff91a8","variable":"#ffba82","parameter":"#8a8a8a","property":"#ffba82","function":"#ba8ffd","method":"#ba8ffd","type":"#e290f0","class":"#e290f0","namespace":"#ffbc56","enumMember":"#68cdf2","variable.constant":"#ffde80","variable.defaultLibrary":"#ffbc56","decorator":"#97c4ff"}}`));export{e as default};
@@ -0,0 +1 @@
1
+ var e=Object.freeze(JSON.parse(`{"name":"pierre-dark-tritanopia","displayName":"Pierre Dark Tritanopia","type":"dark","colors":{"editor.background":"#0a0a0a","editor.foreground":"#fafafa","foreground":"#fafafa","focusBorder":"#009fff","selection.background":"#19283c","editor.selectionBackground":"#009fff4d","editor.lineHighlightBackground":"#19283c8c","editorCursor.foreground":"#009fff","editorLineNumber.foreground":"#737373","editorLineNumber.activeForeground":"#a3a3a3","editorIndentGuide.background":"#1d1d1d","editorIndentGuide.activeBackground":"#262626","diffEditor.insertedTextBackground":"#92dde41a","diffEditor.deletedTextBackground":"#ff855e1a","sideBar.background":"#171717","sideBar.foreground":"#a3a3a3","sideBar.border":"#0a0a0a","sideBarTitle.foreground":"#fafafa","sideBarSectionHeader.background":"#171717","sideBarSectionHeader.foreground":"#a3a3a3","sideBarSectionHeader.border":"#0a0a0a","activityBar.background":"#171717","activityBar.foreground":"#fafafa","activityBar.border":"#0a0a0a","activityBar.activeBorder":"#009fff","activityBarBadge.background":"#009fff","activityBarBadge.foreground":"#0a0a0a","titleBar.activeBackground":"#171717","titleBar.activeForeground":"#fafafa","titleBar.inactiveBackground":"#171717","titleBar.inactiveForeground":"#737373","titleBar.border":"#0a0a0a","list.activeSelectionBackground":"#19283c99","list.activeSelectionForeground":"#fafafa","list.inactiveSelectionBackground":"#19283c73","list.hoverBackground":"#19283c59","list.focusOutline":"#009fff","tab.activeBackground":"#0a0a0a","tab.activeForeground":"#fafafa","tab.activeBorderTop":"#009fff","tab.inactiveBackground":"#171717","tab.inactiveForeground":"#737373","tab.border":"#0a0a0a","editorGroupHeader.tabsBackground":"#171717","editorGroupHeader.tabsBorder":"#0a0a0a","panel.background":"#171717","panel.border":"#0a0a0a","panelTitle.activeBorder":"#009fff","panelTitle.activeForeground":"#fafafa","panelTitle.inactiveForeground":"#737373","statusBar.background":"#171717","statusBar.foreground":"#a3a3a3","statusBar.border":"#0a0a0a","statusBar.noFolderBackground":"#171717","statusBar.debuggingBackground":"#ffbc56","statusBar.debuggingForeground":"#0a0a0a","statusBarItem.remoteBackground":"#171717","statusBarItem.remoteForeground":"#a3a3a3","input.background":"#1d1d1d","input.border":"#1d1d1d","input.foreground":"#fafafa","input.placeholderForeground":"#636363","dropdown.background":"#1d1d1d","dropdown.border":"#1d1d1d","dropdown.foreground":"#fafafa","button.background":"#009fff","button.foreground":"#0a0a0a","button.hoverBackground":"#0190e7","textLink.foreground":"#009fff","textLink.activeForeground":"#009fff","notifications.background":"#101010","notifications.foreground":"#fafafa","notifications.border":"#1d1d1d","notificationToast.border":"#1d1d1d","notificationCenter.border":"#1d1d1d","notificationCenterHeader.background":"#101010","notificationCenterHeader.foreground":"#a3a3a3","notificationLink.foreground":"#009fff","notificationsErrorIcon.foreground":"#ff855e","notificationsWarningIcon.foreground":"#ffbc56","notificationsInfoIcon.foreground":"#69b1ff","quickInput.background":"#101010","quickInput.foreground":"#fafafa","quickInputTitle.background":"#101010","widget.border":"#1d1d1d","gitDecoration.addedResourceForeground":"#92dde4","gitDecoration.conflictingResourceForeground":"#ea68bc","gitDecoration.modifiedResourceForeground":"#009fff","gitDecoration.deletedResourceForeground":"#ff855e","gitDecoration.untrackedResourceForeground":"#92dde4","gitDecoration.ignoredResourceForeground":"#737373","merge.currentHeaderBackground":"#ea68bc4d","merge.currentContentBackground":"#ea68bc1f","merge.incomingHeaderBackground":"#69b1ff4d","merge.incomingContentBackground":"#69b1ff1f","editorOverviewRuler.currentContentForeground":"#ea68bc","editorOverviewRuler.incomingContentForeground":"#69b1ff","terminal.titleForeground":"#a3a3a3","terminal.titleInactiveForeground":"#737373","terminal.background":"#171717","terminal.foreground":"#a3a3a3","terminal.ansiBlack":"#171717","terminal.ansiRed":"#ff855e","terminal.ansiGreen":"#64d1db","terminal.ansiYellow":"#ffbc56","terminal.ansiBlue":"#69b1ff","terminal.ansiMagenta":"#ea68bc","terminal.ansiCyan":"#92dde4","terminal.ansiWhite":"#bcbcbc","terminal.ansiBrightBlack":"#171717","terminal.ansiBrightRed":"#ffa685","terminal.ansiBrightGreen":"#92dde4","terminal.ansiBrightYellow":"#ffcc81","terminal.ansiBrightBlue":"#97c4ff","terminal.ansiBrightMagenta":"#f191cc","terminal.ansiBrightCyan":"#92dde4","terminal.ansiBrightWhite":"#bcbcbc"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"#737373"}},{"scope":"comment markup.link","settings":{"foreground":"#737373"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"#92dde4"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"#92dde4"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"#69b1ff"}},{"scope":"constant","settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"#ffcc81"}},{"scope":"constant.language","settings":{"foreground":"#69b1ff"}},{"scope":"variable.other.constant","settings":{"foreground":"#ff855e"}},{"scope":"keyword","settings":{"foreground":"#d568ea"}},{"scope":"keyword.control","settings":{"foreground":"#d568ea"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"#d568ea"}},{"scope":"token.storage","settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.delete","settings":{"foreground":"#d568ea"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"#ff855e"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"#ff855e"}},{"scope":"variable.language","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function","settings":{"foreground":"#a3a3a3"}},{"scope":"function.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter","settings":{"foreground":"#a3a3a3"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"#ffcc81"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"#ffcc81"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"#97c4ff"}},{"scope":"keyword.other.special-method","settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.function","settings":{"foreground":"#97c4ff"}},{"scope":"support.function.console","settings":{"foreground":"#97c4ff"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"#ea68bc"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"#ea68bc"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"#ea68bc"}},{"scope":"entity.name.namespace","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator","settings":{"foreground":"#636363"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.optional","settings":{"foreground":"#d568ea"}},{"scope":"punctuation","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"#636363"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"#636363"}},{"scope":"punctuation.terminator","settings":{"foreground":"#636363"}},{"scope":"meta.brace","settings":{"foreground":"#636363"}},{"scope":"meta.brace.square","settings":{"foreground":"#636363"}},{"scope":"meta.brace.round","settings":{"foreground":"#636363"}},{"scope":"function.brace","settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"#636363"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"#636363"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"#97c4ff"}},{"scope":"keyword.operator.module","settings":{"foreground":"#d568ea"}},{"scope":"support.type.object.console","settings":{"foreground":"#ff855e"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.math","settings":{"foreground":"#ff855e"}},{"scope":"support.constant.property.math","settings":{"foreground":"#ffcc81"}},{"scope":"support.constant.json","settings":{"foreground":"#ffcc81"}},{"scope":"support.type.object.dom","settings":{"foreground":"#00c5d2"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"#ff855e"}},{"scope":"support.variable.property.process","settings":{"foreground":"#ffcc81"}},{"scope":"meta.property.object","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"#ff855e"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"#92dde4"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"#92dde4"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"#d568ea"}},{"scope":"meta.template.expression","settings":{"foreground":"#636363"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"#ff855e"}},{"scope":"variable.interpolation","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#d568ea"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"#d568ea"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"#ea68bc"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"#97c4ff"}},{"scope":"support.type.primitive","settings":{"foreground":"#ea68bc"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"#69b1ff"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"#69b1ff"}},{"scope":"support.variable.magic.python","settings":{"foreground":"#ff855e"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"#636363"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"#636363"}},{"scope":"support.type.python","settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"#d568ea"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"#97c4ff"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"#ffcc81"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"#97c4ff"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"#00c5d2"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"#636363"}},{"scope":"support.function.std.rust","settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"#ff855e"}},{"scope":"variable.language.rust","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"#636363"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"#d568ea"}},{"scope":"support.constant.core.rust","settings":{"foreground":"#ffcc81"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"#636363"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"#d568ea"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"#d568ea"}},{"scope":"variable.c","settings":{"foreground":"#636363"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"#ff855e"}},{"scope":"source.java","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"#636363"}},{"scope":"meta.method.java","settings":{"foreground":"#97c4ff"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"#d568ea"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"#ff855e"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"#636363"}},{"scope":"import.storage.java","settings":{"foreground":"#ff855e"}},{"scope":"token.package.keyword","settings":{"foreground":"#d568ea"}},{"scope":"token.package","settings":{"foreground":"#636363"}},{"scope":"token.storage.type.java","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"#ff855e"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"#d568ea"}},{"scope":"entity.name.package.go","settings":{"foreground":"#ff855e"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"#d568ea"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"#636363"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"#ff855e"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"#97c4ff"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"#636363"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"#ffcc81"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"#97c4ff"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"#00c5d2"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"#d568ea"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"#00c5d2"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"#d568ea"}},{"scope":"variable.other.class.php","settings":{"foreground":"#ff855e"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"#fafafa"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"#d568ea"}},{"scope":"storage.type.haskell","settings":{"foreground":"#ffcc81"}},{"scope":"storage.type.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.label.cs","settings":{"foreground":"#ff855e"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"#ff855e"}},{"scope":"support.constant.edge","settings":{"foreground":"#d568ea"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"#00c5d2"}},{"scope":"support.constant.elm","settings":{"foreground":"#ffcc81"}},{"scope":"entity.global.clojure","settings":{"foreground":"#ff855e"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"#ff855e"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"#00c5d2"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"#ff855e"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.method.groovy","settings":{"foreground":"#97c4ff"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"#ff855e"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"#92dde4"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"#ff855e"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"#d568ea"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"#ff855e"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"#ff855e"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.makefile","settings":{"foreground":"#ff855e"}},{"scope":"source.ini","settings":{"foreground":"#92dde4"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"#00c5d2"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"#636363"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"#00c5d2"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"#d568ea"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"#d568ea"}},{"scope":"entity.name.function.xi","settings":{"foreground":"#ff855e"}},{"scope":"entity.name.class.xi","settings":{"foreground":"#00c5d2"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"#ff855e"}},{"scope":"constant.regexp.xi","settings":{"foreground":"#d568ea"}},{"scope":"keyword.control.xi","settings":{"foreground":"#00c5d2"}},{"scope":"invalid.xi","settings":{"foreground":"#636363"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"#92dde4"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"#737373"}},{"scope":"constant.character.xi","settings":{"foreground":"#97c4ff"}},{"scope":"accent.xi","settings":{"foreground":"#97c4ff"}},{"scope":"wikiword.xi","settings":{"foreground":"#ffcc81"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"#fafafa"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"#737373"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"#ffcc81"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"#00c5d2"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"#636363"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name","settings":{"foreground":"#636363"}},{"scope":"support.constant.property-value","settings":{"foreground":"#636363"}},{"scope":"support.constant.font-name","settings":{"foreground":"#ffcc81"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"#64d1db","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#97c4ff","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"#00c5d2"}},{"scope":"meta.selector","settings":{"foreground":"#d568ea"}},{"scope":"selector.sass","settings":{"foreground":"#ff855e"}},{"scope":"rgb-value","settings":{"foreground":"#00c5d2"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"less rgb-value","settings":{"foreground":"#ffcc81"}},{"scope":"control.elements","settings":{"foreground":"#ffcc81"}},{"scope":"keyword.operator.less","settings":{"foreground":"#ffcc81"}},{"scope":"entity.name.tag","settings":{"foreground":"#ff855e"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#64d1db","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"#ff855e"}},{"scope":"meta.tag","settings":{"foreground":"#636363"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"#636363"}},{"scope":"markup.heading","settings":{"foreground":"#ff855e"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"#97c4ff"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"#ff855e"}},{"scope":"markup.heading.setext","settings":{"foreground":"#636363"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"#ffcc81"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"#ffcc81"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"#d568ea","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"#d568ea"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"#d568ea"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"#97c4ff"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"#ff855e"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"#92dde4"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"#ff855e"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"#ff855e"}},{"scope":"markup.quote.markdown","settings":{"foreground":"#737373"}},{"scope":"keyword.other.unit","settings":{"foreground":"#ff855e"}},{"scope":"markup.changed.diff","settings":{"foreground":"#ff855e"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"#97c4ff"}},{"scope":"markup.inserted.diff","settings":{"foreground":"#92dde4"}},{"scope":"markup.deleted.diff","settings":{"foreground":"#ff855e"}},{"scope":"string.regexp","settings":{"foreground":"#64d1db"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"#ff855e"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"#ffcc81"}},{"scope":"constant.character.escape","settings":{"foreground":"#64d1db"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"#ff855e"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"#ff855e"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"#92dde4"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"#00c5d2"}},{"scope":"support.type.property-name.json","settings":{"foreground":"#ff855e"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"#ff855e"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"#636363"}},{"scope":"block.scope.end","settings":{"foreground":"#636363"}},{"scope":"block.scope.begin","settings":{"foreground":"#636363"}},{"scope":"token.info-token","settings":{"foreground":"#97c4ff"}},{"scope":"token.warn-token","settings":{"foreground":"#ffcc81"}},{"scope":"token.error-token","settings":{"foreground":"#fafafa"}},{"scope":"token.debug-token","settings":{"foreground":"#d568ea"}},{"scope":"invalid.illegal","settings":{"foreground":"#fafafa"}},{"scope":"invalid.broken","settings":{"foreground":"#fafafa"}},{"scope":"invalid.deprecated","settings":{"foreground":"#fafafa"}},{"scope":"invalid.unimplemented","settings":{"foreground":"#fafafa"}}],"semanticTokenColors":{"comment":"#737373","string":"#92dde4","number":"#69b1ff","regexp":"#64d1db","keyword":"#d568ea","variable":"#ff855e","parameter":"#a3a3a3","property":"#ff855e","function":"#97c4ff","method":"#97c4ff","type":"#ea68bc","class":"#ea68bc","namespace":"#ff855e","enumMember":"#00c5d2","variable.constant":"#ffcc81","variable.defaultLibrary":"#ff855e","decorator":"#69b1ff"}}`));export{e as default};
@@ -0,0 +1 @@
1
+ var e=Object.freeze(JSON.parse(`{"name":"pierre-dark-vibrant","displayName":"Pierre Dark Vibrant","type":"dark","colors":{"editor.background":"color(display-p3 0.039216 0.039216 0.039216)","editor.foreground":"color(display-p3 0.980392 0.980392 0.980392)","foreground":"color(display-p3 0.980392 0.980392 0.980392)","focusBorder":"color(display-p3 0.308664 0.645271 1.000000)","selection.background":"color(display-p3 0.098734 0.152326 0.240886)","editor.selectionBackground":"color(display-p3 0.308664 0.645271 1.000000 / 0.300000)","editor.lineHighlightBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.550000)","editorCursor.foreground":"color(display-p3 0.308664 0.645271 1.000000)","editorLineNumber.foreground":"color(display-p3 0.450980 0.450980 0.450980)","editorLineNumber.activeForeground":"color(display-p3 0.639216 0.639216 0.639216)","editorIndentGuide.background":"color(display-p3 0.113725 0.113725 0.113725)","editorIndentGuide.activeBackground":"color(display-p3 0.149020 0.149020 0.149020)","diffEditor.insertedTextBackground":"color(display-p3 0.304148 0.801790 0.517191 / 0.100000)","diffEditor.deletedTextBackground":"color(display-p3 1.000000 0.250216 0.262337 / 0.100000)","sideBar.background":"color(display-p3 0.090196 0.090196 0.090196)","sideBar.foreground":"color(display-p3 0.639216 0.639216 0.639216)","sideBar.border":"color(display-p3 0.039216 0.039216 0.039216)","sideBarTitle.foreground":"color(display-p3 0.980392 0.980392 0.980392)","sideBarSectionHeader.background":"color(display-p3 0.090196 0.090196 0.090196)","sideBarSectionHeader.foreground":"color(display-p3 0.639216 0.639216 0.639216)","sideBarSectionHeader.border":"color(display-p3 0.039216 0.039216 0.039216)","activityBar.background":"color(display-p3 0.090196 0.090196 0.090196)","activityBar.foreground":"color(display-p3 0.980392 0.980392 0.980392)","activityBar.border":"color(display-p3 0.039216 0.039216 0.039216)","activityBar.activeBorder":"color(display-p3 0.308664 0.645271 1.000000)","activityBarBadge.background":"color(display-p3 0.308664 0.645271 1.000000)","activityBarBadge.foreground":"color(display-p3 0.039216 0.039216 0.039216)","titleBar.activeBackground":"color(display-p3 0.090196 0.090196 0.090196)","titleBar.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","titleBar.inactiveBackground":"color(display-p3 0.090196 0.090196 0.090196)","titleBar.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","titleBar.border":"color(display-p3 0.039216 0.039216 0.039216)","list.activeSelectionBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.600000)","list.activeSelectionForeground":"color(display-p3 0.980392 0.980392 0.980392)","list.inactiveSelectionBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.450000)","list.hoverBackground":"color(display-p3 0.098734 0.152326 0.240886 / 0.350000)","list.focusOutline":"color(display-p3 0.308664 0.645271 1.000000)","tab.activeBackground":"color(display-p3 0.039216 0.039216 0.039216)","tab.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","tab.activeBorderTop":"color(display-p3 0.308664 0.645271 1.000000)","tab.inactiveBackground":"color(display-p3 0.090196 0.090196 0.090196)","tab.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","tab.border":"color(display-p3 0.039216 0.039216 0.039216)","editorGroupHeader.tabsBackground":"color(display-p3 0.090196 0.090196 0.090196)","editorGroupHeader.tabsBorder":"color(display-p3 0.039216 0.039216 0.039216)","panel.background":"color(display-p3 0.090196 0.090196 0.090196)","panel.border":"color(display-p3 0.039216 0.039216 0.039216)","panelTitle.activeBorder":"color(display-p3 0.308664 0.645271 1.000000)","panelTitle.activeForeground":"color(display-p3 0.980392 0.980392 0.980392)","panelTitle.inactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","statusBar.background":"color(display-p3 0.090196 0.090196 0.090196)","statusBar.foreground":"color(display-p3 0.639216 0.639216 0.639216)","statusBar.border":"color(display-p3 0.039216 0.039216 0.039216)","statusBar.noFolderBackground":"color(display-p3 0.090196 0.090196 0.090196)","statusBar.debuggingBackground":"color(display-p3 1.000000 0.832068 0.300621)","statusBar.debuggingForeground":"color(display-p3 0.039216 0.039216 0.039216)","statusBarItem.remoteBackground":"color(display-p3 0.090196 0.090196 0.090196)","statusBarItem.remoteForeground":"color(display-p3 0.639216 0.639216 0.639216)","input.background":"color(display-p3 0.113725 0.113725 0.113725)","input.border":"color(display-p3 0.113725 0.113725 0.113725)","input.foreground":"color(display-p3 0.980392 0.980392 0.980392)","input.placeholderForeground":"color(display-p3 0.388235 0.388235 0.388235)","dropdown.background":"color(display-p3 0.113725 0.113725 0.113725)","dropdown.border":"color(display-p3 0.113725 0.113725 0.113725)","dropdown.foreground":"color(display-p3 0.980392 0.980392 0.980392)","button.background":"color(display-p3 0.308664 0.645271 1.000000)","button.foreground":"color(display-p3 0.039216 0.039216 0.039216)","button.hoverBackground":"color(display-p3 0.282353 0.584314 0.905882)","textLink.foreground":"color(display-p3 0.308664 0.645271 1.000000)","textLink.activeForeground":"color(display-p3 0.308664 0.645271 1.000000)","notifications.background":"color(display-p3 0.062745 0.062745 0.062745)","notifications.foreground":"color(display-p3 0.980392 0.980392 0.980392)","notifications.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationToast.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationCenter.border":"color(display-p3 0.113725 0.113725 0.113725)","notificationCenterHeader.background":"color(display-p3 0.062745 0.062745 0.062745)","notificationCenterHeader.foreground":"color(display-p3 0.639216 0.639216 0.639216)","notificationLink.foreground":"color(display-p3 0.308664 0.645271 1.000000)","notificationsErrorIcon.foreground":"color(display-p3 1.000000 0.250216 0.262337)","notificationsWarningIcon.foreground":"color(display-p3 1.000000 0.832068 0.300621)","notificationsInfoIcon.foreground":"color(display-p3 0.327292 0.790977 0.995660)","quickInput.background":"color(display-p3 0.062745 0.062745 0.062745)","quickInput.foreground":"color(display-p3 0.980392 0.980392 0.980392)","quickInputTitle.background":"color(display-p3 0.062745 0.062745 0.062745)","widget.border":"color(display-p3 0.113725 0.113725 0.113725)","gitDecoration.addedResourceForeground":"color(display-p3 0.304148 0.801790 0.517191)","gitDecoration.conflictingResourceForeground":"color(display-p3 0.467832 0.270883 1.000000)","gitDecoration.modifiedResourceForeground":"color(display-p3 0.308664 0.645271 1.000000)","gitDecoration.deletedResourceForeground":"color(display-p3 1.000000 0.250216 0.262337)","gitDecoration.untrackedResourceForeground":"color(display-p3 0.304148 0.801790 0.517191)","gitDecoration.ignoredResourceForeground":"color(display-p3 0.450980 0.450980 0.450980)","merge.currentHeaderBackground":"color(display-p3 0.467832 0.270883 1.000000 / 0.300000)","merge.currentContentBackground":"color(display-p3 0.467832 0.270883 1.000000 / 0.120000)","merge.incomingHeaderBackground":"color(display-p3 0.327292 0.790977 0.995660 / 0.300000)","merge.incomingContentBackground":"color(display-p3 0.327292 0.790977 0.995660 / 0.120000)","editorOverviewRuler.currentContentForeground":"color(display-p3 0.467832 0.270883 1.000000)","editorOverviewRuler.incomingContentForeground":"color(display-p3 0.327292 0.790977 0.995660)","terminal.titleForeground":"color(display-p3 0.639216 0.639216 0.639216)","terminal.titleInactiveForeground":"color(display-p3 0.450980 0.450980 0.450980)","terminal.background":"color(display-p3 0.090196 0.090196 0.090196)","terminal.foreground":"color(display-p3 0.639216 0.639216 0.639216)","terminal.ansiBlack":"color(display-p3 0.090196 0.090196 0.090196)","terminal.ansiRed":"color(display-p3 1.000000 0.250216 0.262337)","terminal.ansiGreen":"color(display-p3 0.298067 0.776115 0.322484)","terminal.ansiYellow":"color(display-p3 1.000000 0.832068 0.300621)","terminal.ansiBlue":"color(display-p3 0.308664 0.645271 1.000000)","terminal.ansiMagenta":"color(display-p3 0.885558 0.236588 0.705659)","terminal.ansiCyan":"color(display-p3 0.327292 0.790977 0.995660)","terminal.ansiWhite":"color(display-p3 0.737255 0.737255 0.737255)","terminal.ansiBrightBlack":"color(display-p3 0.090196 0.090196 0.090196)","terminal.ansiBrightRed":"color(display-p3 1.000000 0.250216 0.262337)","terminal.ansiBrightGreen":"color(display-p3 0.613906 0.826741 0.264677)","terminal.ansiBrightYellow":"color(display-p3 1.000000 0.832068 0.300621)","terminal.ansiBrightBlue":"color(display-p3 0.308664 0.645271 1.000000)","terminal.ansiBrightMagenta":"color(display-p3 0.885558 0.236588 0.705659)","terminal.ansiBrightCyan":"color(display-p3 0.327292 0.790977 0.995660)","terminal.ansiBrightWhite":"color(display-p3 0.737255 0.737255 0.737255)"},"tokenColors":[{"scope":["comment","punctuation.definition.comment"],"settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"comment markup.link","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":["string","constant.other.symbol"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["punctuation.definition.string.begin","punctuation.definition.string.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["constant.numeric","constant.language.boolean"],"settings":{"foreground":"color(display-p3 0.452682 0.814110 0.989434)"}},{"scope":"constant","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.definition.constant","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.language","settings":{"foreground":"color(display-p3 0.452682 0.814110 0.989434)"}},{"scope":"variable.other.constant","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.control","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["storage","storage.type","storage.modifier"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"token.storage","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.new","keyword.operator.expression.instanceof","keyword.operator.expression.typeof","keyword.operator.expression.void","keyword.operator.expression.delete","keyword.operator.expression.in","keyword.operator.expression.of","keyword.operator.expression.keyof"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.delete","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["variable","identifier","meta.definition.variable"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["variable.other.readwrite","meta.object-literal.key","support.variable.property","support.variable.object.process","support.variable.object.node"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.language","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"variable.parameter.function","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"function.parameter","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"variable.parameter","settings":{"foreground":"color(display-p3 0.639216 0.639216 0.639216)"}},{"scope":"variable.parameter.function.language.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"variable.parameter.function.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["support.function","entity.name.function","meta.function-call","meta.require","support.function.any-method","variable.function"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"keyword.other.special-method","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.function","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"support.function.console","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["support.type","entity.name.type","entity.name.class","storage.type"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["support.class","entity.name.type.class"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["entity.name.class","variable.other.class.js","variable.other.class.ts"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.class.identifier.namespace.type","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.type.namespace","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.other.inherited-class","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"entity.name.namespace","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["keyword.operator.logical","keyword.operator.bitwise","keyword.operator.channel"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.arithmetic","keyword.operator.comparison","keyword.operator.relational","keyword.operator.increment","keyword.operator.decrement"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.assignment","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.assignment.compound","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.assignment.compound.js","keyword.operator.assignment.compound.ts"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.ternary","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.optional","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"punctuation","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.separator.delimiter","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.separator.key-value","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.terminator","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace.square","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.brace.round","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"function.brace","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.parameters","punctuation.definition.typeparameters"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.block","punctuation.definition.tag"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["meta.tag.tsx","meta.tag.jsx","meta.tag.js","meta.tag.ts"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"keyword.operator.expression.import","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"keyword.operator.module","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.type.object.console","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["support.module.node","support.type.object.module","entity.name.type.module"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"support.constant.math","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"support.constant.property.math","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"support.constant.json","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"support.type.object.dom","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["support.variable.dom","support.variable.property.dom"],"settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"support.variable.property.process","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"meta.property.object","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.parameter.function.js","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["keyword.other.template.begin","keyword.other.template.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["keyword.other.substitution.begin","keyword.other.substitution.end"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["punctuation.definition.template-expression.begin","punctuation.definition.template-expression.end"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.template.expression","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"punctuation.section.embedded","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":"variable.interpolation","settings":{"foreground":"color(display-p3 1.000000 0.688063 0.418777)"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"punctuation.quasi.element","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["support.type.primitive.ts","support.type.builtin.ts","support.type.primitive.tsx","support.type.builtin.tsx"],"settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":"support.type.type.flowtype","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"support.type.primitive","settings":{"foreground":"color(display-p3 0.829375 0.434619 0.954315)"}},{"scope":["meta.decorator","meta.decorator punctuation.decorator"],"settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"entity.name.function.decorator","settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"punctuation.definition.decorator","settings":{"foreground":"color(display-p3 0.453315 0.683106 1.000000)"}},{"scope":"support.variable.magic.python","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"variable.parameter.function.language.special.self.python","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["punctuation.separator.period.python","punctuation.separator.element.python","punctuation.parenthesis.begin.python","punctuation.parenthesis.end.python"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["punctuation.definition.arguments.begin.python","punctuation.definition.arguments.end.python","punctuation.separator.arguments.python","punctuation.definition.list.begin.python","punctuation.definition.list.end.python"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.type.python","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.logical.python","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.function-call.generic.python","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"constant.character.format.placeholder.other.python","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"meta.function.decorator.python","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["support.token.decorator.python","meta.function.decorator.identifier.python"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"storage.modifier.lifetime.rust","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.function.std.rust","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.lifetime.rust","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"variable.language.rust","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"keyword.operator.misc.rust","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"keyword.operator.sigil.rust","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.constant.core.rust","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["meta.function.c","meta.function.cpp"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.section.block.begin.bracket.curly.cpp","punctuation.section.block.end.bracket.curly.cpp","punctuation.terminator.statement.c","punctuation.section.block.begin.bracket.curly.c","punctuation.section.block.end.bracket.curly.c","punctuation.section.parens.begin.bracket.round.c","punctuation.section.parens.end.bracket.round.c","punctuation.section.parameters.begin.bracket.round.c","punctuation.section.parameters.end.bracket.round.c"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["keyword.operator.assignment.c","keyword.operator.comparison.c","keyword.operator.c","keyword.operator.increment.c","keyword.operator.decrement.c","keyword.operator.bitwise.shift.c"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["keyword.operator.assignment.cpp","keyword.operator.comparison.cpp","keyword.operator.cpp","keyword.operator.increment.cpp","keyword.operator.decrement.cpp","keyword.operator.bitwise.shift.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["punctuation.separator.c","punctuation.separator.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["support.type.posix-reserved.c","support.type.posix-reserved.cpp"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.sizeof.c","keyword.operator.sizeof.cpp"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"variable.c","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["storage.type.annotation.java","storage.type.object.array.java"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"source.java","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.section.block.begin.java","punctuation.section.block.end.java","punctuation.definition.method-parameters.begin.java","punctuation.definition.method-parameters.end.java","meta.method.identifier.java","punctuation.section.method.begin.java","punctuation.section.method.end.java","punctuation.terminator.java","punctuation.section.class.begin.java","punctuation.section.class.end.java","punctuation.section.inner-class.begin.java","punctuation.section.inner-class.end.java","meta.method-call.java","punctuation.section.class.begin.bracket.curly.java","punctuation.section.class.end.bracket.curly.java","punctuation.section.method.begin.bracket.curly.java","punctuation.section.method.end.bracket.curly.java","punctuation.separator.period.java","punctuation.bracket.angle.java","punctuation.definition.annotation.java","meta.method.body.java"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"meta.method.java","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["storage.modifier.import.java","storage.type.java","storage.type.generic.java"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.instanceof.java","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"meta.definition.variable.name.java","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"token.variable.parameter.java","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"import.storage.java","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"token.package.keyword","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"token.package","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"token.storage.type.java","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.assignment.go","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["keyword.operator.arithmetic.go","keyword.operator.address.go"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"entity.name.package.go","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["support.other.namespace.use.php","support.other.namespace.use-as.php","support.other.namespace.php","entity.other.alias.php","meta.interface.php"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"keyword.operator.error-control.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.type.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["punctuation.section.array.begin.php","punctuation.section.array.end.php"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["storage.type.php","meta.other.type.phpdoc.php","keyword.other.type.php","keyword.other.array.phpdoc.php"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["meta.function-call.php","meta.function-call.object.php","meta.function-call.static.php"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["punctuation.definition.parameters.begin.bracket.round.php","punctuation.definition.parameters.end.bracket.round.php","punctuation.separator.delimiter.php","punctuation.section.scope.begin.php","punctuation.section.scope.end.php","punctuation.terminator.expression.php","punctuation.definition.arguments.begin.bracket.round.php","punctuation.definition.arguments.end.bracket.round.php","punctuation.definition.storage-type.begin.bracket.round.php","punctuation.definition.storage-type.end.bracket.round.php","punctuation.definition.array.begin.bracket.round.php","punctuation.definition.array.end.bracket.round.php","punctuation.definition.begin.bracket.round.php","punctuation.definition.end.bracket.round.php","punctuation.definition.begin.bracket.curly.php","punctuation.definition.end.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php","punctuation.definition.section.switch-block.start.bracket.curly.php","punctuation.definition.section.switch-block.begin.bracket.curly.php","punctuation.definition.section.switch-block.end.bracket.curly.php"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["support.constant.ext.php","support.constant.std.php","support.constant.core.php","support.constant.parser-token.php"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["entity.name.goto-label.php","support.other.php"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":["keyword.operator.logical.php","keyword.operator.bitwise.php","keyword.operator.arithmetic.php"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"keyword.operator.regexp.php","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.operator.comparison.php","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["keyword.operator.heredoc.php","keyword.operator.nowdoc.php"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"variable.other.class.php","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"invalid.illegal.non-null-typehinted.php","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"variable.other.generic-type.haskell","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"storage.type.haskell","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"storage.type.cs","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.name.variable.local.cs","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"entity.name.label.cs","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["entity.name.scope-resolution.function.call","entity.name.scope-resolution.function.definition"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["punctuation.definition.delayed.unison","punctuation.definition.list.begin.unison","punctuation.definition.list.end.unison","punctuation.definition.ability.begin.unison","punctuation.definition.ability.end.unison","punctuation.operator.assignment.as.unison","punctuation.separator.pipe.unison","punctuation.separator.delimiter.unison","punctuation.definition.hash.unison"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"support.constant.edge","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"support.type.prelude.elm","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.constant.elm","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.global.clojure","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.symbol.clojure","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"constant.keyword.clojure","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["meta.arguments.coffee","variable.parameter.function.coffee"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"storage.modifier.import.groovy","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.method.groovy","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"meta.definition.variable.name.groovy","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"meta.definition.class.inherited.classes.groovy","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"support.variable.semantic.hlsl","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["support.type.texture.hlsl","support.type.sampler.hlsl","support.type.object.hlsl","support.type.object.rw.hlsl","support.type.fx.hlsl","support.type.object.hlsl"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["text.variable","text.bracketed"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["support.type.swift","support.type.vb.asp"],"settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"meta.scope.prerequisites.makefile","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"source.makefile","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"source.ini","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"constant.language.symbol.ruby","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["function.parameter.ruby","function.parameter.cs"],"settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"constant.language.symbol.elixir","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"entity.name.function.xi","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"entity.name.class.xi","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"constant.character.character-class.regexp.xi","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"constant.regexp.xi","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"keyword.control.xi","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"invalid.xi","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"beginning.punctuation.definition.quote.markdown.xi","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"beginning.punctuation.definition.list.markdown.xi","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"constant.character.xi","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"accent.xi","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"wikiword.xi","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.other.color.rgb-value.xi","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"punctuation.definition.tag.xi","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":["support.constant.property-value.scss","support.constant.property-value.css"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["keyword.operator.css","keyword.operator.scss","keyword.operator.less"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":["support.constant.color.w3c-standard-color-name.css","support.constant.color.w3c-standard-color-name.scss"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.separator.list.comma.css","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.type.vendored.property-name.css","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name.css","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.constant.property-value","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"support.constant.font-name","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.other.attribute-name.class.css","settings":{"foreground":"color(display-p3 0.460672 0.843934 0.608755)","fontStyle":"normal"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)","fontStyle":"normal"}},{"scope":["entity.other.attribute-name.pseudo-element","entity.other.attribute-name.pseudo-class"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"meta.selector","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"selector.sass","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"rgb-value","settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"inline-color-decoration rgb-value","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"less rgb-value","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"control.elements","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"keyword.operator.less","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"entity.name.tag","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"color(display-p3 0.460672 0.843934 0.608755)","fontStyle":"normal"}},{"scope":"constant.character.entity","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"meta.tag","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"invalid.illegal.bad-ampersand.html","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"markup.heading","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.heading punctuation.definition.heading","entity.name.section"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"entity.name.section.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.heading.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.heading.setext","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":["markup.heading.setext.1.markdown","markup.heading.setext.2.markdown"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.bold","todo.bold"],"settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"punctuation.definition.bold","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":"punctuation.definition.bold.markdown","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":["markup.italic","punctuation.definition.italic","todo.emphasis"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)","fontStyle":"italic"}},{"scope":"emphasis md","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"markup.italic.markdown","settings":{"fontStyle":"italic"}},{"scope":["markup.underline.link.markdown","markup.underline.link.image.markdown"],"settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":["string.other.link.title.markdown","string.other.link.description.markdown"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"punctuation.definition.metadata.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["markup.inline.raw.markdown","markup.inline.raw.string.markdown"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.list.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"beginning.punctuation.definition.list.markdown","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["punctuation.definition.string.begin.markdown","punctuation.definition.string.end.markdown"],"settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.quote.markdown","settings":{"foreground":"color(display-p3 0.450980 0.450980 0.450980)"}},{"scope":"keyword.other.unit","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"markup.changed.diff","settings":{"foreground":"color(display-p3 1.000000 0.719280 0.270071)"}},{"scope":["meta.diff.header.from-file","meta.diff.header.to-file","punctuation.definition.from-file.diff","punctuation.definition.to-file.diff"],"settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"markup.inserted.diff","settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":"markup.deleted.diff","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"string.regexp","settings":{"foreground":"color(display-p3 0.520590 0.857139 0.902107)"}},{"scope":"constant.other.character-class.regexp","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"keyword.operator.quantifier.regexp","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"constant.character.escape","settings":{"foreground":"color(display-p3 0.466798 0.860904 0.775090)"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":["source.json meta.structure.dictionary.json > value.json > string.quoted.json","source.json meta.structure.array.json > value.json > string.quoted.json","source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation","source.json meta.structure.array.json > value.json > string.quoted.json > punctuation"],"settings":{"foreground":"color(display-p3 0.451324 0.823458 0.446819)"}},{"scope":["source.json meta.structure.dictionary.json > constant.language.json","source.json meta.structure.array.json > constant.language.json"],"settings":{"foreground":"color(display-p3 0.327292 0.790977 0.995660)"}},{"scope":"support.type.property-name.json","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"support.type.property-name.json punctuation","settings":{"foreground":"color(display-p3 1.000000 0.566977 0.409224)"}},{"scope":"punctuation.definition.block.sequence.item.yaml","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"block.scope.end","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"block.scope.begin","settings":{"foreground":"color(display-p3 0.388235 0.388235 0.388235)"}},{"scope":"token.info-token","settings":{"foreground":"color(display-p3 0.615613 0.445256 1.000000)"}},{"scope":"token.warn-token","settings":{"foreground":"color(display-p3 1.000000 0.868456 0.454295)"}},{"scope":"token.error-token","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"token.debug-token","settings":{"foreground":"color(display-p3 0.994741 0.445201 0.573499)"}},{"scope":"invalid.illegal","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.broken","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.deprecated","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}},{"scope":"invalid.unimplemented","settings":{"foreground":"color(display-p3 0.980392 0.980392 0.980392)"}}],"semanticTokenColors":{"comment":"color(display-p3 0.450980 0.450980 0.450980)","string":"color(display-p3 0.451324 0.823458 0.446819)","number":"color(display-p3 0.452682 0.814110 0.989434)","regexp":"color(display-p3 0.520590 0.857139 0.902107)","keyword":"color(display-p3 0.994741 0.445201 0.573499)","variable":"color(display-p3 1.000000 0.688063 0.418777)","parameter":"color(display-p3 0.639216 0.639216 0.639216)","property":"color(display-p3 1.000000 0.688063 0.418777)","function":"color(display-p3 0.615613 0.445256 1.000000)","method":"color(display-p3 0.615613 0.445256 1.000000)","type":"color(display-p3 0.829375 0.434619 0.954315)","class":"color(display-p3 0.829375 0.434619 0.954315)","namespace":"color(display-p3 1.000000 0.719280 0.270071)","enumMember":"color(display-p3 0.327292 0.790977 0.995660)","variable.constant":"color(display-p3 1.000000 0.868456 0.454295)","variable.defaultLibrary":"color(display-p3 1.000000 0.719280 0.270071)","decorator":"color(display-p3 0.453315 0.683106 1.000000)"}}`));export{e as default};