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