@astrojs/starlight 0.41.11 → 0.42.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. package/dist/_virtual/_rolldown/runtime.js +13 -0
  2. package/dist/components/MobileMenuToggle.astro +65 -0
  3. package/{components → dist/components}/PageFrame.astro +32 -8
  4. package/dist/components-internals/Icons.d.ts +415 -0
  5. package/dist/components-internals/Icons.js +140 -0
  6. package/dist/components-internals/SidebarPersistState.d.ts +1 -0
  7. package/dist/components-internals/SidebarPersistState.js +53 -0
  8. package/dist/components-internals/TableOfContents/starlight-toc.d.ts +18 -0
  9. package/dist/components-internals/TableOfContents/starlight-toc.js +88 -0
  10. package/dist/constants.d.ts +4 -0
  11. package/dist/constants.js +4 -0
  12. package/{expressive-code.d.ts → dist/expressive-code.d.ts} +6 -13
  13. package/dist/expressive-code.js +31 -0
  14. package/dist/global.d.ts +62 -0
  15. package/dist/global.js +2 -0
  16. package/dist/index.d.ts +7 -0
  17. package/dist/index.js +109 -0
  18. package/dist/integrations/aside-utils.d.ts +9 -0
  19. package/dist/integrations/aside-utils.js +35 -0
  20. package/dist/integrations/expressive-code/hast.d.ts +1 -0
  21. package/dist/integrations/expressive-code/hast.js +2 -0
  22. package/dist/integrations/expressive-code/index.d.ts +60 -0
  23. package/dist/integrations/expressive-code/index.js +48 -0
  24. package/dist/integrations/expressive-code/preprocessor.d.ts +17 -0
  25. package/dist/integrations/expressive-code/preprocessor.js +76 -0
  26. package/dist/integrations/expressive-code/themes/night-owl-dark.js +4 -0
  27. package/dist/integrations/expressive-code/themes/night-owl-light.js +4 -0
  28. package/dist/integrations/expressive-code/theming.d.ts +16 -0
  29. package/dist/integrations/expressive-code/theming.js +71 -0
  30. package/dist/integrations/expressive-code/translations.d.ts +8 -0
  31. package/dist/integrations/expressive-code/translations.js +26 -0
  32. package/dist/integrations/markdown-icon.d.ts +8 -0
  33. package/dist/integrations/markdown-icon.js +14 -0
  34. package/dist/integrations/markdown-plugins.d.ts +18 -0
  35. package/dist/integrations/markdown-plugins.js +36 -0
  36. package/dist/integrations/markdown-processor.d.ts +29 -0
  37. package/dist/integrations/markdown-processor.js +44 -0
  38. package/dist/integrations/pagefind.d.ts +7 -0
  39. package/dist/integrations/pagefind.js +34 -0
  40. package/dist/integrations/rehype-code-rtl-support.d.ts +21 -0
  41. package/dist/integrations/rehype-code-rtl-support.js +36 -0
  42. package/dist/integrations/rehype-heading-links.d.ts +10 -0
  43. package/dist/integrations/rehype-heading-links.js +57 -0
  44. package/dist/integrations/remark-asides.d.ts +32 -0
  45. package/dist/integrations/remark-asides.js +166 -0
  46. package/dist/integrations/remark-rehype.d.ts +17 -0
  47. package/dist/integrations/remark-rehype.js +51 -0
  48. package/dist/integrations/satteri.d.ts +13 -0
  49. package/dist/integrations/satteri.js +209 -0
  50. package/dist/integrations/shared/absolutePathToLang.d.ts +10 -0
  51. package/dist/integrations/shared/absolutePathToLang.js +13 -0
  52. package/dist/integrations/shared/localeToLang.d.ts +10 -0
  53. package/dist/integrations/shared/localeToLang.js +13 -0
  54. package/dist/integrations/shared/slugToLocale.d.ts +12 -0
  55. package/dist/integrations/shared/slugToLocale.js +15 -0
  56. package/dist/integrations/sitemap.d.ts +12 -0
  57. package/dist/integrations/sitemap.js +19 -0
  58. package/dist/integrations/vite-layer-order.d.ts +15 -0
  59. package/dist/integrations/vite-layer-order.js +56 -0
  60. package/dist/integrations/vite-lazy-barrel-optimization.d.ts +12 -0
  61. package/dist/integrations/vite-lazy-barrel-optimization.js +33 -0
  62. package/dist/integrations/vite-virtual-modules.d.ts +14 -0
  63. package/dist/integrations/vite-virtual-modules.js +108 -0
  64. package/dist/internal.d.ts +3 -0
  65. package/dist/internal.js +3 -0
  66. package/dist/loaders.d.ts +20 -0
  67. package/dist/loaders.js +49 -0
  68. package/dist/locals.d.ts +15 -0
  69. package/dist/locals.js +33 -0
  70. package/dist/package.js +4 -0
  71. package/{props.ts → dist/props.d.ts} +6 -4
  72. package/dist/props.js +1 -0
  73. package/dist/route-data.d.ts +7 -0
  74. package/dist/route-data.js +6 -0
  75. package/dist/schema.d.ts +426 -0
  76. package/dist/schema.js +103 -0
  77. package/dist/schemas/badge.d.ts +86 -0
  78. package/dist/schemas/badge.js +39 -0
  79. package/dist/schemas/components.d.ts +236 -0
  80. package/dist/schemas/components.js +36 -0
  81. package/dist/schemas/expressiveCode.d.ts +7 -0
  82. package/dist/schemas/expressiveCode.js +5 -0
  83. package/dist/schemas/favicon.d.ts +9 -0
  84. package/dist/schemas/favicon.js +32 -0
  85. package/dist/schemas/head.d.ts +33 -0
  86. package/dist/schemas/head.js +41 -0
  87. package/dist/schemas/hero.d.ts +319 -0
  88. package/dist/schemas/hero.js +73 -0
  89. package/dist/schemas/i18n.d.ts +125 -0
  90. package/dist/schemas/i18n.js +76 -0
  91. package/dist/schemas/icon.d.ts +284 -0
  92. package/dist/schemas/icon.js +7 -0
  93. package/dist/schemas/locale.d.ts +20 -0
  94. package/dist/schemas/locale.js +11 -0
  95. package/dist/schemas/logo.d.ts +32 -0
  96. package/dist/schemas/logo.js +14 -0
  97. package/dist/schemas/pagefind.d.ts +166 -0
  98. package/dist/schemas/pagefind.js +31 -0
  99. package/dist/schemas/prevNextLink.d.ts +10 -0
  100. package/dist/schemas/prevNextLink.js +14 -0
  101. package/dist/schemas/sidebar.d.ts +205 -0
  102. package/dist/schemas/sidebar.js +71 -0
  103. package/dist/schemas/site-title.d.ts +7 -0
  104. package/dist/schemas/site-title.js +17 -0
  105. package/dist/schemas/social.d.ts +292 -0
  106. package/dist/schemas/social.js +18 -0
  107. package/dist/schemas/tableOfContents.d.ts +24 -0
  108. package/dist/schemas/tableOfContents.js +16 -0
  109. package/dist/translations/ar.js +36 -0
  110. package/dist/translations/ca.js +46 -0
  111. package/dist/translations/cs.js +46 -0
  112. package/dist/translations/da.js +33 -0
  113. package/dist/translations/de.js +33 -0
  114. package/dist/translations/el.js +33 -0
  115. package/dist/translations/en.js +33 -0
  116. package/dist/translations/es.js +46 -0
  117. package/dist/translations/fa.js +33 -0
  118. package/dist/translations/fi.js +33 -0
  119. package/dist/translations/fr.js +36 -0
  120. package/dist/translations/gl.js +46 -0
  121. package/dist/translations/he.js +33 -0
  122. package/dist/translations/hi.js +36 -0
  123. package/dist/translations/hu.js +46 -0
  124. package/dist/translations/id.js +33 -0
  125. package/dist/translations/index.d.ts +48 -0
  126. package/dist/translations/index.js +75 -0
  127. package/dist/translations/it.js +36 -0
  128. package/dist/translations/ja.js +36 -0
  129. package/dist/translations/ko.js +36 -0
  130. package/dist/translations/lv.js +33 -0
  131. package/dist/translations/nb.js +33 -0
  132. package/dist/translations/nl.js +33 -0
  133. package/dist/translations/pl.js +36 -0
  134. package/dist/translations/pt.js +36 -0
  135. package/dist/translations/ro.js +33 -0
  136. package/dist/translations/ru.js +36 -0
  137. package/dist/translations/sk.js +33 -0
  138. package/dist/translations/sv.js +33 -0
  139. package/dist/translations/th.js +33 -0
  140. package/dist/translations/tr.js +33 -0
  141. package/dist/translations/uk.js +33 -0
  142. package/dist/translations/vi.js +33 -0
  143. package/dist/translations/zh-CN.js +36 -0
  144. package/dist/translations/zh-TW.js +36 -0
  145. package/dist/types.d.ts +4 -0
  146. package/dist/types.js +1 -0
  147. package/{user-components → dist/user-components}/FileTree.astro +1 -1
  148. package/{user-components → dist/user-components}/Steps.astro +1 -1
  149. package/{user-components → dist/user-components}/TabItem.astro +1 -1
  150. package/{user-components → dist/user-components}/Tabs.astro +1 -1
  151. package/dist/user-components/file-tree-icons.d.ts +178 -0
  152. package/dist/user-components/file-tree-icons.js +632 -0
  153. package/dist/user-components/file-tree-processor.d.ts +16 -0
  154. package/dist/user-components/file-tree-processor.js +132 -0
  155. package/dist/user-components/steps-processor.d.ts +10 -0
  156. package/dist/user-components/steps-processor.js +39 -0
  157. package/dist/user-components/tabs-processor.d.ts +23 -0
  158. package/dist/user-components/tabs-processor.js +70 -0
  159. package/dist/utils/base.d.ts +7 -0
  160. package/dist/utils/base.js +15 -0
  161. package/dist/utils/canonical.d.ts +10 -0
  162. package/dist/utils/canonical.js +14 -0
  163. package/dist/utils/collection-fs.d.ts +13 -0
  164. package/dist/utils/collection-fs.js +19 -0
  165. package/{utils/collection.ts → dist/utils/collection.d.ts} +9 -20
  166. package/dist/utils/collection.js +26 -0
  167. package/dist/utils/createPathFormatter.d.ts +9 -0
  168. package/dist/utils/createPathFormatter.js +35 -0
  169. package/dist/utils/createTranslationSystem.d.ts +23 -0
  170. package/dist/utils/createTranslationSystem.js +84 -0
  171. package/dist/utils/error-map.d.ts +23 -0
  172. package/dist/utils/error-map.js +125 -0
  173. package/dist/utils/format-path.d.ts +4 -0
  174. package/dist/utils/format-path.js +9 -0
  175. package/dist/utils/generateToC.d.ts +14 -0
  176. package/dist/utils/generateToC.js +25 -0
  177. package/dist/utils/git.d.ts +12 -0
  178. package/dist/utils/git.js +71 -0
  179. package/dist/utils/gitInlined.d.ts +6 -0
  180. package/dist/utils/gitInlined.js +11 -0
  181. package/dist/utils/head.d.ts +7 -0
  182. package/dist/utils/head.js +233 -0
  183. package/dist/utils/i18n.d.ts +50 -0
  184. package/dist/utils/i18n.js +141 -0
  185. package/dist/utils/localizedUrl.d.ts +8 -0
  186. package/dist/utils/localizedUrl.js +28 -0
  187. package/dist/utils/navigation.d.ts +19 -0
  188. package/dist/utils/navigation.js +353 -0
  189. package/dist/utils/path.d.ts +21 -0
  190. package/dist/utils/path.js +51 -0
  191. package/dist/utils/plugins.d.ts +721 -0
  192. package/dist/utils/plugins.js +174 -0
  193. package/dist/utils/routing/data.d.ts +20 -0
  194. package/dist/utils/routing/data.js +127 -0
  195. package/dist/utils/routing/index.d.ts +21 -0
  196. package/dist/utils/routing/index.js +106 -0
  197. package/dist/utils/routing/middleware.d.ts +11 -0
  198. package/dist/utils/routing/middleware.js +65 -0
  199. package/dist/utils/routing/types.d.ts +93 -0
  200. package/dist/utils/routing/types.js +1 -0
  201. package/dist/utils/slugs.d.ts +45 -0
  202. package/dist/utils/slugs.js +104 -0
  203. package/dist/utils/starlight-page.d.ts +36 -0
  204. package/dist/utils/starlight-page.js +120 -0
  205. package/dist/utils/translations-fs.d.ts +15 -0
  206. package/dist/utils/translations-fs.js +39 -0
  207. package/dist/utils/translations.d.ts +20 -0
  208. package/dist/utils/translations.js +29 -0
  209. package/dist/utils/types.d.ts +5 -0
  210. package/dist/utils/types.js +1 -0
  211. package/dist/utils/url.d.ts +7 -0
  212. package/{utils/url.ts → dist/utils/url.js} +5 -4
  213. package/dist/utils/user-config.d.ts +2055 -0
  214. package/dist/utils/user-config.js +136 -0
  215. package/dist/utils/validateLogoImports.d.ts +5 -0
  216. package/dist/utils/validateLogoImports.js +16 -0
  217. package/dist/utils/zodDeepMerge.d.ts +16 -0
  218. package/dist/utils/zodDeepMerge.js +53 -0
  219. package/package.json +60 -34
  220. package/CHANGELOG.md +0 -3051
  221. package/components/MobileMenuToggle.astro +0 -114
  222. package/components-internals/Icons.ts +0 -248
  223. package/components-internals/SidebarPersistState.ts +0 -71
  224. package/components-internals/TableOfContents/starlight-toc.ts +0 -127
  225. package/constants.ts +0 -4
  226. package/expressive-code.mjs +0 -23
  227. package/global.d.ts +0 -11
  228. package/i18n.d.ts +0 -18
  229. package/index.ts +0 -200
  230. package/integrations/aside-utils.ts +0 -41
  231. package/integrations/expressive-code/hast.d.ts +0 -5
  232. package/integrations/expressive-code/hast.mjs +0 -9
  233. package/integrations/expressive-code/index.ts +0 -125
  234. package/integrations/expressive-code/preprocessor.ts +0 -126
  235. package/integrations/expressive-code/themes/night-owl-dark.jsonc +0 -1796
  236. package/integrations/expressive-code/themes/night-owl-light.jsonc +0 -1695
  237. package/integrations/expressive-code/theming.ts +0 -105
  238. package/integrations/expressive-code/translations.ts +0 -36
  239. package/integrations/markdown-icon.ts +0 -13
  240. package/integrations/markdown-plugins.ts +0 -71
  241. package/integrations/markdown-processor.ts +0 -64
  242. package/integrations/pagefind.ts +0 -60
  243. package/integrations/rehype-code-rtl-support.ts +0 -37
  244. package/integrations/rehype-heading-links.ts +0 -79
  245. package/integrations/remark-asides.ts +0 -219
  246. package/integrations/remark-rehype.ts +0 -87
  247. package/integrations/satteri.ts +0 -265
  248. package/integrations/shared/absolutePathToLang.ts +0 -26
  249. package/integrations/shared/localeToLang.ts +0 -15
  250. package/integrations/shared/slugToLocale.ts +0 -18
  251. package/integrations/sitemap.ts +0 -23
  252. package/integrations/vite-layer-order.ts +0 -69
  253. package/integrations/vite-lazy-barrel-optimization.ts +0 -40
  254. package/integrations/vite-virtual-modules.ts +0 -175
  255. package/internal.ts +0 -6
  256. package/loaders.ts +0 -63
  257. package/locals.d.ts +0 -43
  258. package/locals.ts +0 -43
  259. package/route-data.ts +0 -11
  260. package/schema.ts +0 -167
  261. package/schemas/badge.ts +0 -40
  262. package/schemas/components.ts +0 -265
  263. package/schemas/expressiveCode.ts +0 -12
  264. package/schemas/favicon.ts +0 -40
  265. package/schemas/head.ts +0 -50
  266. package/schemas/hero.ts +0 -69
  267. package/schemas/i18n.ts +0 -244
  268. package/schemas/icon.ts +0 -7
  269. package/schemas/logo.ts +0 -28
  270. package/schemas/pagefind.ts +0 -128
  271. package/schemas/prevNextLink.ts +0 -18
  272. package/schemas/sidebar.ts +0 -163
  273. package/schemas/site-title.ts +0 -20
  274. package/schemas/social.ts +0 -23
  275. package/schemas/tableOfContents.ts +0 -21
  276. package/translations/README.md +0 -14
  277. package/translations/ar.json +0 -33
  278. package/translations/ca.json +0 -43
  279. package/translations/cs.json +0 -43
  280. package/translations/da.json +0 -30
  281. package/translations/de.json +0 -30
  282. package/translations/el.json +0 -30
  283. package/translations/en.json +0 -30
  284. package/translations/es.json +0 -43
  285. package/translations/fa.json +0 -30
  286. package/translations/fi.json +0 -30
  287. package/translations/fr.json +0 -33
  288. package/translations/gl.json +0 -43
  289. package/translations/he.json +0 -30
  290. package/translations/hi.json +0 -33
  291. package/translations/hu.json +0 -43
  292. package/translations/id.json +0 -30
  293. package/translations/index.ts +0 -76
  294. package/translations/it.json +0 -33
  295. package/translations/ja.json +0 -33
  296. package/translations/ko.json +0 -33
  297. package/translations/lv.json +0 -30
  298. package/translations/nb.json +0 -30
  299. package/translations/nl.json +0 -30
  300. package/translations/pl.json +0 -33
  301. package/translations/pt.json +0 -33
  302. package/translations/ro.json +0 -30
  303. package/translations/ru.json +0 -33
  304. package/translations/sk.json +0 -30
  305. package/translations/sv.json +0 -30
  306. package/translations/th.json +0 -30
  307. package/translations/tr.json +0 -30
  308. package/translations/uk.json +0 -30
  309. package/translations/vi.json +0 -30
  310. package/translations/zh-CN.json +0 -33
  311. package/translations/zh-TW.json +0 -33
  312. package/types.ts +0 -7
  313. package/user-components/file-tree-icons.ts +0 -782
  314. package/user-components/rehype-file-tree.ts +0 -251
  315. package/user-components/rehype-steps.ts +0 -85
  316. package/user-components/rehype-tabs.ts +0 -121
  317. package/utils/base.ts +0 -15
  318. package/utils/canonical.ts +0 -19
  319. package/utils/collection-fs.ts +0 -20
  320. package/utils/createPathFormatter.ts +0 -60
  321. package/utils/createTranslationSystem.ts +0 -137
  322. package/utils/error-map.ts +0 -222
  323. package/utils/format-path.ts +0 -7
  324. package/utils/generateToC.ts +0 -33
  325. package/utils/git.ts +0 -121
  326. package/utils/gitInlined.ts +0 -20
  327. package/utils/head.ts +0 -235
  328. package/utils/i18n.ts +0 -221
  329. package/utils/localizedUrl.ts +0 -51
  330. package/utils/navigation.ts +0 -574
  331. package/utils/path.ts +0 -58
  332. package/utils/plugins.ts +0 -498
  333. package/utils/routing/data.ts +0 -154
  334. package/utils/routing/index.ts +0 -139
  335. package/utils/routing/middleware.ts +0 -81
  336. package/utils/routing/types.ts +0 -101
  337. package/utils/slugs.ts +0 -119
  338. package/utils/starlight-page.ts +0 -205
  339. package/utils/translations-fs.ts +0 -54
  340. package/utils/translations.ts +0 -57
  341. package/utils/types.ts +0 -15
  342. package/utils/user-config.ts +0 -348
  343. package/utils/validateLogoImports.ts +0 -21
  344. package/utils/zodDeepMerge.ts +0 -144
  345. package/virtual-internal.d.ts +0 -149
  346. package/virtual.d.ts +0 -27
  347. /package/{components → dist/components}/AnchorHeading.astro +0 -0
  348. /package/{components → dist/components}/Banner.astro +0 -0
  349. /package/{components → dist/components}/ContentNotice.astro +0 -0
  350. /package/{components → dist/components}/ContentPanel.astro +0 -0
  351. /package/{components → dist/components}/DraftContentNotice.astro +0 -0
  352. /package/{components → dist/components}/EditLink.astro +0 -0
  353. /package/{components → dist/components}/FallbackContentNotice.astro +0 -0
  354. /package/{components → dist/components}/Footer.astro +0 -0
  355. /package/{components → dist/components}/Head.astro +0 -0
  356. /package/{components → dist/components}/Header.astro +0 -0
  357. /package/{components → dist/components}/Hero.astro +0 -0
  358. /package/{components → dist/components}/LanguageSelect.astro +0 -0
  359. /package/{components → dist/components}/LastUpdated.astro +0 -0
  360. /package/{components → dist/components}/MarkdownContent.astro +0 -0
  361. /package/{components → dist/components}/MobileMenuFooter.astro +0 -0
  362. /package/{components → dist/components}/MobileTableOfContents.astro +0 -0
  363. /package/{components → dist/components}/Page.astro +0 -0
  364. /package/{components → dist/components}/PageSidebar.astro +0 -0
  365. /package/{components → dist/components}/PageTitle.astro +0 -0
  366. /package/{components → dist/components}/Pagination.astro +0 -0
  367. /package/{components → dist/components}/Search.astro +0 -0
  368. /package/{components → dist/components}/Select.astro +0 -0
  369. /package/{components → dist/components}/Sidebar.astro +0 -0
  370. /package/{components → dist/components}/SidebarPersister.astro +0 -0
  371. /package/{components → dist/components}/SidebarRestorePoint.astro +0 -0
  372. /package/{components → dist/components}/SidebarSublist.astro +0 -0
  373. /package/{components → dist/components}/SiteTitle.astro +0 -0
  374. /package/{components → dist/components}/SkipLink.astro +0 -0
  375. /package/{components → dist/components}/SocialIcons.astro +0 -0
  376. /package/{components → dist/components}/StarlightPage.astro +0 -0
  377. /package/{components → dist/components}/TableOfContents.astro +0 -0
  378. /package/{components → dist/components}/ThemeProvider.astro +0 -0
  379. /package/{components → dist/components}/ThemeSelect.astro +0 -0
  380. /package/{components → dist/components}/TwoColumnContent.astro +0 -0
  381. /package/{components-internals → dist/components-internals}/TableOfContents/TableOfContentsList.astro +0 -0
  382. /package/{components.ts → dist/components.ts} +0 -0
  383. /package/{routes → dist/routes}/common.astro +0 -0
  384. /package/{routes → dist/routes}/ssr/404.astro +0 -0
  385. /package/{routes → dist/routes}/ssr/index.astro +0 -0
  386. /package/{routes → dist/routes}/static/404.astro +0 -0
  387. /package/{routes → dist/routes}/static/index.astro +0 -0
  388. /package/{style → dist/style}/anchor-links.css +0 -0
  389. /package/{style → dist/style}/asides.css +0 -0
  390. /package/{style → dist/style}/layers.css +0 -0
  391. /package/{style → dist/style}/markdown.css +0 -0
  392. /package/{style → dist/style}/print.css +0 -0
  393. /package/{style → dist/style}/props.css +0 -0
  394. /package/{style → dist/style}/reset.css +0 -0
  395. /package/{style → dist/style}/util.css +0 -0
  396. /package/{user-components → dist/user-components}/Aside.astro +0 -0
  397. /package/{user-components → dist/user-components}/Badge.astro +0 -0
  398. /package/{user-components → dist/user-components}/Card.astro +0 -0
  399. /package/{user-components → dist/user-components}/CardGrid.astro +0 -0
  400. /package/{user-components → dist/user-components}/Icon.astro +0 -0
  401. /package/{user-components → dist/user-components}/LinkButton.astro +0 -0
  402. /package/{user-components → dist/user-components}/LinkCard.astro +0 -0
@@ -1,1695 +0,0 @@
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
- }