@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,1695 @@
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 Light",
28
+ "type": "light",
29
+ "semanticHighlighting": false,
30
+ "colors": {
31
+ "foreground": "#403f53",
32
+ "focusBorder": "#93A1A1",
33
+ "errorForeground": "#403f53",
34
+ "selection.background": "#7a8181ad",
35
+ "descriptionForeground": "#403f53",
36
+ "widget.shadow": "#d9d9d9",
37
+ "titleBar.activeBackground": "#F0F0F0",
38
+ "notifications.background": "#F0F0F0",
39
+ "notifications.foreground": "#403f53",
40
+ "notificationLink.foreground": "#994cc3",
41
+ "notifications.border": "#CCCCCC",
42
+ "notificationCenter.border": "#CCCCCC",
43
+ "notificationToast.border": "#CCCCCC",
44
+ "notificationCenterHeader.foreground": "#403f53",
45
+ "notificationCenterHeader.background": "#F0F0F0",
46
+ "button.background": "#2AA298",
47
+ "button.foreground": "#F0F0F0",
48
+ "dropdown.background": "#F0F0F0",
49
+ "dropdown.foreground": "#403f53",
50
+ "dropdown.border": "#d9d9d9",
51
+ "input.background": "#F0F0F0",
52
+ "input.foreground": "#403f53",
53
+ "input.border": "#d9d9d9",
54
+ "input.placeholderForeground": "#93A1A1",
55
+ "inputOption.activeBorder": "#2AA298",
56
+ "inputValidation.infoBorder": "#D0D0D0",
57
+ "inputValidation.infoBackground": "#F0F0F0",
58
+ "inputValidation.warningBackground": "#daaa01",
59
+ "inputValidation.warningBorder": "#E0AF02",
60
+ "inputValidation.errorBackground": "#f76e6e",
61
+ "inputValidation.errorBorder": "#de3d3b",
62
+ "badge.background": "#2AA298",
63
+ "badge.foreground": "#F0F0F0",
64
+ "progressBar.background": "#2AA298",
65
+ "list.activeSelectionBackground": "#d3e8f8",
66
+ "list.activeSelectionForeground": "#403f53",
67
+ "list.inactiveSelectionBackground": "#E0E7EA",
68
+ "list.inactiveSelectionForeground": "#403f53",
69
+ "list.focusBackground": "#d3e8f8",
70
+ "list.hoverBackground": "#d3e8f8",
71
+ "list.focusForeground": "#403f53",
72
+ "list.hoverForeground": "#403f53",
73
+ "list.highlightForeground": "#403f53",
74
+ "list.errorForeground": "#E64D49",
75
+ "list.warningForeground": "#daaa01",
76
+ "activityBar.background": "#F0F0F0",
77
+ "activityBar.foreground": "#403f53",
78
+ "activityBar.dropBackground": "#D0D0D0",
79
+ "activityBarBadge.background": "#403f53",
80
+ "activityBarBadge.foreground": "#F0F0F0",
81
+ "activityBar.border": "#F0F0F0",
82
+ "sideBar.background": "#F0F0F0",
83
+ "sideBar.foreground": "#403f53",
84
+ "sideBarTitle.foreground": "#403f53",
85
+ "sideBar.border": "#F0F0F0",
86
+ "scrollbar.shadow": "#CCCCCC",
87
+ "tab.border": "#F0F0F0",
88
+ "tab.activeBackground": "#F6F6F6",
89
+ "tab.activeForeground": "#403f53",
90
+ "tab.inactiveForeground": "#403f53",
91
+ "tab.inactiveBackground": "#F0F0F0",
92
+ "editorGroup.border": "#F0F0F0",
93
+ "editorGroup.background": "#F6F6F6",
94
+ "editorGroupHeader.tabsBackground": "#F0F0F0",
95
+ "editorGroupHeader.tabsBorder": "#F0F0F0",
96
+ "editorGroupHeader.noTabsBackground": "#F0F0F0",
97
+ "tab.activeModifiedBorder": "#2AA298",
98
+ "tab.inactiveModifiedBorder": "#93A1A1",
99
+ "tab.unfocusedActiveModifiedBorder": "#93A1A1",
100
+ "tab.unfocusedInactiveModifiedBorder": "#93A1A1",
101
+ "editor.background": "#FBFBFB",
102
+ "editor.foreground": "#403f53",
103
+ "editorCursor.foreground": "#90A7B2",
104
+ "editorLineNumber.foreground": "#90A7B2",
105
+ "editorLineNumber.activeForeground": "#403f53",
106
+ "editor.selectionBackground": "#E0E0E0",
107
+ "editor.selectionHighlightBackground": "#339cec33",
108
+ "editor.wordHighlightBackground": "#339cec33",
109
+ "editor.wordHighlightStrongBackground": "#007dd659",
110
+ "editor.findMatchBackground": "#93A1A16c",
111
+ "editor.findMatchHighlightBackground": "#93a1a16c",
112
+ "editor.findRangeHighlightBackground": "#7497a633",
113
+ "editor.hoverHighlightBackground": "#339cec33",
114
+ "editor.lineHighlightBackground": "#F0F0F0",
115
+ "editor.rangeHighlightBackground": "#7497a633",
116
+ "editorWhitespace.foreground": "#d9d9d9",
117
+ "editorIndentGuide.background": "#d9d9d9",
118
+ "editorCodeLens.foreground": "#403f53",
119
+ "editorBracketMatch.background": "#d3e8f8",
120
+ "editorBracketMatch.border": "#2AA298",
121
+ "editorError.foreground": "#E64D49",
122
+ "editorError.border": "#FBFBFB",
123
+ "editorWarning.foreground": "#daaa01",
124
+ "editorWarning.border": "#daaa01",
125
+ "editorGutter.addedBackground": "#49d0c5",
126
+ "editorGutter.modifiedBackground": "#6fbef6",
127
+ "editorGutter.deletedBackground": "#f76e6e",
128
+ "editorRuler.foreground": "#d9d9d9",
129
+ "editorOverviewRuler.errorForeground": "#E64D49",
130
+ "editorOverviewRuler.warningForeground": "#daaa01",
131
+ "editorWidget.background": "#F0F0F0",
132
+ "editorWidget.border": "#d9d9d9",
133
+ "editorSuggestWidget.background": "#F0F0F0",
134
+ "editorSuggestWidget.foreground": "#403f53",
135
+ "editorSuggestWidget.highlightForeground": "#403f53",
136
+ "editorSuggestWidget.selectedBackground": "#d3e8f8",
137
+ "editorSuggestWidget.border": "#d9d9d9",
138
+ "editorHoverWidget.background": "#F0F0F0",
139
+ "editorHoverWidget.border": "#d9d9d9",
140
+ "debugExceptionWidget.background": "#F0F0F0",
141
+ "debugExceptionWidget.border": "#d9d9d9",
142
+ "editorMarkerNavigation.background": "#D0D0D0",
143
+ "editorMarkerNavigationError.background": "#f76e6e",
144
+ "editorMarkerNavigationWarning.background": "#daaa01",
145
+ "debugToolBar.background": "#F0F0F0",
146
+ "pickerGroup.border": "#d9d9d9",
147
+ "pickerGroup.foreground": "#403f53",
148
+ "extensionButton.prominentBackground": "#2AA298",
149
+ "extensionButton.prominentForeground": "#F0F0F0",
150
+ "statusBar.background": "#F0F0F0",
151
+ "statusBar.border": "#F0F0F0",
152
+ "statusBar.debuggingBackground": "#F0F0F0",
153
+ "statusBar.debuggingForeground": "#403f53",
154
+ "statusBar.foreground": "#403f53",
155
+ "statusBar.noFolderBackground": "#F0F0F0",
156
+ "statusBar.noFolderForeground": "#403f53",
157
+ "panel.background": "#F0F0F0",
158
+ "panel.border": "#d9d9d9",
159
+ "peekView.border": "#d9d9d9",
160
+ "peekViewEditor.background": "#F6F6F6",
161
+ "peekViewEditorGutter.background": "#F6F6F6",
162
+ "peekViewEditor.matchHighlightBackground": "#49d0c5",
163
+ "peekViewResult.background": "#F0F0F0",
164
+ "peekViewResult.fileForeground": "#403f53",
165
+ "peekViewResult.lineForeground": "#403f53",
166
+ "peekViewResult.matchHighlightBackground": "#49d0c5",
167
+ "peekViewResult.selectionBackground": "#E0E7EA",
168
+ "peekViewResult.selectionForeground": "#403f53",
169
+ "peekViewTitle.background": "#F0F0F0",
170
+ "peekViewTitleLabel.foreground": "#403f53",
171
+ "peekViewTitleDescription.foreground": "#403f53",
172
+ "terminal.ansiBrightBlack": "#403f53",
173
+ "terminal.ansiBlack": "#403f53",
174
+ "terminal.ansiBrightBlue": "#288ed7",
175
+ "terminal.ansiBlue": "#288ed7",
176
+ "terminal.ansiBrightCyan": "#2AA298",
177
+ "terminal.ansiCyan": "#2AA298",
178
+ "terminal.ansiBrightGreen": "#08916a",
179
+ "terminal.ansiGreen": "#08916a",
180
+ "terminal.ansiBrightMagenta": "#d6438a",
181
+ "terminal.ansiMagenta": "#d6438a",
182
+ "terminal.ansiBrightRed": "#de3d3b",
183
+ "terminal.ansiRed": "#de3d3b",
184
+ "terminal.ansiBrightWhite": "#F0F0F0",
185
+ "terminal.ansiWhite": "#F0F0F0",
186
+ "terminal.ansiBrightYellow": "#daaa01",
187
+ "terminal.ansiYellow": "#E0AF02",
188
+ "terminal.background": "#F6F6F6",
189
+ "terminal.foreground": "#403f53",
190
+ },
191
+ "tokenColors": [
192
+ {
193
+ "name": "Changed",
194
+ "scope": [
195
+ "markup.changed",
196
+ "meta.diff.header.git",
197
+ "meta.diff.header.from-file",
198
+ "meta.diff.header.to-file",
199
+ ],
200
+ "settings": {
201
+ "foreground": "#a2bffc",
202
+ },
203
+ },
204
+ {
205
+ "name": "Deleted",
206
+ "scope": "markup.deleted.diff",
207
+ "settings": {
208
+ "foreground": "#EF535090",
209
+ },
210
+ },
211
+ {
212
+ "name": "Inserted",
213
+ "scope": "markup.inserted.diff",
214
+ "settings": {
215
+ "foreground": "#4876d6ff",
216
+ },
217
+ },
218
+ {
219
+ "name": "Global settings",
220
+ "settings": {
221
+ "background": "#011627",
222
+ "foreground": "#403f53",
223
+ },
224
+ },
225
+ {
226
+ "name": "Comment",
227
+ "scope": "comment",
228
+ "settings": {
229
+ "foreground": "#989fb1",
230
+ },
231
+ },
232
+ {
233
+ "name": "String",
234
+ "scope": "string",
235
+ "settings": {
236
+ "foreground": "#4876d6",
237
+ },
238
+ },
239
+ {
240
+ "name": "String Quoted",
241
+ "scope": ["string.quoted", "variable.other.readwrite.js"],
242
+ "settings": {
243
+ "foreground": "#c96765",
244
+ },
245
+ },
246
+ {
247
+ "name": "Support Constant Math",
248
+ "scope": "support.constant.math",
249
+ "settings": {
250
+ "foreground": "#4876d6",
251
+ },
252
+ },
253
+ {
254
+ "name": "Number",
255
+ "scope": ["constant.numeric", "constant.character.numeric"],
256
+ "settings": {
257
+ "foreground": "#aa0982",
258
+ "fontStyle": "",
259
+ },
260
+ },
261
+ {
262
+ "name": "Built-in constant",
263
+ "scope": ["constant.language", "punctuation.definition.constant", "variable.other.constant"],
264
+ "settings": {
265
+ "foreground": "#4876d6",
266
+ },
267
+ },
268
+ {
269
+ "name": "User-defined constant",
270
+ "scope": ["constant.character", "constant.other"],
271
+ "settings": {
272
+ "foreground": "#4876d6",
273
+ },
274
+ },
275
+ {
276
+ "name": "Constant Character Escape",
277
+ "scope": "constant.character.escape",
278
+ "settings": {
279
+ "foreground": "#aa0982",
280
+ },
281
+ },
282
+ {
283
+ "name": "RegExp String",
284
+ "scope": ["string.regexp", "string.regexp keyword.other"],
285
+ "settings": {
286
+ "foreground": "#5ca7e4",
287
+ },
288
+ },
289
+ {
290
+ "name": "Comma in functions",
291
+ "scope": "meta.function punctuation.separator.comma",
292
+ "settings": {
293
+ "foreground": "#5f7e97",
294
+ },
295
+ },
296
+ {
297
+ "name": "Variable",
298
+ "scope": "variable",
299
+ "settings": {
300
+ "foreground": "#4876d6",
301
+ },
302
+ },
303
+ {
304
+ "name": "Keyword",
305
+ "scope": ["punctuation.accessor", "keyword"],
306
+ "settings": {
307
+ "foreground": "#994cc3",
308
+ },
309
+ },
310
+ {
311
+ "name": "Storage",
312
+ "scope": [
313
+ "storage",
314
+ "meta.var.expr",
315
+ "meta.class meta.method.declaration meta.var.expr storage.type.js",
316
+ "storage.type.property.js",
317
+ "storage.type.property.ts",
318
+ "storage.type.property.tsx",
319
+ ],
320
+ "settings": {
321
+ "foreground": "#994cc3",
322
+ },
323
+ },
324
+ {
325
+ "name": "Storage type",
326
+ "scope": "storage.type",
327
+ "settings": {
328
+ "foreground": "#994cc3",
329
+ },
330
+ },
331
+ {
332
+ "name": "Storage type",
333
+ "scope": "storage.type.function.arrow.js",
334
+ "settings": {
335
+ "fontStyle": "",
336
+ },
337
+ },
338
+ {
339
+ "name": "Class name",
340
+ "scope": ["entity.name.class", "meta.class entity.name.type.class"],
341
+ "settings": {
342
+ "foreground": "#111111",
343
+ },
344
+ },
345
+ {
346
+ "name": "Inherited class",
347
+ "scope": "entity.other.inherited-class",
348
+ "settings": {
349
+ "foreground": "#4876d6",
350
+ },
351
+ },
352
+ {
353
+ "name": "Function name",
354
+ "scope": "entity.name.function",
355
+ "settings": {
356
+ "foreground": "#994cc3",
357
+ },
358
+ },
359
+ {
360
+ "name": "Meta Tag",
361
+ "scope": ["punctuation.definition.tag", "meta.tag"],
362
+ "settings": {
363
+ "foreground": "#994cc3",
364
+ },
365
+ },
366
+ {
367
+ "name": "HTML Tag names",
368
+ "scope": [
369
+ "entity.name.tag",
370
+ "meta.tag.other.html",
371
+ "meta.tag.other.js",
372
+ "meta.tag.other.tsx",
373
+ "entity.name.tag.tsx",
374
+ "entity.name.tag.js",
375
+ "entity.name.tag",
376
+ "meta.tag.js",
377
+ "meta.tag.tsx",
378
+ "meta.tag.html",
379
+ ],
380
+ "settings": {
381
+ "foreground": "#994cc3",
382
+ },
383
+ },
384
+ {
385
+ "name": "Tag attribute",
386
+ "scope": "entity.other.attribute-name",
387
+ "settings": {
388
+ "foreground": "#4876d6",
389
+ },
390
+ },
391
+ {
392
+ "name": "Entity Name Tag Custom",
393
+ "scope": "entity.name.tag.custom",
394
+ "settings": {
395
+ "foreground": "#4876d6",
396
+ },
397
+ },
398
+ {
399
+ "name": "Library (function & constant)",
400
+ "scope": ["support.function", "support.constant"],
401
+ "settings": {
402
+ "foreground": "#4876d6",
403
+ },
404
+ },
405
+ {
406
+ "name": "Support Constant Property Value meta",
407
+ "scope": "support.constant.meta.property-value",
408
+ "settings": {
409
+ "foreground": "#0c969b",
410
+ },
411
+ },
412
+ {
413
+ "name": "Library class/type",
414
+ "scope": ["support.type", "support.class"],
415
+ "settings": {
416
+ "foreground": "#4876d6",
417
+ },
418
+ },
419
+ {
420
+ "name": "Support Variable DOM",
421
+ "scope": "support.variable.dom",
422
+ "settings": {
423
+ "foreground": "#4876d6",
424
+ },
425
+ },
426
+ {
427
+ "name": "Invalid",
428
+ "scope": "invalid",
429
+ "settings": {
430
+ "foreground": "#ff2c83",
431
+ },
432
+ },
433
+ {
434
+ "name": "Invalid deprecated",
435
+ "scope": "invalid.deprecated",
436
+ "settings": {
437
+ "foreground": "#d3423e",
438
+ },
439
+ },
440
+ {
441
+ "name": "Keyword Operator",
442
+ "scope": "keyword.operator",
443
+ "settings": {
444
+ "foreground": "#0c969b",
445
+ "fontStyle": "",
446
+ },
447
+ },
448
+ {
449
+ "name": "Keyword Operator Relational",
450
+ "scope": "keyword.operator.relational",
451
+ "settings": {
452
+ "foreground": "#994cc3",
453
+ },
454
+ },
455
+ {
456
+ "name": "Keyword Operator Assignment",
457
+ "scope": "keyword.operator.assignment",
458
+ "settings": {
459
+ "foreground": "#994cc3",
460
+ },
461
+ },
462
+ {
463
+ "name": "Keyword Operator Arithmetic",
464
+ "scope": "keyword.operator.arithmetic",
465
+ "settings": {
466
+ "foreground": "#994cc3",
467
+ },
468
+ },
469
+ {
470
+ "name": "Keyword Operator Bitwise",
471
+ "scope": "keyword.operator.bitwise",
472
+ "settings": {
473
+ "foreground": "#994cc3",
474
+ },
475
+ },
476
+ {
477
+ "name": "Keyword Operator Increment",
478
+ "scope": "keyword.operator.increment",
479
+ "settings": {
480
+ "foreground": "#994cc3",
481
+ },
482
+ },
483
+ {
484
+ "name": "Keyword Operator Ternary",
485
+ "scope": "keyword.operator.ternary",
486
+ "settings": {
487
+ "foreground": "#994cc3",
488
+ },
489
+ },
490
+ {
491
+ "name": "Double-Slashed Comment",
492
+ "scope": "comment.line.double-slash",
493
+ "settings": {
494
+ "foreground": "#939dbb",
495
+ },
496
+ },
497
+ {
498
+ "name": "Object",
499
+ "scope": "object",
500
+ "settings": {
501
+ "foreground": "#cdebf7",
502
+ },
503
+ },
504
+ {
505
+ "name": "Null",
506
+ "scope": "constant.language.null",
507
+ "settings": {
508
+ "foreground": "#bc5454",
509
+ },
510
+ },
511
+ {
512
+ "name": "Meta Brace",
513
+ "scope": "meta.brace",
514
+ "settings": {
515
+ "foreground": "#403f53",
516
+ },
517
+ },
518
+ {
519
+ "name": "Meta Delimiter Period",
520
+ "scope": "meta.delimiter.period",
521
+ "settings": {
522
+ "foreground": "#994cc3",
523
+ },
524
+ },
525
+ {
526
+ "name": "Punctuation Definition String",
527
+ "scope": "punctuation.definition.string",
528
+ "settings": {
529
+ "foreground": "#111111",
530
+ },
531
+ },
532
+ {
533
+ "name": "Punctuation Definition String Markdown",
534
+ "scope": "punctuation.definition.string.begin.markdown",
535
+ "settings": {
536
+ "foreground": "#bc5454",
537
+ },
538
+ },
539
+ {
540
+ "name": "Boolean",
541
+ "scope": "constant.language.boolean",
542
+ "settings": {
543
+ "foreground": "#bc5454",
544
+ },
545
+ },
546
+ {
547
+ "name": "Object Comma",
548
+ "scope": "object.comma",
549
+ "settings": {
550
+ "foreground": "#ffffff",
551
+ },
552
+ },
553
+ {
554
+ "name": "Variable Parameter Function",
555
+ "scope": "variable.parameter.function",
556
+ "settings": {
557
+ "foreground": "#0c969b",
558
+ "fontStyle": "",
559
+ },
560
+ },
561
+ {
562
+ "name": "Support Type Property Name & entity name tags",
563
+ "scope": [
564
+ "support.type.vendor.property-name",
565
+ "support.constant.vendor.property-value",
566
+ "support.type.property-name",
567
+ "meta.property-list entity.name.tag",
568
+ ],
569
+ "settings": {
570
+ "foreground": "#0c969b",
571
+ "fontStyle": "",
572
+ },
573
+ },
574
+ {
575
+ "name": "Entity Name tag reference in stylesheets",
576
+ "scope": "meta.property-list entity.name.tag.reference",
577
+ "settings": {
578
+ "foreground": "#57eaf1",
579
+ },
580
+ },
581
+ {
582
+ "name": "Constant Other Color RGB Value Punctuation Definition Constant",
583
+ "scope": "constant.other.color.rgb-value punctuation.definition.constant",
584
+ "settings": {
585
+ "foreground": "#aa0982",
586
+ },
587
+ },
588
+ {
589
+ "name": "Constant Other Color",
590
+ "scope": "constant.other.color",
591
+ "settings": {
592
+ "foreground": "#aa0982",
593
+ },
594
+ },
595
+ {
596
+ "name": "Keyword Other Unit",
597
+ "scope": "keyword.other.unit",
598
+ "settings": {
599
+ "foreground": "#aa0982",
600
+ },
601
+ },
602
+ {
603
+ "name": "Meta Selector",
604
+ "scope": "meta.selector",
605
+ "settings": {
606
+ "foreground": "#994cc3",
607
+ },
608
+ },
609
+ {
610
+ "name": "Entity Other Attribute Name Id",
611
+ "scope": "entity.other.attribute-name.id",
612
+ "settings": {
613
+ "foreground": "#aa0982",
614
+ },
615
+ },
616
+ {
617
+ "name": "Meta Property Name",
618
+ "scope": "meta.property-name",
619
+ "settings": {
620
+ "foreground": "#0c969b",
621
+ },
622
+ },
623
+ {
624
+ "name": "Doctypes",
625
+ "scope": ["entity.name.tag.doctype", "meta.tag.sgml.doctype"],
626
+ "settings": {
627
+ "foreground": "#994cc3",
628
+ },
629
+ },
630
+ {
631
+ "name": "Punctuation Definition Parameters",
632
+ "scope": "punctuation.definition.parameters",
633
+ "settings": {
634
+ "foreground": "#111111",
635
+ },
636
+ },
637
+ {
638
+ "name": "Keyword Control Operator",
639
+ "scope": "keyword.control.operator",
640
+ "settings": {
641
+ "foreground": "#0c969b",
642
+ },
643
+ },
644
+ {
645
+ "name": "Keyword Operator Logical",
646
+ "scope": "keyword.operator.logical",
647
+ "settings": {
648
+ "foreground": "#994cc3",
649
+ "fontStyle": "",
650
+ },
651
+ },
652
+ {
653
+ "name": "Variable Instances",
654
+ "scope": [
655
+ "variable.instance",
656
+ "variable.other.instance",
657
+ "variable.readwrite.instance",
658
+ "variable.other.readwrite.instance",
659
+ "variable.other.property",
660
+ ],
661
+ "settings": {
662
+ "foreground": "#0c969b",
663
+ },
664
+ },
665
+ {
666
+ "name": "Variable Property Other object property",
667
+ "scope": ["variable.other.object.property"],
668
+ "settings": {
669
+ "foreground": "#111111",
670
+ },
671
+ },
672
+ {
673
+ "name": "Variable Property Other object",
674
+ "scope": ["variable.other.object.js"],
675
+ "settings": {
676
+ "fontStyle": "",
677
+ },
678
+ },
679
+ {
680
+ "name": "Entity Name Function",
681
+ "scope": ["entity.name.function"],
682
+ "settings": {
683
+ "foreground": "#4876d6",
684
+ },
685
+ },
686
+ {
687
+ "name": "Keyword Operator Comparison, imports, returns and Keyword Operator Ruby",
688
+ "scope": [
689
+ "keyword.operator.comparison",
690
+ "keyword.control.flow.js",
691
+ "keyword.control.flow.ts",
692
+ "keyword.control.flow.tsx",
693
+ "keyword.control.ruby",
694
+ "keyword.control.module.ruby",
695
+ "keyword.control.class.ruby",
696
+ "keyword.control.def.ruby",
697
+ "keyword.control.loop.js",
698
+ "keyword.control.loop.ts",
699
+ "keyword.control.import.js",
700
+ "keyword.control.import.ts",
701
+ "keyword.control.import.tsx",
702
+ "keyword.control.from.js",
703
+ "keyword.control.from.ts",
704
+ "keyword.control.from.tsx",
705
+ "keyword.operator.instanceof.js",
706
+ "keyword.operator.expression.instanceof.ts",
707
+ "keyword.operator.expression.instanceof.tsx",
708
+ ],
709
+ "settings": {
710
+ "foreground": "#994cc3",
711
+ },
712
+ },
713
+ {
714
+ "name": "Keyword Control Conditional",
715
+ "scope": [
716
+ "keyword.control.conditional.js",
717
+ "keyword.control.conditional.ts",
718
+ "keyword.control.switch.js",
719
+ "keyword.control.switch.ts",
720
+ ],
721
+ "settings": {
722
+ "foreground": "#994cc3",
723
+ "fontStyle": "",
724
+ },
725
+ },
726
+ {
727
+ "name": "Support Constant, `new` keyword, Special Method Keyword, `debugger`, other keywords",
728
+ "scope": [
729
+ "support.constant",
730
+ "keyword.other.special-method",
731
+ "keyword.other.new",
732
+ "keyword.other.debugger",
733
+ "keyword.control",
734
+ ],
735
+ "settings": {
736
+ "foreground": "#0c969b",
737
+ },
738
+ },
739
+ {
740
+ "name": "Support Function",
741
+ "scope": "support.function",
742
+ "settings": {
743
+ "foreground": "#4876d6",
744
+ },
745
+ },
746
+ {
747
+ "name": "Invalid Broken",
748
+ "scope": "invalid.broken",
749
+ "settings": {
750
+ "foreground": "#aa0982",
751
+ },
752
+ },
753
+ {
754
+ "name": "Invalid Unimplemented",
755
+ "scope": "invalid.unimplemented",
756
+ "settings": {
757
+ "foreground": "#8BD649",
758
+ },
759
+ },
760
+ {
761
+ "name": "Invalid Illegal",
762
+ "scope": "invalid.illegal",
763
+ "settings": {
764
+ "foreground": "#c96765",
765
+ },
766
+ },
767
+ {
768
+ "name": "Language Variable",
769
+ "scope": "variable.language",
770
+ "settings": {
771
+ "foreground": "#0c969b",
772
+ },
773
+ },
774
+ {
775
+ "name": "Support Variable Property",
776
+ "scope": "support.variable.property",
777
+ "settings": {
778
+ "foreground": "#0c969b",
779
+ },
780
+ },
781
+ {
782
+ "name": "Variable Function",
783
+ "scope": "variable.function",
784
+ "settings": {
785
+ "foreground": "#4876d6",
786
+ },
787
+ },
788
+ {
789
+ "name": "Variable Interpolation",
790
+ "scope": "variable.interpolation",
791
+ "settings": {
792
+ "foreground": "#ec5f67",
793
+ },
794
+ },
795
+ {
796
+ "name": "Meta Function Call",
797
+ "scope": "meta.function-call",
798
+ "settings": {
799
+ "foreground": "#4876d6",
800
+ },
801
+ },
802
+ {
803
+ "name": "Punctuation Section Embedded",
804
+ "scope": "punctuation.section.embedded",
805
+ "settings": {
806
+ "foreground": "#d3423e",
807
+ },
808
+ },
809
+ {
810
+ "name": "Punctuation Tweaks",
811
+ "scope": [
812
+ "punctuation.terminator.expression",
813
+ "punctuation.definition.arguments",
814
+ "punctuation.definition.array",
815
+ "punctuation.section.array",
816
+ "meta.array",
817
+ ],
818
+ "settings": {
819
+ "foreground": "#403f53",
820
+ },
821
+ },
822
+ {
823
+ "name": "More Punctuation Tweaks",
824
+ "scope": [
825
+ "punctuation.definition.list.begin",
826
+ "punctuation.definition.list.end",
827
+ "punctuation.separator.arguments",
828
+ "punctuation.definition.list",
829
+ ],
830
+ "settings": {
831
+ "foreground": "#111111",
832
+ },
833
+ },
834
+ {
835
+ "name": "Template Strings",
836
+ "scope": "string.template meta.template.expression",
837
+ "settings": {
838
+ "foreground": "#d3423e",
839
+ },
840
+ },
841
+ {
842
+ "name": "Backticks(``) in Template Strings",
843
+ "scope": "string.template punctuation.definition.string",
844
+ "settings": {
845
+ "foreground": "#403f53",
846
+ },
847
+ },
848
+ {
849
+ "name": "Italics",
850
+ "scope": "italic",
851
+ "settings": {
852
+ "foreground": "#994cc3",
853
+ "fontStyle": "italic",
854
+ },
855
+ },
856
+ {
857
+ "name": "Bold",
858
+ "scope": "bold",
859
+ "settings": {
860
+ "foreground": "#4876d6",
861
+ "fontStyle": "bold",
862
+ },
863
+ },
864
+ {
865
+ "name": "Quote",
866
+ "scope": "quote",
867
+ "settings": {
868
+ "foreground": "#697098",
869
+ },
870
+ },
871
+ {
872
+ "name": "Raw Code",
873
+ "scope": "raw",
874
+ "settings": {
875
+ "foreground": "#0c969b",
876
+ },
877
+ },
878
+ {
879
+ "name": "CoffeeScript Variable Assignment",
880
+ "scope": "variable.assignment.coffee",
881
+ "settings": {
882
+ "foreground": "#31e1eb",
883
+ },
884
+ },
885
+ {
886
+ "name": "CoffeeScript Parameter Function",
887
+ "scope": "variable.parameter.function.coffee",
888
+ "settings": {
889
+ "foreground": "#403f53",
890
+ },
891
+ },
892
+ {
893
+ "name": "CoffeeScript Assignments",
894
+ "scope": "variable.assignment.coffee",
895
+ "settings": {
896
+ "foreground": "#0c969b",
897
+ },
898
+ },
899
+ {
900
+ "name": "C# Readwrite Variables",
901
+ "scope": "variable.other.readwrite.cs",
902
+ "settings": {
903
+ "foreground": "#403f53",
904
+ },
905
+ },
906
+ {
907
+ "name": "C# Classes & Storage types",
908
+ "scope": ["entity.name.type.class.cs", "storage.type.cs"],
909
+ "settings": {
910
+ "foreground": "#4876d6",
911
+ },
912
+ },
913
+ {
914
+ "name": "C# Namespaces",
915
+ "scope": "entity.name.type.namespace.cs",
916
+ "settings": {
917
+ "foreground": "#0c969b",
918
+ },
919
+ },
920
+ {
921
+ "name": "Tag names in Stylesheets",
922
+ "scope": [
923
+ "entity.name.tag.css",
924
+ "entity.name.tag.less",
925
+ "entity.name.tag.custom.css",
926
+ "support.constant.property-value.css",
927
+ ],
928
+ "settings": {
929
+ "foreground": "#c96765",
930
+ "fontStyle": "",
931
+ },
932
+ },
933
+ {
934
+ "name": "Wildcard(*) selector in Stylesheets",
935
+ "scope": [
936
+ "entity.name.tag.wildcard.css",
937
+ "entity.name.tag.wildcard.less",
938
+ "entity.name.tag.wildcard.scss",
939
+ "entity.name.tag.wildcard.sass",
940
+ ],
941
+ "settings": {
942
+ "foreground": "#0c969b",
943
+ },
944
+ },
945
+ {
946
+ "name": "CSS Keyword Other Unit",
947
+ "scope": "keyword.other.unit.css",
948
+ "settings": {
949
+ "foreground": "#4876d6",
950
+ },
951
+ },
952
+ {
953
+ "name": "Attribute Name for CSS",
954
+ "scope": [
955
+ "meta.attribute-selector.css entity.other.attribute-name.attribute",
956
+ "variable.other.readwrite.js",
957
+ ],
958
+ "settings": {
959
+ "foreground": "#aa0982",
960
+ },
961
+ },
962
+ {
963
+ "name": "Elixir Classes",
964
+ "scope": [
965
+ "source.elixir support.type.elixir",
966
+ "source.elixir meta.module.elixir entity.name.class.elixir",
967
+ ],
968
+ "settings": {
969
+ "foreground": "#4876d6",
970
+ },
971
+ },
972
+ {
973
+ "name": "Elixir Functions",
974
+ "scope": "source.elixir entity.name.function",
975
+ "settings": {
976
+ "foreground": "#4876d6",
977
+ },
978
+ },
979
+ {
980
+ "name": "Elixir Constants",
981
+ "scope": [
982
+ "source.elixir constant.other.symbol.elixir",
983
+ "source.elixir constant.other.keywords.elixir",
984
+ ],
985
+ "settings": {
986
+ "foreground": "#4876d6",
987
+ },
988
+ },
989
+ {
990
+ "name": "Elixir String Punctuations",
991
+ "scope": "source.elixir punctuation.definition.string",
992
+ "settings": {
993
+ "foreground": "#4876d6",
994
+ },
995
+ },
996
+ {
997
+ "name": "Elixir",
998
+ "scope": [
999
+ "source.elixir variable.other.readwrite.module.elixir",
1000
+ "source.elixir variable.other.readwrite.module.elixir punctuation.definition.variable.elixir",
1001
+ ],
1002
+ "settings": {
1003
+ "foreground": "#4876d6",
1004
+ },
1005
+ },
1006
+ {
1007
+ "name": "Elixir Binary Punctuations",
1008
+ "scope": "source.elixir .punctuation.binary.elixir",
1009
+ "settings": {
1010
+ "foreground": "#994cc3",
1011
+ },
1012
+ },
1013
+ {
1014
+ "name": "Closure Constant Keyword",
1015
+ "scope": "constant.keyword.clojure",
1016
+ "settings": {
1017
+ "foreground": "#0c969b",
1018
+ },
1019
+ },
1020
+ {
1021
+ "name": "Go Function Calls",
1022
+ "scope": "source.go meta.function-call.go",
1023
+ "settings": {
1024
+ "foreground": "#0c969b",
1025
+ },
1026
+ },
1027
+ {
1028
+ "name": "Go Keywords",
1029
+ "scope": [
1030
+ "source.go keyword.package.go",
1031
+ "source.go keyword.import.go",
1032
+ "source.go keyword.function.go",
1033
+ "source.go keyword.type.go",
1034
+ "source.go keyword.struct.go",
1035
+ "source.go keyword.interface.go",
1036
+ "source.go keyword.const.go",
1037
+ "source.go keyword.var.go",
1038
+ "source.go keyword.map.go",
1039
+ "source.go keyword.channel.go",
1040
+ "source.go keyword.control.go",
1041
+ ],
1042
+ "settings": {
1043
+ "foreground": "#994cc3",
1044
+ },
1045
+ },
1046
+ {
1047
+ "name": "Go Constants e.g. nil, string format (%s, %d, etc.)",
1048
+ "scope": ["source.go constant.language.go", "source.go constant.other.placeholder.go"],
1049
+ "settings": {
1050
+ "foreground": "#bc5454",
1051
+ },
1052
+ },
1053
+ {
1054
+ "name": "C++ Functions",
1055
+ "scope": ["entity.name.function.preprocessor.cpp", "entity.scope.name.cpp"],
1056
+ "settings": {
1057
+ "foreground": "#0c969bff",
1058
+ },
1059
+ },
1060
+ {
1061
+ "name": "C++ Meta Namespace",
1062
+ "scope": ["meta.namespace-block.cpp"],
1063
+ "settings": {
1064
+ "foreground": "#111111",
1065
+ },
1066
+ },
1067
+ {
1068
+ "name": "C++ Language Primitive Storage",
1069
+ "scope": ["storage.type.language.primitive.cpp"],
1070
+ "settings": {
1071
+ "foreground": "#bc5454",
1072
+ },
1073
+ },
1074
+ {
1075
+ "name": "C++ Preprocessor Macro",
1076
+ "scope": ["meta.preprocessor.macro.cpp"],
1077
+ "settings": {
1078
+ "foreground": "#403f53",
1079
+ },
1080
+ },
1081
+ {
1082
+ "name": "C++ Variable Parameter",
1083
+ "scope": ["variable.parameter"],
1084
+ "settings": {
1085
+ "foreground": "#111111",
1086
+ },
1087
+ },
1088
+ {
1089
+ "name": "Powershell Variables",
1090
+ "scope": ["variable.other.readwrite.powershell"],
1091
+ "settings": {
1092
+ "foreground": "#4876d6",
1093
+ },
1094
+ },
1095
+ {
1096
+ "name": "Powershell Function",
1097
+ "scope": ["support.function.powershell"],
1098
+ "settings": {
1099
+ "foreground": "#0c969bff",
1100
+ },
1101
+ },
1102
+ {
1103
+ "name": "ID Attribute Name in HTML",
1104
+ "scope": "entity.other.attribute-name.id.html",
1105
+ "settings": {
1106
+ "foreground": "#4876d6",
1107
+ },
1108
+ },
1109
+ {
1110
+ "name": "HTML Punctuation Definition Tag",
1111
+ "scope": "punctuation.definition.tag.html",
1112
+ "settings": {
1113
+ "foreground": "#994cc3",
1114
+ },
1115
+ },
1116
+ {
1117
+ "name": "HTML Doctype",
1118
+ "scope": "meta.tag.sgml.doctype.html",
1119
+ "settings": {
1120
+ "foreground": "#994cc3",
1121
+ },
1122
+ },
1123
+ {
1124
+ "name": "JavaScript Classes",
1125
+ "scope": "meta.class entity.name.type.class.js",
1126
+ "settings": {
1127
+ "foreground": "#111111",
1128
+ },
1129
+ },
1130
+ {
1131
+ "name": "JavaScript Method Declaration e.g. `constructor`",
1132
+ "scope": "meta.method.declaration storage.type.js",
1133
+ "settings": {
1134
+ "foreground": "#4876d6",
1135
+ },
1136
+ },
1137
+ {
1138
+ "name": "JavaScript Terminator",
1139
+ "scope": "terminator.js",
1140
+ "settings": {
1141
+ "foreground": "#403f53",
1142
+ },
1143
+ },
1144
+ {
1145
+ "name": "JavaScript Meta Punctuation Definition",
1146
+ "scope": "meta.js punctuation.definition.js",
1147
+ "settings": {
1148
+ "foreground": "#403f53",
1149
+ },
1150
+ },
1151
+ {
1152
+ "name": "Entity Names in Code Documentations",
1153
+ "scope": ["entity.name.type.instance.jsdoc", "entity.name.type.instance.phpdoc"],
1154
+ "settings": {
1155
+ "foreground": "#5f7e97",
1156
+ },
1157
+ },
1158
+ {
1159
+ "name": "Other Variables in Code Documentations",
1160
+ "scope": ["variable.other.jsdoc", "variable.other.phpdoc"],
1161
+ "settings": {
1162
+ "foreground": "#78ccf0",
1163
+ },
1164
+ },
1165
+ {
1166
+ "name": "JavaScript module imports and exports",
1167
+ "scope": [
1168
+ "variable.other.meta.import.js",
1169
+ "meta.import.js variable.other",
1170
+ "variable.other.meta.export.js",
1171
+ "meta.export.js variable.other",
1172
+ ],
1173
+ "settings": {
1174
+ "foreground": "#403f53",
1175
+ },
1176
+ },
1177
+ {
1178
+ "name": "JavaScript Variable Parameter Function",
1179
+ "scope": "variable.parameter.function.js",
1180
+ "settings": {
1181
+ "foreground": "#7986E7",
1182
+ },
1183
+ },
1184
+ {
1185
+ "name": "JavaScript[React] Variable Other Object",
1186
+ "scope": [
1187
+ "variable.other.object.js",
1188
+ "variable.other.object.jsx",
1189
+ "variable.object.property.js",
1190
+ "variable.object.property.jsx",
1191
+ ],
1192
+ "settings": {
1193
+ "foreground": "#403f53",
1194
+ },
1195
+ },
1196
+ {
1197
+ "name": "JavaScript Variables",
1198
+ "scope": ["variable.js", "variable.other.js"],
1199
+ "settings": {
1200
+ "foreground": "#403f53",
1201
+ },
1202
+ },
1203
+ {
1204
+ "name": "JavaScript Entity Name Type",
1205
+ "scope": ["entity.name.type.js", "entity.name.type.module.js"],
1206
+ "settings": {
1207
+ "foreground": "#111111",
1208
+ "fontStyle": "",
1209
+ },
1210
+ },
1211
+ {
1212
+ "name": "JavaScript Support Classes",
1213
+ "scope": "support.class.js",
1214
+ "settings": {
1215
+ "foreground": "#403f53",
1216
+ },
1217
+ },
1218
+ {
1219
+ "name": "JSON Property Names",
1220
+ "scope": "support.type.property-name.json",
1221
+ "settings": {
1222
+ "foreground": "#0c969b",
1223
+ },
1224
+ },
1225
+ {
1226
+ "name": "JSON Support Constants",
1227
+ "scope": "support.constant.json",
1228
+ "settings": {
1229
+ "foreground": "#4876d6",
1230
+ },
1231
+ },
1232
+ {
1233
+ "name": "JSON Property values (string)",
1234
+ "scope": "meta.structure.dictionary.value.json string.quoted.double",
1235
+ "settings": {
1236
+ "foreground": "#c789d6",
1237
+ },
1238
+ },
1239
+ {
1240
+ "name": "Strings in JSON values",
1241
+ "scope": "string.quoted.double.json punctuation.definition.string.json",
1242
+ "settings": {
1243
+ "foreground": "#0c969b",
1244
+ },
1245
+ },
1246
+ {
1247
+ "name": "Specific JSON Property values like null",
1248
+ "scope": "meta.structure.dictionary.json meta.structure.dictionary.value constant.language",
1249
+ "settings": {
1250
+ "foreground": "#bc5454",
1251
+ },
1252
+ },
1253
+ {
1254
+ "name": "JavaScript Other Variable",
1255
+ "scope": "variable.other.object.js",
1256
+ "settings": {
1257
+ "foreground": "#0c969b",
1258
+ },
1259
+ },
1260
+ {
1261
+ "name": "Ruby Variables",
1262
+ "scope": ["variable.other.ruby"],
1263
+ "settings": {
1264
+ "foreground": "#403f53",
1265
+ },
1266
+ },
1267
+ {
1268
+ "name": "Ruby Class",
1269
+ "scope": ["entity.name.type.class.ruby"],
1270
+ "settings": {
1271
+ "foreground": "#c96765",
1272
+ },
1273
+ },
1274
+ {
1275
+ "name": "Ruby Hashkeys",
1276
+ "scope": "constant.language.symbol.hashkey.ruby",
1277
+ "settings": {
1278
+ "foreground": "#0c969b",
1279
+ },
1280
+ },
1281
+ {
1282
+ "name": "Ruby Symbols",
1283
+ "scope": "constant.language.symbol.ruby",
1284
+ "settings": {
1285
+ "foreground": "#0c969b",
1286
+ },
1287
+ },
1288
+ {
1289
+ "name": "LESS Tag names",
1290
+ "scope": "entity.name.tag.less",
1291
+ "settings": {
1292
+ "foreground": "#994cc3",
1293
+ },
1294
+ },
1295
+ {
1296
+ "name": "LESS Keyword Other Unit",
1297
+ "scope": "keyword.other.unit.css",
1298
+ "settings": {
1299
+ "foreground": "#0c969b",
1300
+ },
1301
+ },
1302
+ {
1303
+ "name": "Attribute Name for LESS",
1304
+ "scope": "meta.attribute-selector.less entity.other.attribute-name.attribute",
1305
+ "settings": {
1306
+ "foreground": "#aa0982",
1307
+ },
1308
+ },
1309
+ {
1310
+ "name": "Markdown Headings",
1311
+ "scope": [
1312
+ "markup.heading.markdown",
1313
+ "markup.heading.setext.1.markdown",
1314
+ "markup.heading.setext.2.markdown",
1315
+ ],
1316
+ "settings": {
1317
+ "foreground": "#4876d6",
1318
+ },
1319
+ },
1320
+ {
1321
+ "name": "Markdown Italics",
1322
+ "scope": "markup.italic.markdown",
1323
+ "settings": {
1324
+ "foreground": "#994cc3",
1325
+ "fontStyle": "italic",
1326
+ },
1327
+ },
1328
+ {
1329
+ "name": "Markdown Bold",
1330
+ "scope": "markup.bold.markdown",
1331
+ "settings": {
1332
+ "foreground": "#4876d6",
1333
+ "fontStyle": "bold",
1334
+ },
1335
+ },
1336
+ {
1337
+ "name": "Markdown Quote + others",
1338
+ "scope": "markup.quote.markdown",
1339
+ "settings": {
1340
+ "foreground": "#697098",
1341
+ },
1342
+ },
1343
+ {
1344
+ "name": "Markdown Raw Code + others",
1345
+ "scope": "markup.inline.raw.markdown",
1346
+ "settings": {
1347
+ "foreground": "#0c969b",
1348
+ },
1349
+ },
1350
+ {
1351
+ "name": "Markdown Links",
1352
+ "scope": ["markup.underline.link.markdown", "markup.underline.link.image.markdown"],
1353
+ "settings": {
1354
+ "foreground": "#ff869a",
1355
+ },
1356
+ },
1357
+ {
1358
+ "name": "Markdown Link Title and Description",
1359
+ "scope": ["string.other.link.title.markdown", "string.other.link.description.markdown"],
1360
+ "settings": {
1361
+ "foreground": "#403f53",
1362
+ },
1363
+ },
1364
+ {
1365
+ "name": "Markdown Punctuation",
1366
+ "scope": [
1367
+ "punctuation.definition.string.markdown",
1368
+ "punctuation.definition.string.begin.markdown",
1369
+ "punctuation.definition.string.end.markdown",
1370
+ "meta.link.inline.markdown punctuation.definition.string",
1371
+ ],
1372
+ "settings": {
1373
+ "foreground": "#4876d6",
1374
+ },
1375
+ },
1376
+ {
1377
+ "name": "Markdown MetaData Punctuation",
1378
+ "scope": ["punctuation.definition.metadata.markdown"],
1379
+ "settings": {
1380
+ "foreground": "#0c969b",
1381
+ },
1382
+ },
1383
+ {
1384
+ "name": "Markdown List Punctuation",
1385
+ "scope": ["beginning.punctuation.definition.list.markdown"],
1386
+ "settings": {
1387
+ "foreground": "#4876d6",
1388
+ },
1389
+ },
1390
+ {
1391
+ "name": "Markdown Inline Raw String",
1392
+ "scope": "markup.inline.raw.string.markdown",
1393
+ "settings": {
1394
+ "foreground": "#4876d6",
1395
+ },
1396
+ },
1397
+ {
1398
+ "name": "PHP Variables",
1399
+ "scope": ["variable.other.php", "variable.other.property.php"],
1400
+ "settings": {
1401
+ "foreground": "#111111",
1402
+ },
1403
+ },
1404
+ {
1405
+ "name": "Support Classes in PHP",
1406
+ "scope": "support.class.php",
1407
+ "settings": {
1408
+ "foreground": "#111111",
1409
+ },
1410
+ },
1411
+ {
1412
+ "name": "Punctuations in PHP function calls",
1413
+ "scope": "meta.function-call.php punctuation",
1414
+ "settings": {
1415
+ "foreground": "#403f53",
1416
+ },
1417
+ },
1418
+ {
1419
+ "name": "PHP Global Variables",
1420
+ "scope": "variable.other.global.php",
1421
+ "settings": {
1422
+ "foreground": "#4876d6",
1423
+ },
1424
+ },
1425
+ {
1426
+ "name": "Declaration Punctuation in PHP Global Variables",
1427
+ "scope": "variable.other.global.php punctuation.definition.variable",
1428
+ "settings": {
1429
+ "foreground": "#4876d6",
1430
+ },
1431
+ },
1432
+ {
1433
+ "name": "Language Constants in Python",
1434
+ "scope": "constant.language.python",
1435
+ "settings": {
1436
+ "foreground": "#bc5454",
1437
+ },
1438
+ },
1439
+ {
1440
+ "name": "Python Function Parameter and Arguments",
1441
+ "scope": ["variable.parameter.function.python", "meta.function-call.arguments.python"],
1442
+ "settings": {
1443
+ "foreground": "#4876d6",
1444
+ },
1445
+ },
1446
+ {
1447
+ "name": "Python Function Call",
1448
+ "scope": ["meta.function-call.python", "meta.function-call.generic.python"],
1449
+ "settings": {
1450
+ "foreground": "#0c969b",
1451
+ },
1452
+ },
1453
+ {
1454
+ "name": "Punctuations in Python",
1455
+ "scope": "punctuation.python",
1456
+ "settings": {
1457
+ "foreground": "#403f53",
1458
+ },
1459
+ },
1460
+ {
1461
+ "name": "Decorator Functions in Python",
1462
+ "scope": "entity.name.function.decorator.python",
1463
+ "settings": {
1464
+ "foreground": "#4876d6",
1465
+ },
1466
+ },
1467
+ {
1468
+ "name": "Python Language Variable",
1469
+ "scope": "source.python variable.language.special",
1470
+ "settings": {
1471
+ "foreground": "#aa0982",
1472
+ },
1473
+ },
1474
+ {
1475
+ "name": "Python import control keyword",
1476
+ "scope": "keyword.control",
1477
+ "settings": {
1478
+ "foreground": "#994cc3",
1479
+ },
1480
+ },
1481
+ {
1482
+ "name": "SCSS Variable",
1483
+ "scope": [
1484
+ "variable.scss",
1485
+ "variable.sass",
1486
+ "variable.parameter.url.scss",
1487
+ "variable.parameter.url.sass",
1488
+ ],
1489
+ "settings": {
1490
+ "foreground": "#4876d6",
1491
+ },
1492
+ },
1493
+ {
1494
+ "name": "Variables in SASS At-Rules",
1495
+ "scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
1496
+ "settings": {
1497
+ "foreground": "#4876d6",
1498
+ },
1499
+ },
1500
+ {
1501
+ "name": "Variables in SASS At-Rules",
1502
+ "scope": ["source.css.scss meta.at-rule variable", "source.css.sass meta.at-rule variable"],
1503
+ "settings": {
1504
+ "foreground": "#111111",
1505
+ },
1506
+ },
1507
+ {
1508
+ "name": "Attribute Name for SASS",
1509
+ "scope": [
1510
+ "meta.attribute-selector.scss entity.other.attribute-name.attribute",
1511
+ "meta.attribute-selector.sass entity.other.attribute-name.attribute",
1512
+ ],
1513
+ "settings": {
1514
+ "foreground": "#aa0982",
1515
+ },
1516
+ },
1517
+ {
1518
+ "name": "Tag names in SASS",
1519
+ "scope": ["entity.name.tag.scss", "entity.name.tag.sass"],
1520
+ "settings": {
1521
+ "foreground": "#0c969b",
1522
+ },
1523
+ },
1524
+ {
1525
+ "name": "SASS Keyword Other Unit",
1526
+ "scope": ["keyword.other.unit.scss", "keyword.other.unit.sass"],
1527
+ "settings": {
1528
+ "foreground": "#994cc3",
1529
+ },
1530
+ },
1531
+ {
1532
+ "name": "TypeScript[React] Variables and Object Properties",
1533
+ "scope": [
1534
+ "variable.other.readwrite.alias.ts",
1535
+ "variable.other.readwrite.alias.tsx",
1536
+ "variable.other.readwrite.ts",
1537
+ "variable.other.readwrite.tsx",
1538
+ "variable.other.object.ts",
1539
+ "variable.other.object.tsx",
1540
+ "variable.object.property.ts",
1541
+ "variable.object.property.tsx",
1542
+ "variable.other.ts",
1543
+ "variable.other.tsx",
1544
+ "variable.tsx",
1545
+ "variable.ts",
1546
+ ],
1547
+ "settings": {
1548
+ "foreground": "#403f53",
1549
+ },
1550
+ },
1551
+ {
1552
+ "name": "TypeScript[React] Entity Name Types",
1553
+ "scope": ["entity.name.type.ts", "entity.name.type.tsx"],
1554
+ "settings": {
1555
+ "foreground": "#111111",
1556
+ },
1557
+ },
1558
+ {
1559
+ "name": "TypeScript[React] Node Classes",
1560
+ "scope": ["support.class.node.ts", "support.class.node.tsx"],
1561
+ "settings": {
1562
+ "foreground": "#4876d6",
1563
+ },
1564
+ },
1565
+ {
1566
+ "name": "TypeScript[React] Entity Name Types as Parameters",
1567
+ "scope": [
1568
+ "meta.type.parameters.ts entity.name.type",
1569
+ "meta.type.parameters.tsx entity.name.type",
1570
+ ],
1571
+ "settings": {
1572
+ "foreground": "#5f7e97",
1573
+ },
1574
+ },
1575
+ {
1576
+ "name": "TypeScript[React] Import/Export Punctuations",
1577
+ "scope": [
1578
+ "meta.import.ts punctuation.definition.block",
1579
+ "meta.import.tsx punctuation.definition.block",
1580
+ "meta.export.ts punctuation.definition.block",
1581
+ "meta.export.tsx punctuation.definition.block",
1582
+ ],
1583
+ "settings": {
1584
+ "foreground": "#403f53",
1585
+ },
1586
+ },
1587
+ {
1588
+ "name": "TypeScript[React] Punctuation Decorators",
1589
+ "scope": [
1590
+ "meta.decorator punctuation.decorator.ts",
1591
+ "meta.decorator punctuation.decorator.tsx",
1592
+ ],
1593
+ "settings": {
1594
+ "foreground": "#4876d6",
1595
+ },
1596
+ },
1597
+ {
1598
+ "name": "TypeScript[React] Punctuation Decorators",
1599
+ "scope": "meta.tag.js meta.jsx.children.tsx",
1600
+ "settings": {
1601
+ "foreground": "#4876d6",
1602
+ },
1603
+ },
1604
+ {
1605
+ "name": "YAML Entity Name Tags",
1606
+ "scope": "entity.name.tag.yaml",
1607
+ "settings": {
1608
+ "foreground": "#111111",
1609
+ },
1610
+ },
1611
+ {
1612
+ "name": "JavaScript Variable Other ReadWrite",
1613
+ "scope": ["variable.other.readwrite.js", "variable.parameter"],
1614
+ "settings": {
1615
+ "foreground": "#403f53",
1616
+ },
1617
+ },
1618
+ {
1619
+ "name": "Support Class Component",
1620
+ "scope": ["support.class.component.js", "support.class.component.tsx"],
1621
+ "settings": {
1622
+ "foreground": "#aa0982",
1623
+ "fontStyle": "",
1624
+ },
1625
+ },
1626
+ {
1627
+ "name": "Text nested in React tags",
1628
+ "scope": ["meta.jsx.children", "meta.jsx.children.js", "meta.jsx.children.tsx"],
1629
+ "settings": {
1630
+ "foreground": "#403f53",
1631
+ },
1632
+ },
1633
+ {
1634
+ "name": "TypeScript Classes",
1635
+ "scope": "meta.class entity.name.type.class.tsx",
1636
+ "settings": {
1637
+ "foreground": "#111111",
1638
+ },
1639
+ },
1640
+ {
1641
+ "name": "TypeScript Entity Name Type",
1642
+ "scope": ["entity.name.type.tsx", "entity.name.type.module.tsx"],
1643
+ "settings": {
1644
+ "foreground": "#111111",
1645
+ },
1646
+ },
1647
+ {
1648
+ "name": "TypeScript Class Variable Keyword",
1649
+ "scope": [
1650
+ "meta.class.ts meta.var.expr.ts storage.type.ts",
1651
+ "meta.class.tsx meta.var.expr.tsx storage.type.tsx",
1652
+ ],
1653
+ "settings": {
1654
+ "foreground": "#C792EA",
1655
+ },
1656
+ },
1657
+ {
1658
+ "name": "TypeScript Method Declaration e.g. `constructor`",
1659
+ "scope": [
1660
+ "meta.method.declaration storage.type.ts",
1661
+ "meta.method.declaration storage.type.tsx",
1662
+ ],
1663
+ "settings": {
1664
+ "foreground": "#4876d6",
1665
+ },
1666
+ },
1667
+ {
1668
+ "name": "normalize font style of certain components",
1669
+ "scope": [
1670
+ "meta.property-list.css meta.property-value.css variable.other.less",
1671
+ "meta.property-list.scss variable.scss",
1672
+ "meta.property-list.sass variable.sass",
1673
+ "meta.brace",
1674
+ "keyword.operator.operator",
1675
+ "keyword.operator.or.regexp",
1676
+ "keyword.operator.expression.in",
1677
+ "keyword.operator.relational",
1678
+ "keyword.operator.assignment",
1679
+ "keyword.operator.comparison",
1680
+ "keyword.operator.type",
1681
+ "keyword.operator",
1682
+ "keyword",
1683
+ "punctuation.definition.string",
1684
+ "punctuation",
1685
+ "variable.other.readwrite.js",
1686
+ "storage.type",
1687
+ "source.css",
1688
+ "string.quoted",
1689
+ ],
1690
+ "settings": {
1691
+ "fontStyle": "",
1692
+ },
1693
+ },
1694
+ ],
1695
+ }