@treeseed/core 0.1.2

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 (384) hide show
  1. package/README.md +145 -0
  2. package/dist/agents/index.js +5 -0
  3. package/dist/agents/registry-helper.js +14 -0
  4. package/dist/agents/registry.js +88 -0
  5. package/dist/components/DevWatchReload.astro +45 -0
  6. package/dist/components/SiteTitle.astro +51 -0
  7. package/dist/components/content/ContentStatusLegend.astro +18 -0
  8. package/dist/components/content/StatusBadge.astro +11 -0
  9. package/dist/components/docs/BookFontControls.astro +180 -0
  10. package/dist/components/docs/DesktopSidebarToggle.astro +88 -0
  11. package/dist/components/docs/DownloadBook.astro +34 -0
  12. package/dist/components/docs/Footer.astro +196 -0
  13. package/dist/components/docs/Header.astro +150 -0
  14. package/dist/components/docs/PageFrame.astro +260 -0
  15. package/dist/components/docs/PageSidebar.astro +63 -0
  16. package/dist/components/docs/PageTitle.astro +39 -0
  17. package/dist/components/docs/Sidebar.astro +41 -0
  18. package/dist/components/docs/ThemeSelect.astro +3 -0
  19. package/dist/components/forms/ContactForm.astro +234 -0
  20. package/dist/components/forms/FooterSubscribeForm.astro +189 -0
  21. package/dist/components/site/BookList.astro +27 -0
  22. package/dist/components/site/CTASection.astro +24 -0
  23. package/dist/components/site/ChronicleList.astro +33 -0
  24. package/dist/components/site/Hero.astro +18 -0
  25. package/dist/components/site/NotesList.astro +18 -0
  26. package/dist/components/site/PathCard.astro +16 -0
  27. package/dist/components/site/ProfileList.astro +30 -0
  28. package/dist/components/site/SectionIntro.astro +9 -0
  29. package/dist/components/site/StageBanner.astro +8 -0
  30. package/dist/components/site/TrustCallout.astro +9 -0
  31. package/dist/components/starlight.js +6 -0
  32. package/dist/config.js +8 -0
  33. package/dist/content-config.js +9 -0
  34. package/dist/content.js +230 -0
  35. package/dist/contracts.d.ts +130 -0
  36. package/dist/contracts.js +0 -0
  37. package/dist/deploy/config.d.ts +4 -0
  38. package/dist/deploy/config.js +154 -0
  39. package/dist/deploy/runtime.js +77 -0
  40. package/dist/env.yaml +322 -0
  41. package/dist/environment.d.ts +130 -0
  42. package/dist/environment.js +324 -0
  43. package/dist/index.js +81 -0
  44. package/dist/layouts/AuthoredEntryLayout.astro +87 -0
  45. package/dist/layouts/BookLayout.astro +35 -0
  46. package/dist/layouts/BridgeLayout.astro +11 -0
  47. package/dist/layouts/ContentLayout.astro +24 -0
  48. package/dist/layouts/MainLayout.astro +203 -0
  49. package/dist/layouts/NoteLayout.astro +26 -0
  50. package/dist/layouts/ProfileLayout.astro +81 -0
  51. package/dist/middleware/starlightRouteData.js +45 -0
  52. package/dist/pages/404.astro +29 -0
  53. package/dist/pages/[slug].astro +30 -0
  54. package/dist/pages/agents/[slug].astro +29 -0
  55. package/dist/pages/agents/index.astro +27 -0
  56. package/dist/pages/api/form/submit.js +14 -0
  57. package/dist/pages/books/[slug].astro +19 -0
  58. package/dist/pages/books/index.astro +28 -0
  59. package/dist/pages/contact.astro +27 -0
  60. package/dist/pages/feed.xml.js +34 -0
  61. package/dist/pages/index.astro +290 -0
  62. package/dist/pages/notes/[slug].astro +19 -0
  63. package/dist/pages/notes/index.astro +21 -0
  64. package/dist/pages/objectives/[slug].astro +31 -0
  65. package/dist/pages/objectives/index.astro +30 -0
  66. package/dist/pages/people/[slug].astro +29 -0
  67. package/dist/pages/people/index.astro +28 -0
  68. package/dist/pages/questions/[slug].astro +31 -0
  69. package/dist/pages/questions/index.astro +30 -0
  70. package/dist/plugin-default.js +4 -0
  71. package/dist/plugins/builtin/default-plugin.d.ts +21 -0
  72. package/dist/plugins/builtin/default-plugin.js +32 -0
  73. package/dist/plugins/constants.d.ts +21 -0
  74. package/dist/plugins/constants.js +28 -0
  75. package/dist/plugins/plugin.d.ts +42 -0
  76. package/dist/plugins/plugin.js +6 -0
  77. package/dist/plugins/runtime.d.ts +31 -0
  78. package/dist/plugins/runtime.js +120 -0
  79. package/dist/scripts/aggregate-book.js +112 -0
  80. package/dist/scripts/assert-release-tag-version.js +21 -0
  81. package/dist/scripts/build-dist.js +384 -0
  82. package/dist/scripts/build-tenant-worker.js +36 -0
  83. package/dist/scripts/package-tools.js +88 -0
  84. package/dist/scripts/patch-starlight-content-path.js +172 -0
  85. package/dist/scripts/paths.js +11 -0
  86. package/dist/scripts/publish-package.js +20 -0
  87. package/dist/scripts/release-verify.js +52 -0
  88. package/dist/scripts/run-fixture-astro-command.js +21 -0
  89. package/dist/scripts/tenant-astro-command.js +3 -0
  90. package/dist/scripts/tenant-build.js +16 -0
  91. package/dist/scripts/tenant-check.js +7 -0
  92. package/dist/scripts/test-smoke.js +105 -0
  93. package/dist/server.js +53 -0
  94. package/dist/site-resources.d.ts +29 -0
  95. package/dist/site-resources.js +127 -0
  96. package/dist/site.js +313 -0
  97. package/dist/styles/global.css +683 -0
  98. package/dist/styles/prose.css +89 -0
  99. package/dist/styles/tokens.css +24 -0
  100. package/dist/tenant/bridge.js +5 -0
  101. package/dist/tenant/config.d.ts +9 -0
  102. package/dist/tenant/config.js +124 -0
  103. package/dist/tenant/runtime-config.js +20 -0
  104. package/dist/tsconfigs/strict.json +3 -0
  105. package/dist/types/agents.d.ts +1 -0
  106. package/dist/types/agents.js +1 -0
  107. package/dist/types/astro-build.d.js +0 -0
  108. package/dist/types/cloudflare-sockets.d.js +0 -0
  109. package/dist/types/cloudflare.d.ts +1 -0
  110. package/dist/types/cloudflare.js +1 -0
  111. package/dist/types/forms.js +4 -0
  112. package/dist/utils/agents/adapters/execution.js +90 -0
  113. package/dist/utils/agents/adapters/mutations.js +30 -0
  114. package/dist/utils/agents/adapters/notification.js +16 -0
  115. package/dist/utils/agents/adapters/repository.js +61 -0
  116. package/dist/utils/agents/adapters/research.js +25 -0
  117. package/dist/utils/agents/adapters/verification.js +62 -0
  118. package/dist/utils/agents/cli-tools.js +5 -0
  119. package/dist/utils/agents/contracts/messages.d.ts +88 -0
  120. package/dist/utils/agents/contracts/messages.js +138 -0
  121. package/dist/utils/agents/contracts/run.d.ts +20 -0
  122. package/dist/utils/agents/contracts/run.js +0 -0
  123. package/dist/utils/agents/runtime-types.d.ts +117 -0
  124. package/dist/utils/agents/runtime-types.js +4 -0
  125. package/dist/utils/books-data.js +82 -0
  126. package/dist/utils/content-status.js +38 -0
  127. package/dist/utils/forms/config.js +87 -0
  128. package/dist/utils/forms/constants.js +27 -0
  129. package/dist/utils/forms/contact-submissions-local.js +19 -0
  130. package/dist/utils/forms/contact-submissions.js +72 -0
  131. package/dist/utils/forms/crypto.js +64 -0
  132. package/dist/utils/forms/guard.js +76 -0
  133. package/dist/utils/forms/http.js +51 -0
  134. package/dist/utils/forms/provider-core.js +88 -0
  135. package/dist/utils/forms/routing-core.js +7 -0
  136. package/dist/utils/forms/routing.js +13 -0
  137. package/dist/utils/forms/runtime-core.js +17 -0
  138. package/dist/utils/forms/runtime.js +27 -0
  139. package/dist/utils/forms/service-core.js +256 -0
  140. package/dist/utils/forms/service.js +55 -0
  141. package/dist/utils/forms/session.js +57 -0
  142. package/dist/utils/forms/smtp-cloudflare.js +107 -0
  143. package/dist/utils/forms/smtp-node.js +27 -0
  144. package/dist/utils/forms/smtp.js +10 -0
  145. package/dist/utils/forms/subscribers-local.js +21 -0
  146. package/dist/utils/forms/subscribers.js +53 -0
  147. package/dist/utils/forms/turnstile.js +31 -0
  148. package/dist/utils/forms/validation.js +58 -0
  149. package/dist/utils/hub-content.js +28 -0
  150. package/dist/utils/plugin-runtime.js +158 -0
  151. package/dist/utils/routes.js +17 -0
  152. package/dist/utils/seo.js +4 -0
  153. package/dist/utils/site-config-schema.js +282 -0
  154. package/dist/utils/site-config.js +122 -0
  155. package/dist/utils/starlight-nav.js +62 -0
  156. package/dist/utils/theme.js +49 -0
  157. package/dist/vendor/starlight/components/AnchorHeading.astro +53 -0
  158. package/dist/vendor/starlight/components/Banner.astro +23 -0
  159. package/dist/vendor/starlight/components/ContentNotice.astro +33 -0
  160. package/dist/vendor/starlight/components/ContentPanel.astro +27 -0
  161. package/dist/vendor/starlight/components/DraftContentNotice.astro +5 -0
  162. package/dist/vendor/starlight/components/EditLink.astro +28 -0
  163. package/dist/vendor/starlight/components/FallbackContentNotice.astro +5 -0
  164. package/dist/vendor/starlight/components/Footer.astro +61 -0
  165. package/dist/vendor/starlight/components/Head.astro +5 -0
  166. package/dist/vendor/starlight/components/Header.astro +94 -0
  167. package/dist/vendor/starlight/components/Hero.astro +143 -0
  168. package/dist/vendor/starlight/components/Icons.js +121 -0
  169. package/dist/vendor/starlight/components/LanguageSelect.astro +57 -0
  170. package/dist/vendor/starlight/components/LastUpdated.astro +14 -0
  171. package/dist/vendor/starlight/components/MarkdownContent.astro +5 -0
  172. package/dist/vendor/starlight/components/MobileMenuFooter.astro +35 -0
  173. package/dist/vendor/starlight/components/MobileMenuToggle.astro +107 -0
  174. package/dist/vendor/starlight/components/MobileTableOfContents.astro +151 -0
  175. package/dist/vendor/starlight/components/Page.astro +126 -0
  176. package/dist/vendor/starlight/components/PageFrame.astro +97 -0
  177. package/dist/vendor/starlight/components/PageSidebar.astro +59 -0
  178. package/dist/vendor/starlight/components/PageTitle.astro +17 -0
  179. package/dist/vendor/starlight/components/Pagination.astro +79 -0
  180. package/dist/vendor/starlight/components/Search.astro +488 -0
  181. package/dist/vendor/starlight/components/Select.astro +99 -0
  182. package/dist/vendor/starlight/components/Sidebar.astro +15 -0
  183. package/dist/vendor/starlight/components/SidebarPersistState.js +43 -0
  184. package/dist/vendor/starlight/components/SidebarPersister.astro +78 -0
  185. package/dist/vendor/starlight/components/SidebarRestorePoint.astro +12 -0
  186. package/dist/vendor/starlight/components/SidebarSublist.astro +154 -0
  187. package/dist/vendor/starlight/components/SiteTitle.astro +59 -0
  188. package/dist/vendor/starlight/components/SkipLink.astro +26 -0
  189. package/dist/vendor/starlight/components/SocialIcons.astro +32 -0
  190. package/dist/vendor/starlight/components/StarlightPage.astro +17 -0
  191. package/dist/vendor/starlight/components/TableOfContents/TableOfContentsList.astro +79 -0
  192. package/dist/vendor/starlight/components/TableOfContents/starlight-toc.js +93 -0
  193. package/dist/vendor/starlight/components/TableOfContents.astro +18 -0
  194. package/dist/vendor/starlight/components/ThemeProvider.astro +38 -0
  195. package/dist/vendor/starlight/components/ThemeSelect.astro +73 -0
  196. package/dist/vendor/starlight/components/TwoColumnContent.astro +54 -0
  197. package/dist/vendor/starlight/components.js +26 -0
  198. package/dist/vendor/starlight/constants.js +4 -0
  199. package/dist/vendor/starlight/expressive-code.d.js +1 -0
  200. package/dist/vendor/starlight/global.d.js +0 -0
  201. package/dist/vendor/starlight/i18n.d.js +1 -0
  202. package/dist/vendor/starlight/index.js +119 -0
  203. package/dist/vendor/starlight/integrations/asides-error.js +12 -0
  204. package/dist/vendor/starlight/integrations/asides.js +179 -0
  205. package/dist/vendor/starlight/integrations/code-rtl-support.js +21 -0
  206. package/dist/vendor/starlight/integrations/expressive-code/hast.d.js +1 -0
  207. package/dist/vendor/starlight/integrations/expressive-code/index.js +63 -0
  208. package/dist/vendor/starlight/integrations/expressive-code/preprocessor.js +92 -0
  209. package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-dark.jsonc +1796 -0
  210. package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-dark.jsonc.js +1 -0
  211. package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-light.jsonc +1695 -0
  212. package/dist/vendor/starlight/integrations/expressive-code/themes/night-owl-light.jsonc.js +1 -0
  213. package/dist/vendor/starlight/integrations/expressive-code/theming.js +62 -0
  214. package/dist/vendor/starlight/integrations/expressive-code/translations.js +29 -0
  215. package/dist/vendor/starlight/integrations/heading-links.js +61 -0
  216. package/dist/vendor/starlight/integrations/pagefind.js +43 -0
  217. package/dist/vendor/starlight/integrations/remark-rehype.js +68 -0
  218. package/dist/vendor/starlight/integrations/shared/absolutePathToLang.js +15 -0
  219. package/dist/vendor/starlight/integrations/shared/localeToLang.js +9 -0
  220. package/dist/vendor/starlight/integrations/shared/slugToLocale.js +10 -0
  221. package/dist/vendor/starlight/integrations/sitemap.js +20 -0
  222. package/dist/vendor/starlight/integrations/virtual-user-config.js +110 -0
  223. package/dist/vendor/starlight/integrations/vite-layer-order.js +42 -0
  224. package/dist/vendor/starlight/internal.js +6 -0
  225. package/dist/vendor/starlight/loaders.js +36 -0
  226. package/dist/vendor/starlight/locals.d.js +0 -0
  227. package/dist/vendor/starlight/locals.js +30 -0
  228. package/dist/vendor/starlight/package.json +231 -0
  229. package/dist/vendor/starlight/package.json.js +248 -0
  230. package/dist/vendor/starlight/props.js +0 -0
  231. package/dist/vendor/starlight/route-data.js +6 -0
  232. package/dist/vendor/starlight/routes/common.astro +23 -0
  233. package/dist/vendor/starlight/routes/ssr/404.astro +7 -0
  234. package/dist/vendor/starlight/routes/ssr/index.astro +14 -0
  235. package/dist/vendor/starlight/routes/static/404.astro +7 -0
  236. package/dist/vendor/starlight/routes/static/index.astro +12 -0
  237. package/dist/vendor/starlight/schema.js +102 -0
  238. package/dist/vendor/starlight/schemas/badge.js +26 -0
  239. package/dist/vendor/starlight/schemas/components.js +235 -0
  240. package/dist/vendor/starlight/schemas/expressiveCode.js +12 -0
  241. package/dist/vendor/starlight/schemas/favicon.js +33 -0
  242. package/dist/vendor/starlight/schemas/head.js +32 -0
  243. package/dist/vendor/starlight/schemas/hero.js +57 -0
  244. package/dist/vendor/starlight/schemas/i18n.js +101 -0
  245. package/dist/vendor/starlight/schemas/icon.js +7 -0
  246. package/dist/vendor/starlight/schemas/logo.js +24 -0
  247. package/dist/vendor/starlight/schemas/pagefind.js +108 -0
  248. package/dist/vendor/starlight/schemas/prevNextLink.js +14 -0
  249. package/dist/vendor/starlight/schemas/sidebar.js +80 -0
  250. package/dist/vendor/starlight/schemas/site-title.js +19 -0
  251. package/dist/vendor/starlight/schemas/social.js +19 -0
  252. package/dist/vendor/starlight/schemas/tableOfContents.js +16 -0
  253. package/dist/vendor/starlight/style/anchor-links.css +131 -0
  254. package/dist/vendor/starlight/style/asides.css +51 -0
  255. package/dist/vendor/starlight/style/layers.css +1 -0
  256. package/dist/vendor/starlight/style/markdown.css +253 -0
  257. package/dist/vendor/starlight/style/print.css +175 -0
  258. package/dist/vendor/starlight/style/props.css +188 -0
  259. package/dist/vendor/starlight/style/reset.css +52 -0
  260. package/dist/vendor/starlight/style/util.css +63 -0
  261. package/dist/vendor/starlight/translations/ar.json +30 -0
  262. package/dist/vendor/starlight/translations/ar.json.js +32 -0
  263. package/dist/vendor/starlight/translations/ca.json +43 -0
  264. package/dist/vendor/starlight/translations/ca.json.js +45 -0
  265. package/dist/vendor/starlight/translations/cs.json +43 -0
  266. package/dist/vendor/starlight/translations/cs.json.js +45 -0
  267. package/dist/vendor/starlight/translations/da.json +30 -0
  268. package/dist/vendor/starlight/translations/da.json.js +32 -0
  269. package/dist/vendor/starlight/translations/de.json +30 -0
  270. package/dist/vendor/starlight/translations/de.json.js +32 -0
  271. package/dist/vendor/starlight/translations/el.json +30 -0
  272. package/dist/vendor/starlight/translations/el.json.js +32 -0
  273. package/dist/vendor/starlight/translations/en.json +30 -0
  274. package/dist/vendor/starlight/translations/en.json.js +32 -0
  275. package/dist/vendor/starlight/translations/es.json +43 -0
  276. package/dist/vendor/starlight/translations/es.json.js +45 -0
  277. package/dist/vendor/starlight/translations/fa.json +30 -0
  278. package/dist/vendor/starlight/translations/fa.json.js +32 -0
  279. package/dist/vendor/starlight/translations/fi.json +30 -0
  280. package/dist/vendor/starlight/translations/fi.json.js +32 -0
  281. package/dist/vendor/starlight/translations/fr.json +33 -0
  282. package/dist/vendor/starlight/translations/fr.json.js +35 -0
  283. package/dist/vendor/starlight/translations/gl.json +43 -0
  284. package/dist/vendor/starlight/translations/gl.json.js +45 -0
  285. package/dist/vendor/starlight/translations/he.json +30 -0
  286. package/dist/vendor/starlight/translations/he.json.js +32 -0
  287. package/dist/vendor/starlight/translations/hi.json +30 -0
  288. package/dist/vendor/starlight/translations/hi.json.js +32 -0
  289. package/dist/vendor/starlight/translations/hu.json +43 -0
  290. package/dist/vendor/starlight/translations/hu.json.js +45 -0
  291. package/dist/vendor/starlight/translations/id.json +30 -0
  292. package/dist/vendor/starlight/translations/id.json.js +32 -0
  293. package/dist/vendor/starlight/translations/index.js +77 -0
  294. package/dist/vendor/starlight/translations/it.json +30 -0
  295. package/dist/vendor/starlight/translations/it.json.js +32 -0
  296. package/dist/vendor/starlight/translations/ja.json +30 -0
  297. package/dist/vendor/starlight/translations/ja.json.js +32 -0
  298. package/dist/vendor/starlight/translations/ko.json +30 -0
  299. package/dist/vendor/starlight/translations/ko.json.js +32 -0
  300. package/dist/vendor/starlight/translations/lv.json +30 -0
  301. package/dist/vendor/starlight/translations/lv.json.js +32 -0
  302. package/dist/vendor/starlight/translations/nb.json +30 -0
  303. package/dist/vendor/starlight/translations/nb.json.js +32 -0
  304. package/dist/vendor/starlight/translations/nl.json +30 -0
  305. package/dist/vendor/starlight/translations/nl.json.js +32 -0
  306. package/dist/vendor/starlight/translations/pl.json +33 -0
  307. package/dist/vendor/starlight/translations/pl.json.js +35 -0
  308. package/dist/vendor/starlight/translations/pt.json +30 -0
  309. package/dist/vendor/starlight/translations/pt.json.js +32 -0
  310. package/dist/vendor/starlight/translations/ro.json +30 -0
  311. package/dist/vendor/starlight/translations/ro.json.js +32 -0
  312. package/dist/vendor/starlight/translations/ru.json +33 -0
  313. package/dist/vendor/starlight/translations/ru.json.js +35 -0
  314. package/dist/vendor/starlight/translations/sk.json +30 -0
  315. package/dist/vendor/starlight/translations/sk.json.js +32 -0
  316. package/dist/vendor/starlight/translations/sv.json +30 -0
  317. package/dist/vendor/starlight/translations/sv.json.js +32 -0
  318. package/dist/vendor/starlight/translations/th.json +30 -0
  319. package/dist/vendor/starlight/translations/th.json.js +32 -0
  320. package/dist/vendor/starlight/translations/tr.json +30 -0
  321. package/dist/vendor/starlight/translations/tr.json.js +32 -0
  322. package/dist/vendor/starlight/translations/uk.json +30 -0
  323. package/dist/vendor/starlight/translations/uk.json.js +32 -0
  324. package/dist/vendor/starlight/translations/vi.json +30 -0
  325. package/dist/vendor/starlight/translations/vi.json.js +32 -0
  326. package/dist/vendor/starlight/translations/zh-CN.json +30 -0
  327. package/dist/vendor/starlight/translations/zh-CN.json.js +32 -0
  328. package/dist/vendor/starlight/translations/zh-TW.json +30 -0
  329. package/dist/vendor/starlight/translations/zh-TW.json.js +32 -0
  330. package/dist/vendor/starlight/types.js +0 -0
  331. package/dist/vendor/starlight/user-components/Aside.astro +40 -0
  332. package/dist/vendor/starlight/user-components/Badge.astro +148 -0
  333. package/dist/vendor/starlight/user-components/Card.astro +68 -0
  334. package/dist/vendor/starlight/user-components/CardGrid.astro +38 -0
  335. package/dist/vendor/starlight/user-components/FileTree.astro +137 -0
  336. package/dist/vendor/starlight/user-components/Icon.astro +42 -0
  337. package/dist/vendor/starlight/user-components/LinkButton.astro +78 -0
  338. package/dist/vendor/starlight/user-components/LinkCard.astro +78 -0
  339. package/dist/vendor/starlight/user-components/Steps.astro +90 -0
  340. package/dist/vendor/starlight/user-components/TabItem.astro +19 -0
  341. package/dist/vendor/starlight/user-components/Tabs.astro +268 -0
  342. package/dist/vendor/starlight/user-components/file-tree-icons.js +608 -0
  343. package/dist/vendor/starlight/user-components/rehype-file-tree.js +160 -0
  344. package/dist/vendor/starlight/user-components/rehype-steps.js +53 -0
  345. package/dist/vendor/starlight/user-components/rehype-tabs.js +73 -0
  346. package/dist/vendor/starlight/utils/base.js +14 -0
  347. package/dist/vendor/starlight/utils/canonical.js +13 -0
  348. package/dist/vendor/starlight/utils/collection-fs.js +13 -0
  349. package/dist/vendor/starlight/utils/collection.js +16 -0
  350. package/dist/vendor/starlight/utils/createPathFormatter.js +39 -0
  351. package/dist/vendor/starlight/utils/createTranslationSystem.js +60 -0
  352. package/dist/vendor/starlight/utils/error-map.js +110 -0
  353. package/dist/vendor/starlight/utils/format-path.js +9 -0
  354. package/dist/vendor/starlight/utils/generateToC.js +18 -0
  355. package/dist/vendor/starlight/utils/git.js +92 -0
  356. package/dist/vendor/starlight/utils/gitInlined.js +13 -0
  357. package/dist/vendor/starlight/utils/head.js +156 -0
  358. package/dist/vendor/starlight/utils/i18n.js +121 -0
  359. package/dist/vendor/starlight/utils/localizedUrl.js +37 -0
  360. package/dist/vendor/starlight/utils/navigation.js +320 -0
  361. package/dist/vendor/starlight/utils/path.js +52 -0
  362. package/dist/vendor/starlight/utils/plugins.js +355 -0
  363. package/dist/vendor/starlight/utils/routing/data.js +116 -0
  364. package/dist/vendor/starlight/utils/routing/index.js +107 -0
  365. package/dist/vendor/starlight/utils/routing/middleware.js +40 -0
  366. package/dist/vendor/starlight/utils/routing/types.js +0 -0
  367. package/dist/vendor/starlight/utils/routing.js +1 -0
  368. package/dist/vendor/starlight/utils/slugs.js +70 -0
  369. package/dist/vendor/starlight/utils/starlight-page.js +123 -0
  370. package/dist/vendor/starlight/utils/translations-fs.js +31 -0
  371. package/dist/vendor/starlight/utils/translations.js +31 -0
  372. package/dist/vendor/starlight/utils/types.js +0 -0
  373. package/dist/vendor/starlight/utils/url.js +5 -0
  374. package/dist/vendor/starlight/utils/user-config.js +255 -0
  375. package/dist/vendor/starlight/utils/validateLogoImports.js +22 -0
  376. package/dist/vendor/starlight/virtual-internal.d.js +0 -0
  377. package/dist/vendor/starlight/virtual.d.js +0 -0
  378. package/dist/worker/forms-worker.js +141 -0
  379. package/package.json +156 -0
  380. package/style/anchor-links.css +131 -0
  381. package/templates/github/deploy.workflow.yml +47 -0
  382. package/tsconfigs/strict.json +3 -0
  383. package/utils/git.ts +121 -0
  384. package/utils/gitInlined.ts +20 -0
@@ -0,0 +1,1796 @@
1
+ /**
2
+ * Night Owl VS Code Theme - https://github.com/sdras/night-owl-vscode-theme
3
+ *
4
+ * MIT License
5
+ *
6
+ * Copyright (c) 2018 Sarah Drasner
7
+ *
8
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ * of this software and associated documentation files (the "Software"), to deal
10
+ * in the Software without restriction, including without limitation the rights
11
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ * copies of the Software, and to permit persons to whom the Software is
13
+ * furnished to do so, subject to the following conditions:
14
+ *
15
+ * The above copyright notice and this permission notice shall be included in all
16
+ * copies or substantial portions of the Software.
17
+ *
18
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ * SOFTWARE.
25
+ */
26
+ {
27
+ "name": "Night Owl No Italics",
28
+ "type": "dark",
29
+ "semanticHighlighting": false,
30
+ "colors": {
31
+ "contrastBorder": "#122d42",
32
+ "focusBorder": "#122d42",
33
+ "foreground": "#d6deeb",
34
+ "widget.shadow": "#011627",
35
+ "selection.background": "#4373c2",
36
+ "errorForeground": "#EF5350",
37
+ "button.background": "#7e57c2cc",
38
+ "button.foreground": "#ffffffcc",
39
+ "button.hoverBackground": "#7e57c2",
40
+ "dropdown.background": "#011627",
41
+ "dropdown.border": "#5f7e97",
42
+ "dropdown.foreground": "#ffffffcc",
43
+ "input.background": "#0b253a",
44
+ "input.border": "#5f7e97",
45
+ "input.foreground": "#ffffffcc",
46
+ "input.placeholderForeground": "#5f7e97",
47
+ "inputOption.activeBorder": "#ffffffcc",
48
+ "punctuation.definition.generic.begin.html": "#ef5350f2",
49
+ "inputValidation.errorBackground": "#AB0300F2",
50
+ "inputValidation.errorBorder": "#EF5350",
51
+ "inputValidation.infoBackground": "#00589EF2",
52
+ "inputValidation.infoBorder": "#64B5F6",
53
+ "inputValidation.warningBackground": "#675700F2",
54
+ "inputValidation.warningBorder": "#FFCA28",
55
+ "scrollbar.shadow": "#010b14",
56
+ "scrollbarSlider.activeBackground": "#084d8180",
57
+ "scrollbarSlider.background": "#084d8180",
58
+ "scrollbarSlider.hoverBackground": "#084d8180",
59
+ "badge.background": "#5f7e97",
60
+ "badge.foreground": "#ffffff",
61
+ "progress.background": "#7e57c2",
62
+ "breadcrumb.foreground": "#A599E9",
63
+ "breadcrumb.focusForeground": "#ffffff",
64
+ "breadcrumb.activeSelectionForeground": "#FFFFFF",
65
+ "breadcrumbPicker.background": "#001122",
66
+ "list.activeSelectionBackground": "#234d708c",
67
+ "list.activeSelectionForeground": "#ffffff",
68
+ "list.invalidItemForeground": "#975f94",
69
+ "list.dropBackground": "#011627",
70
+ "list.focusBackground": "#010d18",
71
+ "list.focusForeground": "#ffffff",
72
+ "list.highlightForeground": "#ffffff",
73
+ "list.hoverBackground": "#011627",
74
+ "list.hoverForeground": "#ffffff",
75
+ "list.inactiveSelectionBackground": "#0e293f",
76
+ "list.inactiveSelectionForeground": "#5f7e97",
77
+ "activityBar.background": "#011627",
78
+ "activityBar.dropBackground": "#5f7e97",
79
+ "activityBar.foreground": "#5f7e97",
80
+ "activityBar.border": "#011627",
81
+ "activityBarBadge.background": "#44596b",
82
+ "activityBarBadge.foreground": "#ffffff",
83
+ "sideBar.background": "#011627",
84
+ "sideBar.foreground": "#89a4bb",
85
+ "sideBar.border": "#011627",
86
+ "sideBarTitle.foreground": "#5f7e97",
87
+ "sideBarSectionHeader.background": "#011627",
88
+ "sideBarSectionHeader.foreground": "#5f7e97",
89
+ "editorGroup.emptyBackground": "#011627",
90
+ "editorGroup.border": "#011627",
91
+ "editorGroup.dropBackground": "#7e57c273",
92
+ "editorGroupHeader.noTabsBackground": "#011627",
93
+ "editorGroupHeader.tabsBackground": "#011627",
94
+ "editorGroupHeader.tabsBorder": "#262A39",
95
+ "tab.activeBackground": "#0b2942",
96
+ "tab.activeForeground": "#d2dee7",
97
+ "tab.border": "#272B3B",
98
+ "tab.activeBorder": "#262A39",
99
+ "tab.unfocusedActiveBorder": "#262A39",
100
+ "tab.inactiveBackground": "#01111d",
101
+ "tab.inactiveForeground": "#5f7e97",
102
+ "tab.unfocusedActiveForeground": "#5f7e97",
103
+ "tab.unfocusedInactiveForeground": "#5f7e97",
104
+ "editor.background": "#011627",
105
+ "editor.foreground": "#d6deeb",
106
+ "editorLineNumber.foreground": "#4b6479",
107
+ "editorLineNumber.activeForeground": "#C5E4FD",
108
+ "editorCursor.foreground": "#80a4c2",
109
+ "editor.selectionBackground": "#1d3b53",
110
+ "editor.selectionHighlightBackground": "#5f7e9779",
111
+ "editor.inactiveSelectionBackground": "#7e57c25a",
112
+ "editor.wordHighlightBackground": "#f6bbe533",
113
+ "editor.wordHighlightStrongBackground": "#e2a2f433",
114
+ "editor.findMatchBackground": "#5f7e9779",
115
+ "editor.findMatchHighlightBackground": "#1085bb5d",
116
+ "editor.findRangeHighlightBackground": null,
117
+ "editor.hoverHighlightBackground": "#7e57c25a",
118
+ "editor.lineHighlightBackground": "#0003",
119
+ "editor.lineHighlightBorder": null,
120
+ "editorLink.activeForeground": null,
121
+ "editor.rangeHighlightBackground": "#7e57c25a",
122
+ "editorWhitespace.foreground": null,
123
+ "editorIndentGuide.background": "#5e81ce52",
124
+ "editorIndentGuide.activeBackground": "#7E97AC",
125
+ "editorRuler.foreground": "#5e81ce52",
126
+ "editorCodeLens.foreground": "#5e82ceb4",
127
+ "editorBracketMatch.background": "#5f7e974d",
128
+ "editorBracketMatch.border": null,
129
+ "editorOverviewRuler.currentContentForeground": "#7e57c2",
130
+ "editorOverviewRuler.incomingContentForeground": "#7e57c2",
131
+ "editorOverviewRuler.commonContentForeground": "#7e57c2",
132
+ "editorError.foreground": "#EF5350",
133
+ "editorError.border": null,
134
+ "editorWarning.foreground": "#b39554",
135
+ "editorWarning.border": null,
136
+ "editorGutter.background": "#011627",
137
+ "editorGutter.modifiedBackground": "#e2b93d",
138
+ "editorGutter.addedBackground": "#9CCC65",
139
+ "editorGutter.deletedBackground": "#EF5350",
140
+ "diffEditor.insertedTextBackground": "#99b76d23",
141
+ "diffEditor.insertedTextBorder": "#c5e47833",
142
+ "diffEditor.removedTextBackground": "#ef535033",
143
+ "diffEditor.removedTextBorder": "#ef53504d",
144
+ "editorWidget.background": "#021320",
145
+ "editorWidget.border": "#5f7e97",
146
+ "editorSuggestWidget.background": "#2C3043",
147
+ "editorSuggestWidget.border": "#2B2F40",
148
+ "editorSuggestWidget.foreground": "#d6deeb",
149
+ "editorSuggestWidget.highlightForeground": "#ffffff",
150
+ "editorSuggestWidget.selectedBackground": "#5f7e97",
151
+ "editorHoverWidget.background": "#011627",
152
+ "editorHoverWidget.border": "#5f7e97",
153
+ "debugExceptionWidget.background": "#011627",
154
+ "debugExceptionWidget.border": "#5f7e97",
155
+ "editorMarkerNavigation.background": "#0b2942",
156
+ "editorMarkerNavigationError.background": "#EF5350",
157
+ "editorMarkerNavigationWarning.background": "#FFCA28",
158
+ "peekView.border": "#5f7e97",
159
+ "peekViewEditor.background": "#011627",
160
+ "peekViewEditor.matchHighlightBackground": "#7e57c25a",
161
+ "peekViewResult.background": "#011627",
162
+ "peekViewResult.fileForeground": "#5f7e97",
163
+ "peekViewResult.lineForeground": "#5f7e97",
164
+ "peekViewResult.matchHighlightBackground": "#ffffffcc",
165
+ "peekViewResult.selectionBackground": "#2E3250",
166
+ "peekViewResult.selectionForeground": "#5f7e97",
167
+ "peekViewTitle.background": "#011627",
168
+ "peekViewTitleDescription.foreground": "#697098",
169
+ "peekViewTitleLabel.foreground": "#5f7e97",
170
+ "merge.currentHeaderBackground": "#5f7e97",
171
+ "merge.currentContentBackground": null,
172
+ "merge.incomingHeaderBackground": "#7e57c25a",
173
+ "merge.incomingContentBackground": null,
174
+ "merge.border": null,
175
+ "panel.background": "#011627",
176
+ "panel.border": "#5f7e97",
177
+ "panelTitle.activeBorder": "#5f7e97",
178
+ "panelTitle.activeForeground": "#ffffffcc",
179
+ "panelTitle.inactiveForeground": "#d6deeb80",
180
+ "statusBar.background": "#011627",
181
+ "statusBar.foreground": "#5f7e97",
182
+ "statusBar.border": "#262A39",
183
+ "statusBar.debuggingBackground": "#202431",
184
+ "statusBar.debuggingForeground": null,
185
+ "statusBar.debuggingBorder": "#1F2330",
186
+ "statusBar.noFolderForeground": null,
187
+ "statusBar.noFolderBackground": "#011627",
188
+ "statusBar.noFolderBorder": "#25293A",
189
+ "statusBarItem.activeBackground": "#202431",
190
+ "statusBarItem.hoverBackground": "#202431",
191
+ "statusBarItem.prominentBackground": "#202431",
192
+ "statusBarItem.prominentHoverBackground": "#202431",
193
+ "titleBar.activeBackground": "#011627",
194
+ "titleBar.activeForeground": "#eeefff",
195
+ "titleBar.inactiveBackground": "#010e1a",
196
+ "titleBar.inactiveForeground": null,
197
+ "notifications.background": "#01111d",
198
+ "notifications.border": "#262a39",
199
+ "notificationCenter.border": "#262a39",
200
+ "notificationToast.border": "#262a39",
201
+ "notifications.foreground": "#ffffffcc",
202
+ "notificationLink.foreground": "#80CBC4",
203
+ "extensionButton.prominentForeground": "#ffffffcc",
204
+ "extensionButton.prominentBackground": "#7e57c2cc",
205
+ "extensionButton.prominentHoverBackground": "#7e57c2",
206
+ "pickerGroup.foreground": "#d1aaff",
207
+ "pickerGroup.border": "#011627",
208
+ "terminal.ansiWhite": "#ffffff",
209
+ "terminal.ansiBlack": "#011627",
210
+ "terminal.ansiBlue": "#82AAFF",
211
+ "terminal.ansiCyan": "#21c7a8",
212
+ "terminal.ansiGreen": "#22da6e",
213
+ "terminal.ansiMagenta": "#C792EA",
214
+ "terminal.ansiRed": "#EF5350",
215
+ "terminal.ansiYellow": "#c5e478",
216
+ "terminal.ansiBrightWhite": "#ffffff",
217
+ "terminal.ansiBrightBlack": "#575656",
218
+ "terminal.ansiBrightBlue": "#82AAFF",
219
+ "terminal.ansiBrightCyan": "#7fdbca",
220
+ "terminal.ansiBrightGreen": "#22da6e",
221
+ "terminal.ansiBrightMagenta": "#C792EA",
222
+ "terminal.ansiBrightRed": "#EF5350",
223
+ "terminal.ansiBrightYellow": "#ffeb95",
224
+ "terminal.selectionBackground": "#1b90dd4d",
225
+ "terminalCursor.background": "#234d70",
226
+ "textCodeBlock.background": "#4f4f4f",
227
+ "debugToolBar.background": "#011627",
228
+ "welcomePage.buttonBackground": "#011627",
229
+ "welcomePage.buttonHoverBackground": "#011627",
230
+ "walkThrough.embeddedEditorBackground": "#011627",
231
+ "gitDecoration.modifiedResourceForeground": "#a2bffc",
232
+ "gitDecoration.deletedResourceForeground": "#EF535090",
233
+ "gitDecoration.untrackedResourceForeground": "#c5e478ff",
234
+ "gitDecoration.ignoredResourceForeground": "#395a75",
235
+ "gitDecoration.conflictingResourceForeground": "#ffeb95cc",
236
+ "source.elm": "#5f7e97",
237
+ "string.quoted.single.js": "#ffffff",
238
+ "meta.objectliteral.js": "#82AAFF",
239
+ },
240
+ "tokenColors": [
241
+ {
242
+ "name": "Changed",
243
+ "scope": [
244
+ "markup.changed",
245
+ "meta.diff.header.git",
246
+ "meta.diff.header.from-file",
247
+ "meta.diff.header.to-file",
248
+ ],
249
+ "settings": {
250
+ "foreground": "#a2bffc",
251
+ },
252
+ },
253
+ {
254
+ "name": "Deleted",
255
+ "scope": "markup.deleted.diff",
256
+ "settings": {
257
+ "foreground": "#EF535090",
258
+ },
259
+ },
260
+ {
261
+ "name": "Inserted",
262
+ "scope": "markup.inserted.diff",
263
+ "settings": {
264
+ "foreground": "#c5e478ff",
265
+ },
266
+ },
267
+ {
268
+ "name": "Global settings",
269
+ "settings": {
270
+ "background": "#011627",
271
+ "foreground": "#d6deeb",
272
+ },
273
+ },
274
+ {
275
+ "name": "Comment",
276
+ "scope": "comment",
277
+ "settings": {
278
+ "foreground": "#637777",
279
+ "fontStyle": "",
280
+ },
281
+ },
282
+ {
283
+ "name": "String",
284
+ "scope": "string",
285
+ "settings": {
286
+ "foreground": "#ecc48d",
287
+ },
288
+ },
289
+ {
290
+ "name": "String Quoted",
291
+ "scope": ["string.quoted", "variable.other.readwrite.js"],
292
+ "settings": {
293
+ "foreground": "#ecc48d",
294
+ },
295
+ },
296
+ {
297
+ "name": "Support Constant Math",
298
+ "scope": "support.constant.math",
299
+ "settings": {
300
+ "foreground": "#c5e478",
301
+ },
302
+ },
303
+ {
304
+ "name": "Number",
305
+ "scope": ["constant.numeric", "constant.character.numeric"],
306
+ "settings": {
307
+ "foreground": "#F78C6C",
308
+ "fontStyle": "",
309
+ },
310
+ },
311
+ {
312
+ "name": "Built-in constant",
313
+ "scope": ["constant.language", "punctuation.definition.constant", "variable.other.constant"],
314
+ "settings": {
315
+ "foreground": "#82AAFF",
316
+ },
317
+ },
318
+ {
319
+ "name": "User-defined constant",
320
+ "scope": ["constant.character", "constant.other"],
321
+ "settings": {
322
+ "foreground": "#82AAFF",
323
+ },
324
+ },
325
+ {
326
+ "name": "Constant Character Escape",
327
+ "scope": "constant.character.escape",
328
+ "settings": {
329
+ "foreground": "#F78C6C",
330
+ },
331
+ },
332
+ {
333
+ "name": "RegExp String",
334
+ "scope": ["string.regexp", "string.regexp keyword.other"],
335
+ "settings": {
336
+ "foreground": "#5ca7e4",
337
+ },
338
+ },
339
+ {
340
+ "name": "Comma in functions",
341
+ "scope": "meta.function punctuation.separator.comma",
342
+ "settings": {
343
+ "foreground": "#5f7e97",
344
+ },
345
+ },
346
+ {
347
+ "name": "Variable",
348
+ "scope": "variable",
349
+ "settings": {
350
+ "foreground": "#c5e478",
351
+ },
352
+ },
353
+ {
354
+ "name": "Keyword",
355
+ "scope": ["punctuation.accessor", "keyword"],
356
+ "settings": {
357
+ "foreground": "#c792ea",
358
+ "fontStyle": "",
359
+ },
360
+ },
361
+ {
362
+ "name": "Storage",
363
+ "scope": [
364
+ "storage",
365
+ "meta.var.expr",
366
+ "meta.class meta.method.declaration meta.var.expr storage.type.js",
367
+ "storage.type.property.js",
368
+ "storage.type.property.ts",
369
+ "storage.type.property.tsx",
370
+ ],
371
+ "settings": {
372
+ "foreground": "#c792ea",
373
+ "fontStyle": "",
374
+ },
375
+ },
376
+ {
377
+ "name": "Storage type",
378
+ "scope": "storage.type",
379
+ "settings": {
380
+ "foreground": "#c792ea",
381
+ },
382
+ },
383
+ {
384
+ "name": "Storage type",
385
+ "scope": "storage.type.function.arrow.js",
386
+ "settings": {
387
+ "fontStyle": "",
388
+ },
389
+ },
390
+ {
391
+ "name": "Class name",
392
+ "scope": ["entity.name.class", "meta.class entity.name.type.class"],
393
+ "settings": {
394
+ "foreground": "#ffcb8b",
395
+ },
396
+ },
397
+ {
398
+ "name": "Inherited class",
399
+ "scope": "entity.other.inherited-class",
400
+ "settings": {
401
+ "foreground": "#c5e478",
402
+ },
403
+ },
404
+ {
405
+ "name": "Function name",
406
+ "scope": "entity.name.function",
407
+ "settings": {
408
+ "foreground": "#c792ea",
409
+ "fontStyle": "",
410
+ },
411
+ },
412
+ {
413
+ "name": "Meta Tag",
414
+ "scope": ["punctuation.definition.tag", "meta.tag"],
415
+ "settings": {
416
+ "foreground": "#7fdbca",
417
+ },
418
+ },
419
+ {
420
+ "name": "HTML Tag names",
421
+ "scope": [
422
+ "entity.name.tag",
423
+ "meta.tag.other.html",
424
+ "meta.tag.other.js",
425
+ "meta.tag.other.tsx",
426
+ "entity.name.tag.tsx",
427
+ "entity.name.tag.js",
428
+ "entity.name.tag",
429
+ "meta.tag.js",
430
+ "meta.tag.tsx",
431
+ "meta.tag.html",
432
+ ],
433
+ "settings": {
434
+ "foreground": "#caece6",
435
+ "fontStyle": "",
436
+ },
437
+ },
438
+ {
439
+ "name": "Tag attribute",
440
+ "scope": "entity.other.attribute-name",
441
+ "settings": {
442
+ "fontStyle": "",
443
+ "foreground": "#c5e478",
444
+ },
445
+ },
446
+ {
447
+ "name": "Entity Name Tag Custom",
448
+ "scope": "entity.name.tag.custom",
449
+ "settings": {
450
+ "foreground": "#c5e478",
451
+ },
452
+ },
453
+ {
454
+ "name": "Library (function & constant)",
455
+ "scope": ["support.function", "support.constant"],
456
+ "settings": {
457
+ "foreground": "#82AAFF",
458
+ },
459
+ },
460
+ {
461
+ "name": "Support Constant Property Value meta",
462
+ "scope": "support.constant.meta.property-value",
463
+ "settings": {
464
+ "foreground": "#7fdbca",
465
+ },
466
+ },
467
+ {
468
+ "name": "Library class/type",
469
+ "scope": ["support.type", "support.class"],
470
+ "settings": {
471
+ "foreground": "#c5e478",
472
+ },
473
+ },
474
+ {
475
+ "name": "Support Variable DOM",
476
+ "scope": "support.variable.dom",
477
+ "settings": {
478
+ "foreground": "#c5e478",
479
+ },
480
+ },
481
+ {
482
+ "name": "Invalid",
483
+ "scope": "invalid",
484
+ "settings": {
485
+ "background": "#ff2c83",
486
+ "foreground": "#ffffff",
487
+ },
488
+ },
489
+ {
490
+ "name": "Invalid deprecated",
491
+ "scope": "invalid.deprecated",
492
+ "settings": {
493
+ "foreground": "#ffffff",
494
+ "background": "#d3423e",
495
+ },
496
+ },
497
+ {
498
+ "name": "Keyword Operator",
499
+ "scope": "keyword.operator",
500
+ "settings": {
501
+ "foreground": "#7fdbca",
502
+ "fontStyle": "",
503
+ },
504
+ },
505
+ {
506
+ "name": "Keyword Operator Relational",
507
+ "scope": "keyword.operator.relational",
508
+ "settings": {
509
+ "foreground": "#c792ea",
510
+ "fontStyle": "",
511
+ },
512
+ },
513
+ {
514
+ "name": "Keyword Operator Assignment",
515
+ "scope": "keyword.operator.assignment",
516
+ "settings": {
517
+ "foreground": "#c792ea",
518
+ },
519
+ },
520
+ {
521
+ "name": "Keyword Operator Arithmetic",
522
+ "scope": "keyword.operator.arithmetic",
523
+ "settings": {
524
+ "foreground": "#c792ea",
525
+ },
526
+ },
527
+ {
528
+ "name": "Keyword Operator Bitwise",
529
+ "scope": "keyword.operator.bitwise",
530
+ "settings": {
531
+ "foreground": "#c792ea",
532
+ },
533
+ },
534
+ {
535
+ "name": "Keyword Operator Increment",
536
+ "scope": "keyword.operator.increment",
537
+ "settings": {
538
+ "foreground": "#c792ea",
539
+ },
540
+ },
541
+ {
542
+ "name": "Keyword Operator Ternary",
543
+ "scope": "keyword.operator.ternary",
544
+ "settings": {
545
+ "foreground": "#c792ea",
546
+ },
547
+ },
548
+ {
549
+ "name": "Double-Slashed Comment",
550
+ "scope": "comment.line.double-slash",
551
+ "settings": {
552
+ "foreground": "#637777",
553
+ },
554
+ },
555
+ {
556
+ "name": "Object",
557
+ "scope": "object",
558
+ "settings": {
559
+ "foreground": "#cdebf7",
560
+ },
561
+ },
562
+ {
563
+ "name": "Null",
564
+ "scope": "constant.language.null",
565
+ "settings": {
566
+ "foreground": "#ff5874",
567
+ },
568
+ },
569
+ {
570
+ "name": "Meta Brace",
571
+ "scope": "meta.brace",
572
+ "settings": {
573
+ "foreground": "#d6deeb",
574
+ },
575
+ },
576
+ {
577
+ "name": "Meta Delimiter Period",
578
+ "scope": "meta.delimiter.period",
579
+ "settings": {
580
+ "foreground": "#c792ea",
581
+ "fontStyle": "",
582
+ },
583
+ },
584
+ {
585
+ "name": "Punctuation Definition String",
586
+ "scope": "punctuation.definition.string",
587
+ "settings": {
588
+ "foreground": "#d9f5dd",
589
+ },
590
+ },
591
+ {
592
+ "name": "Punctuation Definition String Markdown",
593
+ "scope": "punctuation.definition.string.begin.markdown",
594
+ "settings": {
595
+ "foreground": "#ff5874",
596
+ },
597
+ },
598
+ {
599
+ "name": "Boolean",
600
+ "scope": "constant.language.boolean",
601
+ "settings": {
602
+ "foreground": "#ff5874",
603
+ },
604
+ },
605
+ {
606
+ "name": "Object Comma",
607
+ "scope": "object.comma",
608
+ "settings": {
609
+ "foreground": "#ffffff",
610
+ },
611
+ },
612
+ {
613
+ "name": "Variable Parameter Function",
614
+ "scope": "variable.parameter.function",
615
+ "settings": {
616
+ "foreground": "#7fdbca",
617
+ "fontStyle": "",
618
+ },
619
+ },
620
+ {
621
+ "name": "Support Type Property Name & entity name tags",
622
+ "scope": [
623
+ "support.type.vendor.property-name",
624
+ "support.constant.vendor.property-value",
625
+ "support.type.property-name",
626
+ "meta.property-list entity.name.tag",
627
+ ],
628
+ "settings": {
629
+ "foreground": "#80CBC4",
630
+ "fontStyle": "",
631
+ },
632
+ },
633
+ {
634
+ "name": "Entity Name tag reference in stylesheets",
635
+ "scope": "meta.property-list entity.name.tag.reference",
636
+ "settings": {
637
+ "foreground": "#57eaf1",
638
+ },
639
+ },
640
+ {
641
+ "name": "Constant Other Color RGB Value Punctuation Definition Constant",
642
+ "scope": "constant.other.color.rgb-value punctuation.definition.constant",
643
+ "settings": {
644
+ "foreground": "#F78C6C",
645
+ },
646
+ },
647
+ {
648
+ "name": "Constant Other Color",
649
+ "scope": "constant.other.color",
650
+ "settings": {
651
+ "foreground": "#FFEB95",
652
+ },
653
+ },
654
+ {
655
+ "name": "Keyword Other Unit",
656
+ "scope": "keyword.other.unit",
657
+ "settings": {
658
+ "foreground": "#FFEB95",
659
+ },
660
+ },
661
+ {
662
+ "name": "Meta Selector",
663
+ "scope": "meta.selector",
664
+ "settings": {
665
+ "foreground": "#c792ea",
666
+ "fontStyle": "",
667
+ },
668
+ },
669
+ {
670
+ "name": "Entity Other Attribute Name Id",
671
+ "scope": "entity.other.attribute-name.id",
672
+ "settings": {
673
+ "foreground": "#FAD430",
674
+ },
675
+ },
676
+ {
677
+ "name": "Meta Property Name",
678
+ "scope": "meta.property-name",
679
+ "settings": {
680
+ "foreground": "#80CBC4",
681
+ },
682
+ },
683
+ {
684
+ "name": "Doctypes",
685
+ "scope": ["entity.name.tag.doctype", "meta.tag.sgml.doctype"],
686
+ "settings": {
687
+ "foreground": "#c792ea",
688
+ "fontStyle": "",
689
+ },
690
+ },
691
+ {
692
+ "name": "Punctuation Definition Parameters",
693
+ "scope": "punctuation.definition.parameters",
694
+ "settings": {
695
+ "foreground": "#d9f5dd",
696
+ },
697
+ },
698
+ {
699
+ "name": "Keyword Control Operator",
700
+ "scope": "keyword.control.operator",
701
+ "settings": {
702
+ "foreground": "#7fdbca",
703
+ },
704
+ },
705
+ {
706
+ "name": "Keyword Operator Logical",
707
+ "scope": "keyword.operator.logical",
708
+ "settings": {
709
+ "foreground": "#c792ea",
710
+ "fontStyle": "",
711
+ },
712
+ },
713
+ {
714
+ "name": "Variable Instances",
715
+ "scope": [
716
+ "variable.instance",
717
+ "variable.other.instance",
718
+ "variable.readwrite.instance",
719
+ "variable.other.readwrite.instance",
720
+ "variable.other.property",
721
+ ],
722
+ "settings": {
723
+ "foreground": "#7fdbca",
724
+ },
725
+ },
726
+ {
727
+ "name": "Variable Property Other object property",
728
+ "scope": ["variable.other.object.property"],
729
+ "settings": {
730
+ "foreground": "#faf39f",
731
+ "fontStyle": "",
732
+ },
733
+ },
734
+ {
735
+ "name": "Variable Property Other object",
736
+ "scope": ["variable.other.object.js"],
737
+ "settings": {
738
+ "fontStyle": "",
739
+ },
740
+ },
741
+ {
742
+ "name": "Entity Name Function",
743
+ "scope": ["entity.name.function"],
744
+ "settings": {
745
+ "foreground": "#82AAFF",
746
+ "fontStyle": "",
747
+ },
748
+ },
749
+ {
750
+ "name": "Keyword Operator Comparison, returns, imports, and Keyword Operator Ruby",
751
+ "scope": [
752
+ "keyword.control.conditional.js",
753
+ "keyword.operator.comparison",
754
+ "keyword.control.flow.js",
755
+ "keyword.control.flow.ts",
756
+ "keyword.control.flow.tsx",
757
+ "keyword.control.ruby",
758
+ "keyword.control.def.ruby",
759
+ "keyword.control.loop.js",
760
+ "keyword.control.loop.ts",
761
+ "keyword.control.import.js",
762
+ "keyword.control.import.ts",
763
+ "keyword.control.import.tsx",
764
+ "keyword.control.from.js",
765
+ "keyword.control.from.ts",
766
+ "keyword.control.from.tsx",
767
+ "keyword.control.conditional.js",
768
+ "keyword.control.conditional.ts",
769
+ "keyword.control.switch.js",
770
+ "keyword.control.switch.ts",
771
+ "keyword.operator.instanceof.js",
772
+ "keyword.operator.expression.instanceof.ts",
773
+ "keyword.operator.expression.instanceof.tsx",
774
+ ],
775
+ "settings": {
776
+ "foreground": "#c792ea",
777
+ "fontStyle": "",
778
+ },
779
+ },
780
+ {
781
+ "name": "Support Constant, `new` keyword, Special Method Keyword, `debugger`, other keywords",
782
+ "scope": [
783
+ "support.constant",
784
+ "keyword.other.special-method",
785
+ "keyword.other.new",
786
+ "keyword.other.debugger",
787
+ "keyword.control",
788
+ ],
789
+ "settings": {
790
+ "foreground": "#7fdbca",
791
+ },
792
+ },
793
+ {
794
+ "name": "Support Function",
795
+ "scope": "support.function",
796
+ "settings": {
797
+ "foreground": "#c5e478",
798
+ },
799
+ },
800
+ {
801
+ "name": "Invalid Broken",
802
+ "scope": "invalid.broken",
803
+ "settings": {
804
+ "foreground": "#020e14",
805
+ "background": "#F78C6C",
806
+ },
807
+ },
808
+ {
809
+ "name": "Invalid Unimplemented",
810
+ "scope": "invalid.unimplemented",
811
+ "settings": {
812
+ "background": "#8BD649",
813
+ "foreground": "#ffffff",
814
+ },
815
+ },
816
+ {
817
+ "name": "Invalid Illegal",
818
+ "scope": "invalid.illegal",
819
+ "settings": {
820
+ "foreground": "#ffffff",
821
+ "background": "#ec5f67",
822
+ },
823
+ },
824
+ {
825
+ "name": "Language Variable",
826
+ "scope": "variable.language",
827
+ "settings": {
828
+ "foreground": "#7fdbca",
829
+ },
830
+ },
831
+ {
832
+ "name": "Support Variable Property",
833
+ "scope": "support.variable.property",
834
+ "settings": {
835
+ "foreground": "#7fdbca",
836
+ },
837
+ },
838
+ {
839
+ "name": "Variable Function",
840
+ "scope": "variable.function",
841
+ "settings": {
842
+ "foreground": "#82AAFF",
843
+ },
844
+ },
845
+ {
846
+ "name": "Variable Interpolation",
847
+ "scope": "variable.interpolation",
848
+ "settings": {
849
+ "foreground": "#ec5f67",
850
+ },
851
+ },
852
+ {
853
+ "name": "Meta Function Call",
854
+ "scope": "meta.function-call",
855
+ "settings": {
856
+ "foreground": "#82AAFF",
857
+ },
858
+ },
859
+ {
860
+ "name": "Punctuation Section Embedded",
861
+ "scope": "punctuation.section.embedded",
862
+ "settings": {
863
+ "foreground": "#d3423e",
864
+ },
865
+ },
866
+ {
867
+ "name": "Punctuation Tweaks",
868
+ "scope": [
869
+ "punctuation.terminator.expression",
870
+ "punctuation.definition.arguments",
871
+ "punctuation.definition.array",
872
+ "punctuation.section.array",
873
+ "meta.array",
874
+ ],
875
+ "settings": {
876
+ "foreground": "#d6deeb",
877
+ },
878
+ },
879
+ {
880
+ "name": "More Punctuation Tweaks",
881
+ "scope": [
882
+ "punctuation.definition.list.begin",
883
+ "punctuation.definition.list.end",
884
+ "punctuation.separator.arguments",
885
+ "punctuation.definition.list",
886
+ ],
887
+ "settings": {
888
+ "foreground": "#d9f5dd",
889
+ },
890
+ },
891
+ {
892
+ "name": "Template Strings",
893
+ "scope": "string.template meta.template.expression",
894
+ "settings": {
895
+ "foreground": "#d3423e",
896
+ },
897
+ },
898
+ {
899
+ "name": "Backticks(``) in Template Strings",
900
+ "scope": "string.template punctuation.definition.string",
901
+ "settings": {
902
+ "foreground": "#d6deeb",
903
+ },
904
+ },
905
+ {
906
+ "name": "Italics",
907
+ "scope": "italic",
908
+ "settings": {
909
+ "foreground": "#c792ea",
910
+ "fontStyle": "italic",
911
+ },
912
+ },
913
+ {
914
+ "name": "Bold",
915
+ "scope": "bold",
916
+ "settings": {
917
+ "foreground": "#c5e478",
918
+ "fontStyle": "bold",
919
+ },
920
+ },
921
+ {
922
+ "name": "Quote",
923
+ "scope": "quote",
924
+ "settings": {
925
+ "foreground": "#697098",
926
+ "fontStyle": "",
927
+ },
928
+ },
929
+ {
930
+ "name": "Raw Code",
931
+ "scope": "raw",
932
+ "settings": {
933
+ "foreground": "#80CBC4",
934
+ },
935
+ },
936
+ {
937
+ "name": "CoffeeScript Variable Assignment",
938
+ "scope": "variable.assignment.coffee",
939
+ "settings": {
940
+ "foreground": "#31e1eb",
941
+ },
942
+ },
943
+ {
944
+ "name": "CoffeeScript Parameter Function",
945
+ "scope": "variable.parameter.function.coffee",
946
+ "settings": {
947
+ "foreground": "#d6deeb",
948
+ },
949
+ },
950
+ {
951
+ "name": "CoffeeScript Assignments",
952
+ "scope": "variable.assignment.coffee",
953
+ "settings": {
954
+ "foreground": "#7fdbca",
955
+ },
956
+ },
957
+ {
958
+ "name": "C# Readwrite Variables",
959
+ "scope": "variable.other.readwrite.cs",
960
+ "settings": {
961
+ "foreground": "#d6deeb",
962
+ },
963
+ },
964
+ {
965
+ "name": "C# Classes & Storage types",
966
+ "scope": ["entity.name.type.class.cs", "storage.type.cs"],
967
+ "settings": {
968
+ "foreground": "#ffcb8b",
969
+ },
970
+ },
971
+ {
972
+ "name": "C# Namespaces",
973
+ "scope": "entity.name.type.namespace.cs",
974
+ "settings": {
975
+ "foreground": "#B2CCD6",
976
+ },
977
+ },
978
+ {
979
+ "name": "C# Unquoted String Zone",
980
+ "scope": "string.unquoted.preprocessor.message.cs",
981
+ "settings": {
982
+ "foreground": "#d6deeb",
983
+ },
984
+ },
985
+ {
986
+ "name": "C# Region",
987
+ "scope": [
988
+ "punctuation.separator.hash.cs",
989
+ "keyword.preprocessor.region.cs",
990
+ "keyword.preprocessor.endregion.cs",
991
+ ],
992
+ "settings": {
993
+ "foreground": "#ffcb8b",
994
+ "fontStyle": "bold",
995
+ },
996
+ },
997
+ {
998
+ "name": "C# Other Variables",
999
+ "scope": "variable.other.object.cs",
1000
+ "settings": {
1001
+ "foreground": "#B2CCD6",
1002
+ },
1003
+ },
1004
+ {
1005
+ "name": "C# Enum",
1006
+ "scope": "entity.name.type.enum.cs",
1007
+ "settings": {
1008
+ "foreground": "#c5e478",
1009
+ },
1010
+ },
1011
+ {
1012
+ "name": "Dart String",
1013
+ "scope": ["string.interpolated.single.dart", "string.interpolated.double.dart"],
1014
+ "settings": {
1015
+ "foreground": "#FFCB8B",
1016
+ },
1017
+ },
1018
+ {
1019
+ "name": "Dart Class",
1020
+ "scope": "support.class.dart",
1021
+ "settings": {
1022
+ "foreground": "#FFCB8B",
1023
+ },
1024
+ },
1025
+ {
1026
+ "name": "Tag names in Stylesheets",
1027
+ "scope": [
1028
+ "entity.name.tag.css",
1029
+ "entity.name.tag.less",
1030
+ "entity.name.tag.custom.css",
1031
+ "support.constant.property-value.css",
1032
+ ],
1033
+ "settings": {
1034
+ "foreground": "#ff6363",
1035
+ "fontStyle": "",
1036
+ },
1037
+ },
1038
+ {
1039
+ "name": "Wildcard(*) selector in Stylesheets",
1040
+ "scope": [
1041
+ "entity.name.tag.wildcard.css",
1042
+ "entity.name.tag.wildcard.less",
1043
+ "entity.name.tag.wildcard.scss",
1044
+ "entity.name.tag.wildcard.sass",
1045
+ ],
1046
+ "settings": {
1047
+ "foreground": "#7fdbca",
1048
+ },
1049
+ },
1050
+ {
1051
+ "name": "CSS Keyword Other Unit",
1052
+ "scope": "keyword.other.unit.css",
1053
+ "settings": {
1054
+ "foreground": "#FFEB95",
1055
+ },
1056
+ },
1057
+ {
1058
+ "name": "Attribute Name for CSS",
1059
+ "scope": [
1060
+ "meta.attribute-selector.css entity.other.attribute-name.attribute",
1061
+ "variable.other.readwrite.js",
1062
+ ],
1063
+ "settings": {
1064
+ "foreground": "#F78C6C",
1065
+ },
1066
+ },
1067
+ {
1068
+ "name": "Elixir Classes",
1069
+ "scope": [
1070
+ "source.elixir support.type.elixir",
1071
+ "source.elixir meta.module.elixir entity.name.class.elixir",
1072
+ ],
1073
+ "settings": {
1074
+ "foreground": "#82AAFF",
1075
+ },
1076
+ },
1077
+ {
1078
+ "name": "Elixir Functions",
1079
+ "scope": "source.elixir entity.name.function",
1080
+ "settings": {
1081
+ "foreground": "#c5e478",
1082
+ },
1083
+ },
1084
+ {
1085
+ "name": "Elixir Constants",
1086
+ "scope": [
1087
+ "source.elixir constant.other.symbol.elixir",
1088
+ "source.elixir constant.other.keywords.elixir",
1089
+ ],
1090
+ "settings": {
1091
+ "foreground": "#82AAFF",
1092
+ },
1093
+ },
1094
+ {
1095
+ "name": "Elixir String Punctuations",
1096
+ "scope": "source.elixir punctuation.definition.string",
1097
+ "settings": {
1098
+ "foreground": "#c5e478",
1099
+ },
1100
+ },
1101
+ {
1102
+ "name": "Elixir",
1103
+ "scope": [
1104
+ "source.elixir variable.other.readwrite.module.elixir",
1105
+ "source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir",
1106
+ ],
1107
+ "settings": {
1108
+ "foreground": "#c5e478",
1109
+ },
1110
+ },
1111
+ {
1112
+ "name": "Elixir Binary Punctuations",
1113
+ "scope": "source.elixir .punctuation.binary.elixir",
1114
+ "settings": {
1115
+ "foreground": "#c792ea",
1116
+ "fontStyle": "",
1117
+ },
1118
+ },
1119
+ {
1120
+ "name": "Closure Constant Keyword",
1121
+ "scope": "constant.keyword.clojure",
1122
+ "settings": {
1123
+ "foreground": "#7fdbca",
1124
+ },
1125
+ },
1126
+ {
1127
+ "name": "Go Function Calls",
1128
+ "scope": "source.go meta.function-call.go",
1129
+ "settings": {
1130
+ "foreground": "#DDDDDD",
1131
+ },
1132
+ },
1133
+ {
1134
+ "name": "Go Keywords",
1135
+ "scope": [
1136
+ "source.go keyword.package.go",
1137
+ "source.go keyword.import.go",
1138
+ "source.go keyword.function.go",
1139
+ "source.go keyword.type.go",
1140
+ "source.go keyword.struct.go",
1141
+ "source.go keyword.interface.go",
1142
+ "source.go keyword.const.go",
1143
+ "source.go keyword.var.go",
1144
+ "source.go keyword.map.go",
1145
+ "source.go keyword.channel.go",
1146
+ "source.go keyword.control.go",
1147
+ ],
1148
+ "settings": {
1149
+ "foreground": "#c792ea",
1150
+ },
1151
+ },
1152
+ {
1153
+ "name": "Go Constants e.g. nil, string format (%s, %d, etc.)",
1154
+ "scope": ["source.go constant.language.go", "source.go constant.other.placeholder.go"],
1155
+ "settings": {
1156
+ "foreground": "#ff5874",
1157
+ },
1158
+ },
1159
+ {
1160
+ "name": "C++ Functions",
1161
+ "scope": ["entity.name.function.preprocessor.cpp", "entity.scope.name.cpp"],
1162
+ "settings": {
1163
+ "foreground": "#7fdbcaff",
1164
+ },
1165
+ },
1166
+ {
1167
+ "name": "C++ Meta Namespace",
1168
+ "scope": ["meta.namespace-block.cpp"],
1169
+ "settings": {
1170
+ "foreground": "#e0dec6",
1171
+ },
1172
+ },
1173
+ {
1174
+ "name": "C++ Language Primitive Storage",
1175
+ "scope": ["storage.type.language.primitive.cpp"],
1176
+ "settings": {
1177
+ "foreground": "#ff5874",
1178
+ },
1179
+ },
1180
+ {
1181
+ "name": "C++ Preprocessor Macro",
1182
+ "scope": ["meta.preprocessor.macro.cpp"],
1183
+ "settings": {
1184
+ "foreground": "#d6deeb",
1185
+ },
1186
+ },
1187
+ {
1188
+ "name": "C++ Variable Parameter",
1189
+ "scope": ["variable.parameter"],
1190
+ "settings": {
1191
+ "foreground": "#ffcb8b",
1192
+ },
1193
+ },
1194
+ {
1195
+ "name": "Powershell Variables",
1196
+ "scope": ["variable.other.readwrite.powershell"],
1197
+ "settings": {
1198
+ "foreground": "#82AAFF",
1199
+ },
1200
+ },
1201
+ {
1202
+ "name": "Powershell Function",
1203
+ "scope": ["support.function.powershell"],
1204
+ "settings": {
1205
+ "foreground": "#7fdbcaff",
1206
+ },
1207
+ },
1208
+ {
1209
+ "name": "ID Attribute Name in HTML",
1210
+ "scope": "entity.other.attribute-name.id.html",
1211
+ "settings": {
1212
+ "foreground": "#c5e478",
1213
+ },
1214
+ },
1215
+ {
1216
+ "name": "HTML Punctuation Definition Tag",
1217
+ "scope": "punctuation.definition.tag.html",
1218
+ "settings": {
1219
+ "foreground": "#6ae9f0",
1220
+ },
1221
+ },
1222
+ {
1223
+ "name": "HTML Doctype",
1224
+ "scope": "meta.tag.sgml.doctype.html",
1225
+ "settings": {
1226
+ "foreground": "#c792ea",
1227
+ "fontStyle": "",
1228
+ },
1229
+ },
1230
+ {
1231
+ "name": "JavaScript Classes",
1232
+ "scope": "meta.class entity.name.type.class.js",
1233
+ "settings": {
1234
+ "foreground": "#ffcb8b",
1235
+ },
1236
+ },
1237
+ {
1238
+ "name": "JavaScript Method Declaration e.g. `constructor`",
1239
+ "scope": "meta.method.declaration storage.type.js",
1240
+ "settings": {
1241
+ "foreground": "#82AAFF",
1242
+ },
1243
+ },
1244
+ {
1245
+ "name": "JavaScript Terminator",
1246
+ "scope": "terminator.js",
1247
+ "settings": {
1248
+ "foreground": "#d6deeb",
1249
+ },
1250
+ },
1251
+ {
1252
+ "name": "JavaScript Meta Punctuation Definition",
1253
+ "scope": "meta.js punctuation.definition.js",
1254
+ "settings": {
1255
+ "foreground": "#d6deeb",
1256
+ },
1257
+ },
1258
+ {
1259
+ "name": "Entity Names in Code Documentations",
1260
+ "scope": ["entity.name.type.instance.jsdoc", "entity.name.type.instance.phpdoc"],
1261
+ "settings": {
1262
+ "foreground": "#5f7e97",
1263
+ },
1264
+ },
1265
+ {
1266
+ "name": "Other Variables in Code Documentations",
1267
+ "scope": ["variable.other.jsdoc", "variable.other.phpdoc"],
1268
+ "settings": {
1269
+ "foreground": "#78ccf0",
1270
+ },
1271
+ },
1272
+ {
1273
+ "name": "JavaScript module imports and exports",
1274
+ "scope": [
1275
+ "variable.other.meta.import.js",
1276
+ "meta.import.js variable.other",
1277
+ "variable.other.meta.export.js",
1278
+ "meta.export.js variable.other",
1279
+ ],
1280
+ "settings": {
1281
+ "foreground": "#d6deeb",
1282
+ },
1283
+ },
1284
+ {
1285
+ "name": "JavaScript Variable Parameter Function",
1286
+ "scope": "variable.parameter.function.js",
1287
+ "settings": {
1288
+ "foreground": "#7986E7",
1289
+ },
1290
+ },
1291
+ {
1292
+ "name": "JavaScript[React] Variable Other Object",
1293
+ "scope": [
1294
+ "variable.other.object.js",
1295
+ "variable.other.object.jsx",
1296
+ "variable.object.property.js",
1297
+ "variable.object.property.jsx",
1298
+ ],
1299
+ "settings": {
1300
+ "foreground": "#d6deeb",
1301
+ },
1302
+ },
1303
+ {
1304
+ "name": "JavaScript Variables",
1305
+ "scope": ["variable.js", "variable.other.js"],
1306
+ "settings": {
1307
+ "foreground": "#d6deeb",
1308
+ },
1309
+ },
1310
+ {
1311
+ "name": "JavaScript Entity Name Type",
1312
+ "scope": ["entity.name.type.js", "entity.name.type.module.js"],
1313
+ "settings": {
1314
+ "foreground": "#ffcb8b",
1315
+ "fontStyle": "",
1316
+ },
1317
+ },
1318
+ {
1319
+ "name": "JavaScript Support Classes",
1320
+ "scope": "support.class.js",
1321
+ "settings": {
1322
+ "foreground": "#d6deeb",
1323
+ },
1324
+ },
1325
+ {
1326
+ "name": "JSON Property Names",
1327
+ "scope": "support.type.property-name.json",
1328
+ "settings": {
1329
+ "foreground": "#7fdbca",
1330
+ },
1331
+ },
1332
+ {
1333
+ "name": "JSON Support Constants",
1334
+ "scope": "support.constant.json",
1335
+ "settings": {
1336
+ "foreground": "#c5e478",
1337
+ },
1338
+ },
1339
+ {
1340
+ "name": "JSON Property values (string)",
1341
+ "scope": "meta.structure.dictionary.value.json string.quoted.double",
1342
+ "settings": {
1343
+ "foreground": "#c789d6",
1344
+ },
1345
+ },
1346
+ {
1347
+ "name": "Strings in JSON values",
1348
+ "scope": "string.quoted.double.json punctuation.definition.string.json",
1349
+ "settings": {
1350
+ "foreground": "#80CBC4",
1351
+ },
1352
+ },
1353
+ {
1354
+ "name": "Specific JSON Property values like null",
1355
+ "scope": "meta.structure.dictionary.json meta.structure.dictionary.value constant.language",
1356
+ "settings": {
1357
+ "foreground": "#ff5874",
1358
+ },
1359
+ },
1360
+ {
1361
+ "name": "JavaScript Other Variable",
1362
+ "scope": "variable.other.object.js",
1363
+ "settings": {
1364
+ "foreground": "#7fdbca",
1365
+ },
1366
+ },
1367
+ {
1368
+ "name": "Ruby Variables",
1369
+ "scope": ["variable.other.ruby"],
1370
+ "settings": {
1371
+ "foreground": "#d6deeb",
1372
+ },
1373
+ },
1374
+ {
1375
+ "name": "Ruby Class",
1376
+ "scope": ["entity.name.type.class.ruby"],
1377
+ "settings": {
1378
+ "foreground": "#ecc48d",
1379
+ },
1380
+ },
1381
+ {
1382
+ "name": "Ruby Hashkeys",
1383
+ "scope": "constant.language.symbol.hashkey.ruby",
1384
+ "settings": {
1385
+ "foreground": "#7fdbca",
1386
+ },
1387
+ },
1388
+ {
1389
+ "name": "LESS Tag names",
1390
+ "scope": "entity.name.tag.less",
1391
+ "settings": {
1392
+ "foreground": "#7fdbca",
1393
+ },
1394
+ },
1395
+ {
1396
+ "name": "LESS Keyword Other Unit",
1397
+ "scope": "keyword.other.unit.css",
1398
+ "settings": {
1399
+ "foreground": "#FFEB95",
1400
+ },
1401
+ },
1402
+ {
1403
+ "name": "Attribute Name for LESS",
1404
+ "scope": "meta.attribute-selector.less entity.other.attribute-name.attribute",
1405
+ "settings": {
1406
+ "foreground": "#F78C6C",
1407
+ },
1408
+ },
1409
+ {
1410
+ "name": "Markdown Headings",
1411
+ "scope": [
1412
+ "markup.heading.markdown",
1413
+ "markup.heading.setext.1.markdown",
1414
+ "markup.heading.setext.2.markdown",
1415
+ ],
1416
+ "settings": {
1417
+ "foreground": "#82b1ff",
1418
+ },
1419
+ },
1420
+ {
1421
+ "name": "Markdown Italics",
1422
+ "scope": "markup.italic.markdown",
1423
+ "settings": {
1424
+ "foreground": "#c792ea",
1425
+ "fontStyle": "italic",
1426
+ },
1427
+ },
1428
+ {
1429
+ "name": "Markdown Bold",
1430
+ "scope": "markup.bold.markdown",
1431
+ "settings": {
1432
+ "foreground": "#c5e478",
1433
+ "fontStyle": "bold",
1434
+ },
1435
+ },
1436
+ {
1437
+ "name": "Markdown Quote + others",
1438
+ "scope": "markup.quote.markdown",
1439
+ "settings": {
1440
+ "foreground": "#697098",
1441
+ "fontStyle": "",
1442
+ },
1443
+ },
1444
+ {
1445
+ "name": "Markdown Raw Code + others",
1446
+ "scope": "markup.inline.raw.markdown",
1447
+ "settings": {
1448
+ "foreground": "#80CBC4",
1449
+ },
1450
+ },
1451
+ {
1452
+ "name": "Markdown Links",
1453
+ "scope": ["markup.underline.link.markdown", "markup.underline.link.image.markdown"],
1454
+ "settings": {
1455
+ "foreground": "#ff869a",
1456
+ },
1457
+ },
1458
+ {
1459
+ "name": "Markdown Link Title and Description",
1460
+ "scope": ["string.other.link.title.markdown", "string.other.link.description.markdown"],
1461
+ "settings": {
1462
+ "foreground": "#d6deeb",
1463
+ },
1464
+ },
1465
+ {
1466
+ "name": "Markdown Punctuation",
1467
+ "scope": [
1468
+ "punctuation.definition.string.markdown",
1469
+ "punctuation.definition.string.begin.markdown",
1470
+ "punctuation.definition.string.end.markdown",
1471
+ "meta.link.inline.markdown punctuation.definition.string",
1472
+ ],
1473
+ "settings": {
1474
+ "foreground": "#82b1ff",
1475
+ },
1476
+ },
1477
+ {
1478
+ "name": "Markdown MetaData Punctuation",
1479
+ "scope": ["punctuation.definition.metadata.markdown"],
1480
+ "settings": {
1481
+ "foreground": "#7fdbca",
1482
+ },
1483
+ },
1484
+ {
1485
+ "name": "Markdown List Punctuation",
1486
+ "scope": ["beginning.punctuation.definition.list.markdown"],
1487
+ "settings": {
1488
+ "foreground": "#82b1ff",
1489
+ },
1490
+ },
1491
+ {
1492
+ "name": "Markdown Inline Raw String",
1493
+ "scope": "markup.inline.raw.string.markdown",
1494
+ "settings": {
1495
+ "foreground": "#c5e478",
1496
+ },
1497
+ },
1498
+ {
1499
+ "name": "PHP Variables",
1500
+ "scope": "variable.other.php",
1501
+ "settings": {
1502
+ "foreground": "#bec5d4",
1503
+ },
1504
+ },
1505
+ {
1506
+ "name": "Support Classes in PHP",
1507
+ "scope": "support.class.php",
1508
+ "settings": {
1509
+ "foreground": "#ffcb8b",
1510
+ },
1511
+ },
1512
+ {
1513
+ "name": "Punctuations in PHP function calls",
1514
+ "scope": "meta.function-call.php punctuation",
1515
+ "settings": {
1516
+ "foreground": "#d6deeb",
1517
+ },
1518
+ },
1519
+ {
1520
+ "name": "PHP Global Variables",
1521
+ "scope": "variable.other.global.php",
1522
+ "settings": {
1523
+ "foreground": "#c5e478",
1524
+ },
1525
+ },
1526
+ {
1527
+ "name": "Declaration Punctuation in PHP Global Variables",
1528
+ "scope": "variable.other.global.php punctuation.definition.variable",
1529
+ "settings": {
1530
+ "foreground": "#c5e478",
1531
+ },
1532
+ },
1533
+ {
1534
+ "name": "Language Constants in Python",
1535
+ "scope": "constant.language.python",
1536
+ "settings": {
1537
+ "foreground": "#ff5874",
1538
+ },
1539
+ },
1540
+ {
1541
+ "name": "Python Function Parameter and Arguments",
1542
+ "scope": ["variable.parameter.function.python", "meta.function-call.arguments.python"],
1543
+ "settings": {
1544
+ "foreground": "#82AAFF",
1545
+ },
1546
+ },
1547
+ {
1548
+ "name": "Python Function Call",
1549
+ "scope": ["meta.function-call.python", "meta.function-call.generic.python"],
1550
+ "settings": {
1551
+ "foreground": "#B2CCD6",
1552
+ },
1553
+ },
1554
+ {
1555
+ "name": "Punctuations in Python",
1556
+ "scope": "punctuation.python",
1557
+ "settings": {
1558
+ "foreground": "#d6deeb",
1559
+ },
1560
+ },
1561
+ {
1562
+ "name": "Decorator Functions in Python",
1563
+ "scope": "entity.name.function.decorator.python",
1564
+ "settings": {
1565
+ "foreground": "#c5e478",
1566
+ },
1567
+ },
1568
+ {
1569
+ "name": "Python Language Variable",
1570
+ "scope": "source.python variable.language.special",
1571
+ "settings": {
1572
+ "foreground": "#8EACE3",
1573
+ },
1574
+ },
1575
+ {
1576
+ "name": "Python import control keyword",
1577
+ "scope": "keyword.control",
1578
+ "settings": {
1579
+ "foreground": "#c792ea",
1580
+ },
1581
+ },
1582
+ {
1583
+ "name": "SCSS Variable",
1584
+ "scope": [
1585
+ "variable.scss",
1586
+ "variable.sass",
1587
+ "variable.parameter.url.scss",
1588
+ "variable.parameter.url.sass",
1589
+ ],
1590
+ "settings": {
1591
+ "foreground": "#c5e478",
1592
+ },
1593
+ },
1594
+ {
1595
+ "name": "Variables in SASS At-Rules",
1596
+ "scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
1597
+ "settings": {
1598
+ "foreground": "#82AAFF",
1599
+ },
1600
+ },
1601
+ {
1602
+ "name": "Variables in SASS At-Rules",
1603
+ "scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
1604
+ "settings": {
1605
+ "foreground": "#bec5d4",
1606
+ },
1607
+ },
1608
+ {
1609
+ "name": "Attribute Name for SASS",
1610
+ "scope": [
1611
+ "meta.attribute-selector.scss entity.other.attribute-name.attribute",
1612
+ "meta.attribute-selector.sass entity.other.attribute-name.attribute",
1613
+ ],
1614
+ "settings": {
1615
+ "foreground": "#F78C6C",
1616
+ },
1617
+ },
1618
+ {
1619
+ "name": "Tag names in SASS",
1620
+ "scope": ["entity.name.tag.scss", "entity.name.tag.sass"],
1621
+ "settings": {
1622
+ "foreground": "#7fdbca",
1623
+ },
1624
+ },
1625
+ {
1626
+ "name": "SASS Keyword Other Unit",
1627
+ "scope": ["keyword.other.unit.scss", "keyword.other.unit.sass"],
1628
+ "settings": {
1629
+ "foreground": "#FFEB95",
1630
+ },
1631
+ },
1632
+ {
1633
+ "name": "TypeScript[React] Variables and Object Properties",
1634
+ "scope": [
1635
+ "variable.other.readwrite.alias.ts",
1636
+ "variable.other.readwrite.alias.tsx",
1637
+ "variable.other.readwrite.ts",
1638
+ "variable.other.readwrite.tsx",
1639
+ "variable.other.object.ts",
1640
+ "variable.other.object.tsx",
1641
+ "variable.object.property.ts",
1642
+ "variable.object.property.tsx",
1643
+ "variable.other.ts",
1644
+ "variable.other.tsx",
1645
+ "variable.tsx",
1646
+ "variable.ts",
1647
+ ],
1648
+ "settings": {
1649
+ "foreground": "#d6deeb",
1650
+ },
1651
+ },
1652
+ {
1653
+ "name": "TypeScript[React] Entity Name Types",
1654
+ "scope": ["entity.name.type.ts", "entity.name.type.tsx"],
1655
+ "settings": {
1656
+ "foreground": "#ffcb8b",
1657
+ },
1658
+ },
1659
+ {
1660
+ "name": "TypeScript[React] Node Classes",
1661
+ "scope": ["support.class.node.ts", "support.class.node.tsx"],
1662
+ "settings": {
1663
+ "foreground": "#82AAFF",
1664
+ },
1665
+ },
1666
+ {
1667
+ "name": "TypeScript[React] Entity Name Types as Parameters",
1668
+ "scope": [
1669
+ "meta.type.parameters.ts entity.name.type",
1670
+ "meta.type.parameters.tsx entity.name.type",
1671
+ ],
1672
+ "settings": {
1673
+ "foreground": "#5f7e97",
1674
+ },
1675
+ },
1676
+ {
1677
+ "name": "TypeScript[React] Import/Export Punctuations",
1678
+ "scope": [
1679
+ "meta.import.ts punctuation.definition.block",
1680
+ "meta.import.tsx punctuation.definition.block",
1681
+ "meta.export.ts punctuation.definition.block",
1682
+ "meta.export.tsx punctuation.definition.block",
1683
+ ],
1684
+ "settings": {
1685
+ "foreground": "#d6deeb",
1686
+ },
1687
+ },
1688
+ {
1689
+ "name": "TypeScript[React] Punctuation Decorators",
1690
+ "scope": [
1691
+ "meta.decorator punctuation.decorator.ts",
1692
+ "meta.decorator punctuation.decorator.tsx",
1693
+ ],
1694
+ "settings": {
1695
+ "foreground": "#82AAFF",
1696
+ },
1697
+ },
1698
+ {
1699
+ "name": "TypeScript[React] Punctuation Decorators",
1700
+ "scope": "meta.tag.js meta.jsx.children.tsx",
1701
+ "settings": {
1702
+ "foreground": "#82AAFF",
1703
+ },
1704
+ },
1705
+ {
1706
+ "name": "YAML Entity Name Tags",
1707
+ "scope": "entity.name.tag.yaml",
1708
+ "settings": {
1709
+ "foreground": "#7fdbca",
1710
+ },
1711
+ },
1712
+ {
1713
+ "name": "JavaScript Variable Other ReadWrite",
1714
+ "scope": ["variable.other.readwrite.js", "variable.parameter"],
1715
+ "settings": {
1716
+ "foreground": "#d7dbe0",
1717
+ },
1718
+ },
1719
+ {
1720
+ "name": "Support Class Component",
1721
+ "scope": ["support.class.component.js", "support.class.component.tsx"],
1722
+ "settings": {
1723
+ "foreground": "#f78c6c",
1724
+ "fontStyle": "",
1725
+ },
1726
+ },
1727
+ {
1728
+ "name": "Text nested in React tags",
1729
+ "scope": ["meta.jsx.children", "meta.jsx.children.js", "meta.jsx.children.tsx"],
1730
+ "settings": {
1731
+ "foreground": "#d6deeb",
1732
+ },
1733
+ },
1734
+ {
1735
+ "name": "TypeScript Classes",
1736
+ "scope": "meta.class entity.name.type.class.tsx",
1737
+ "settings": {
1738
+ "foreground": "#ffcb8b",
1739
+ },
1740
+ },
1741
+ {
1742
+ "name": "TypeScript Entity Name Type",
1743
+ "scope": ["entity.name.type.tsx", "entity.name.type.module.tsx"],
1744
+ "settings": {
1745
+ "foreground": "#ffcb8b",
1746
+ },
1747
+ },
1748
+ {
1749
+ "name": "TypeScript Class Variable Keyword",
1750
+ "scope": [
1751
+ "meta.class.ts meta.var.expr.ts storage.type.ts",
1752
+ "meta.class.tsx meta.var.expr.tsx storage.type.tsx",
1753
+ ],
1754
+ "settings": {
1755
+ "foreground": "#C792EA",
1756
+ },
1757
+ },
1758
+ {
1759
+ "name": "TypeScript Method Declaration e.g. `constructor`",
1760
+ "scope": [
1761
+ "meta.method.declaration storage.type.ts",
1762
+ "meta.method.declaration storage.type.tsx",
1763
+ ],
1764
+ "settings": {
1765
+ "foreground": "#82AAFF",
1766
+ },
1767
+ },
1768
+ {
1769
+ "name": "normalize font style of certain components",
1770
+ "scope": [
1771
+ "meta.property-list.css meta.property-value.css variable.other.less",
1772
+ "meta.property-list.scss variable.scss",
1773
+ "meta.property-list.sass variable.sass",
1774
+ "meta.brace",
1775
+ "keyword.operator.operator",
1776
+ "keyword.operator.or.regexp",
1777
+ "keyword.operator.expression.in",
1778
+ "keyword.operator.relational",
1779
+ "keyword.operator.assignment",
1780
+ "keyword.operator.comparison",
1781
+ "keyword.operator.type",
1782
+ "keyword.operator",
1783
+ "keyword",
1784
+ "punctuation.definition.string",
1785
+ "punctuation",
1786
+ "variable.other.readwrite.js",
1787
+ "storage.type",
1788
+ "source.css",
1789
+ "string.quoted",
1790
+ ],
1791
+ "settings": {
1792
+ "fontStyle": "",
1793
+ },
1794
+ },
1795
+ ],
1796
+ }