@depup/react-email 5.2.10-depup.1 → 6.9.0-depup.1

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 (404) hide show
  1. package/CHANGELOG.md +313 -0
  2. package/README.md +11 -10
  3. package/changes.json +21 -17
  4. package/dev/CHANGELOG.md +2 -0
  5. package/dev/index.js +1 -1
  6. package/dev/package.json +1 -1
  7. package/dist/_virtual/_rolldown/runtime.cjs +23 -0
  8. package/dist/cli/index.mjs +7801 -0
  9. package/dist/components/body/body.cjs +39 -0
  10. package/dist/components/body/body.d.cts +7 -0
  11. package/dist/components/body/body.d.mts +7 -0
  12. package/dist/components/body/body.mjs +37 -0
  13. package/dist/components/body/index.d.cts +1 -0
  14. package/dist/components/body/index.d.mts +1 -0
  15. package/dist/components/body/margin-properties.cjs +30 -0
  16. package/dist/components/body/margin-properties.mjs +29 -0
  17. package/dist/components/button/button.cjs +64 -0
  18. package/dist/components/button/button.d.cts +13 -0
  19. package/dist/components/button/button.d.mts +13 -0
  20. package/dist/components/button/button.mjs +62 -0
  21. package/dist/components/button/index.d.cts +1 -0
  22. package/dist/components/button/index.d.mts +1 -0
  23. package/dist/components/button/utils/parse-padding.cjs +90 -0
  24. package/dist/components/button/utils/parse-padding.mjs +90 -0
  25. package/dist/components/button/utils/px-to-pt.cjs +4 -0
  26. package/dist/components/button/utils/px-to-pt.mjs +4 -0
  27. package/dist/components/code-block/code-block.cjs +79 -0
  28. package/dist/components/code-block/code-block.d.cts +20 -0
  29. package/dist/components/code-block/code-block.d.mts +20 -0
  30. package/dist/components/code-block/code-block.mjs +77 -0
  31. package/dist/components/code-block/index.d.cts +3 -0
  32. package/dist/components/code-block/index.d.mts +3 -0
  33. package/dist/components/code-block/languages-available.d.cts +4 -0
  34. package/dist/components/code-block/languages-available.d.mts +4 -0
  35. package/dist/components/code-block/prism.cjs +14564 -0
  36. package/dist/components/code-block/prism.mjs +14562 -0
  37. package/dist/components/code-block/themes.cjs +2578 -0
  38. package/dist/components/code-block/themes.d.cts +4877 -0
  39. package/dist/components/code-block/themes.d.mts +4877 -0
  40. package/dist/components/code-block/themes.mjs +2541 -0
  41. package/dist/components/code-inline/code-inline.cjs +43 -0
  42. package/dist/components/code-inline/code-inline.d.cts +12 -0
  43. package/dist/components/code-inline/code-inline.d.mts +12 -0
  44. package/dist/components/code-inline/code-inline.mjs +41 -0
  45. package/dist/components/code-inline/index.d.cts +1 -0
  46. package/dist/components/code-inline/index.d.mts +1 -0
  47. package/dist/components/column/column.cjs +19 -0
  48. package/dist/components/column/column.d.cts +7 -0
  49. package/dist/components/column/column.d.mts +7 -0
  50. package/dist/components/column/column.mjs +17 -0
  51. package/dist/components/column/index.d.cts +1 -0
  52. package/dist/components/column/index.d.mts +1 -0
  53. package/dist/components/container/container.cjs +42 -0
  54. package/dist/components/container/container.d.cts +7 -0
  55. package/dist/components/container/container.d.mts +7 -0
  56. package/dist/components/container/container.mjs +40 -0
  57. package/dist/components/container/index.d.cts +1 -0
  58. package/dist/components/container/index.d.mts +1 -0
  59. package/dist/components/element-marker.cjs +8 -0
  60. package/dist/components/element-marker.mjs +7 -0
  61. package/dist/components/font/font.cjs +22 -0
  62. package/dist/components/font/font.d.cts +26 -0
  63. package/dist/components/font/font.d.mts +26 -0
  64. package/dist/components/font/font.mjs +21 -0
  65. package/dist/components/font/index.d.cts +1 -0
  66. package/dist/components/font/index.d.mts +1 -0
  67. package/dist/components/head/head.cjs +20 -0
  68. package/dist/components/head/head.d.cts +7 -0
  69. package/dist/components/head/head.d.mts +7 -0
  70. package/dist/components/head/head.mjs +18 -0
  71. package/dist/components/head/index.d.cts +1 -0
  72. package/dist/components/head/index.d.mts +1 -0
  73. package/dist/components/heading/heading.cjs +30 -0
  74. package/dist/components/heading/heading.d.cts +22 -0
  75. package/dist/components/heading/heading.d.mts +22 -0
  76. package/dist/components/heading/heading.mjs +28 -0
  77. package/dist/components/heading/index.d.cts +1 -0
  78. package/dist/components/heading/index.d.mts +1 -0
  79. package/dist/components/heading/utils/as.d.cts +16 -0
  80. package/dist/components/heading/utils/as.d.mts +16 -0
  81. package/dist/components/heading/utils/spaces.cjs +24 -0
  82. package/dist/components/heading/utils/spaces.d.cts +14 -0
  83. package/dist/components/heading/utils/spaces.d.mts +14 -0
  84. package/dist/components/heading/utils/spaces.mjs +24 -0
  85. package/dist/components/hr/hr.cjs +21 -0
  86. package/dist/components/hr/hr.d.cts +7 -0
  87. package/dist/components/hr/hr.d.mts +7 -0
  88. package/dist/components/hr/hr.mjs +19 -0
  89. package/dist/components/hr/index.d.cts +1 -0
  90. package/dist/components/hr/index.d.mts +1 -0
  91. package/dist/components/html/html.cjs +15 -0
  92. package/dist/components/html/html.d.cts +7 -0
  93. package/dist/components/html/html.d.mts +7 -0
  94. package/dist/components/html/html.mjs +13 -0
  95. package/dist/components/html/index.d.cts +1 -0
  96. package/dist/components/html/index.d.mts +1 -0
  97. package/dist/components/img/img.cjs +25 -0
  98. package/dist/components/img/img.d.cts +7 -0
  99. package/dist/components/img/img.d.mts +7 -0
  100. package/dist/components/img/img.mjs +23 -0
  101. package/dist/components/img/index.d.cts +1 -0
  102. package/dist/components/img/index.d.mts +1 -0
  103. package/dist/components/index.d.cts +24 -0
  104. package/dist/components/index.d.mts +24 -0
  105. package/dist/components/link/index.d.cts +1 -0
  106. package/dist/components/link/index.d.mts +1 -0
  107. package/dist/components/link/link.cjs +21 -0
  108. package/dist/components/link/link.d.cts +7 -0
  109. package/dist/components/link/link.d.mts +7 -0
  110. package/dist/components/link/link.mjs +19 -0
  111. package/dist/components/markdown/index.d.cts +1 -0
  112. package/dist/components/markdown/index.d.mts +1 -0
  113. package/dist/components/markdown/markdown.cjs +101 -0
  114. package/dist/components/markdown/markdown.d.cts +16 -0
  115. package/dist/components/markdown/markdown.d.mts +16 -0
  116. package/dist/components/markdown/markdown.mjs +99 -0
  117. package/dist/components/markdown/styles.cjs +92 -0
  118. package/dist/components/markdown/styles.d.cts +31 -0
  119. package/dist/components/markdown/styles.d.mts +31 -0
  120. package/dist/components/markdown/styles.mjs +92 -0
  121. package/dist/components/markdown/utils/parse-css-in-js-to-inline-css.cjs +60 -0
  122. package/dist/components/markdown/utils/parse-css-in-js-to-inline-css.mjs +60 -0
  123. package/dist/components/preview/index.d.cts +1 -0
  124. package/dist/components/preview/index.d.mts +1 -0
  125. package/dist/components/preview/preview.cjs +34 -0
  126. package/dist/components/preview/preview.d.cts +21 -0
  127. package/dist/components/preview/preview.d.mts +21 -0
  128. package/dist/components/preview/preview.mjs +31 -0
  129. package/dist/components/row/index.d.cts +1 -0
  130. package/dist/components/row/index.d.mts +1 -0
  131. package/dist/components/row/row.cjs +30 -0
  132. package/dist/components/row/row.d.cts +11 -0
  133. package/dist/components/row/row.d.mts +11 -0
  134. package/dist/components/row/row.mjs +28 -0
  135. package/dist/components/section/index.d.cts +1 -0
  136. package/dist/components/section/index.d.mts +1 -0
  137. package/dist/components/section/section.cjs +36 -0
  138. package/dist/components/section/section.d.cts +7 -0
  139. package/dist/components/section/section.d.mts +7 -0
  140. package/dist/components/section/section.mjs +34 -0
  141. package/dist/components/tailwind/hooks/use-suspended-promise.cjs +15 -0
  142. package/dist/components/tailwind/hooks/use-suspended-promise.mjs +15 -0
  143. package/dist/components/tailwind/index.d.cts +4 -0
  144. package/dist/components/tailwind/index.d.mts +4 -0
  145. package/dist/components/tailwind/inline-styles.cjs +11 -0
  146. package/dist/components/tailwind/inline-styles.d.cts +6 -0
  147. package/dist/components/tailwind/inline-styles.d.mts +6 -0
  148. package/dist/components/tailwind/inline-styles.mjs +11 -0
  149. package/dist/components/tailwind/sanitize-stylesheet.cjs +11 -0
  150. package/dist/components/tailwind/sanitize-stylesheet.d.cts +6 -0
  151. package/dist/components/tailwind/sanitize-stylesheet.d.mts +6 -0
  152. package/dist/components/tailwind/sanitize-stylesheet.mjs +11 -0
  153. package/dist/components/tailwind/tailwind.cjs +120 -0
  154. package/dist/components/tailwind/tailwind.d.cts +25 -0
  155. package/dist/components/tailwind/tailwind.d.mts +25 -0
  156. package/dist/components/tailwind/tailwind.mjs +117 -0
  157. package/dist/components/tailwind/utils/compatibility/get-react-property.cjs +10 -0
  158. package/dist/components/tailwind/utils/compatibility/get-react-property.mjs +10 -0
  159. package/dist/components/tailwind/utils/compatibility/sanitize-class-name.cjs +26 -0
  160. package/dist/components/tailwind/utils/compatibility/sanitize-class-name.mjs +26 -0
  161. package/dist/components/tailwind/utils/css/downlevel-for-email-clients.cjs +126 -0
  162. package/dist/components/tailwind/utils/css/downlevel-for-email-clients.mjs +125 -0
  163. package/dist/components/tailwind/utils/css/extract-rules-per-class.cjs +45 -0
  164. package/dist/components/tailwind/utils/css/extract-rules-per-class.mjs +44 -0
  165. package/dist/components/tailwind/utils/css/get-custom-properties.cjs +35 -0
  166. package/dist/components/tailwind/utils/css/get-custom-properties.mjs +34 -0
  167. package/dist/components/tailwind/utils/css/is-part-inlinable.cjs +10 -0
  168. package/dist/components/tailwind/utils/css/is-part-inlinable.mjs +9 -0
  169. package/dist/components/tailwind/utils/css/is-rule-inlinable.cjs +10 -0
  170. package/dist/components/tailwind/utils/css/is-rule-inlinable.mjs +9 -0
  171. package/dist/components/tailwind/utils/css/make-inline-styles-for.cjs +52 -0
  172. package/dist/components/tailwind/utils/css/make-inline-styles-for.mjs +51 -0
  173. package/dist/components/tailwind/utils/css/resolve-all-css-variables.cjs +89 -0
  174. package/dist/components/tailwind/utils/css/resolve-all-css-variables.mjs +88 -0
  175. package/dist/components/tailwind/utils/css/resolve-calc-expressions.cjs +92 -0
  176. package/dist/components/tailwind/utils/css/resolve-calc-expressions.mjs +91 -0
  177. package/dist/components/tailwind/utils/css/sanitize-declarations.cjs +310 -0
  178. package/dist/components/tailwind/utils/css/sanitize-declarations.mjs +309 -0
  179. package/dist/components/tailwind/utils/css/sanitize-non-inlinable-rules.cjs +46 -0
  180. package/dist/components/tailwind/utils/css/sanitize-non-inlinable-rules.mjs +45 -0
  181. package/dist/components/tailwind/utils/css/split-mixed-rule.cjs +41 -0
  182. package/dist/components/tailwind/utils/css/split-mixed-rule.mjs +40 -0
  183. package/dist/components/tailwind/utils/css/strip-empty-tailwind-vars.cjs +52 -0
  184. package/dist/components/tailwind/utils/css/strip-empty-tailwind-vars.mjs +51 -0
  185. package/dist/components/tailwind/utils/css/unwrap-value.cjs +7 -0
  186. package/dist/components/tailwind/utils/css/unwrap-value.mjs +7 -0
  187. package/dist/components/tailwind/utils/react/is-component.cjs +7 -0
  188. package/dist/components/tailwind/utils/react/is-component.mjs +7 -0
  189. package/dist/components/tailwind/utils/react/map-react-tree.cjs +32 -0
  190. package/dist/components/tailwind/utils/react/map-react-tree.mjs +30 -0
  191. package/dist/components/tailwind/utils/tailwindcss/clone-element-with-inlined-styles.cjs +37 -0
  192. package/dist/components/tailwind/utils/tailwindcss/clone-element-with-inlined-styles.mjs +35 -0
  193. package/dist/components/tailwind/utils/tailwindcss/setup-tailwind.cjs +77 -0
  194. package/dist/components/tailwind/utils/tailwindcss/setup-tailwind.d.cts +19 -0
  195. package/dist/components/tailwind/utils/tailwindcss/setup-tailwind.d.mts +19 -0
  196. package/dist/components/tailwind/utils/tailwindcss/setup-tailwind.mjs +76 -0
  197. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/index.cjs +901 -0
  198. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/index.mjs +901 -0
  199. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/preflight.cjs +398 -0
  200. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/preflight.mjs +398 -0
  201. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/theme.cjs +467 -0
  202. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/theme.mjs +467 -0
  203. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/utilities.cjs +6 -0
  204. package/dist/components/tailwind/utils/tailwindcss/tailwind-stylesheets/utilities.mjs +6 -0
  205. package/dist/components/tailwind/utils/text/from-dash-case-to-camel-case.cjs +6 -0
  206. package/dist/components/tailwind/utils/text/from-dash-case-to-camel-case.mjs +6 -0
  207. package/dist/components/text/index.d.cts +1 -0
  208. package/dist/components/text/index.d.mts +1 -0
  209. package/dist/components/text/text.cjs +43 -0
  210. package/dist/components/text/text.d.cts +7 -0
  211. package/dist/components/text/text.d.mts +7 -0
  212. package/dist/components/text/text.mjs +41 -0
  213. package/dist/components/text/utils/compute-margins.cjs +62 -0
  214. package/dist/components/text/utils/compute-margins.mjs +62 -0
  215. package/dist/index.cjs +95 -0
  216. package/dist/index.d.cts +26 -0
  217. package/dist/index.d.mts +26 -0
  218. package/dist/index.mjs +25 -7326
  219. package/package.json +64 -32
  220. package/src/components/body/__snapshots__/body.spec.tsx.snap +23 -0
  221. package/src/components/body/body.spec.tsx +78 -0
  222. package/src/components/body/body.tsx +62 -0
  223. package/src/components/body/index.ts +1 -0
  224. package/src/components/body/margin-properties.ts +27 -0
  225. package/src/components/button/button.spec.tsx +53 -0
  226. package/src/components/button/button.tsx +114 -0
  227. package/src/components/button/index.ts +1 -0
  228. package/src/components/button/utils/parse-padding.ts +137 -0
  229. package/src/components/button/utils/px-to-pt.ts +4 -0
  230. package/src/components/button/utils/utils.spec.ts +153 -0
  231. package/src/components/code-block/code-block.tsx +136 -0
  232. package/src/components/code-block/index.ts +3 -0
  233. package/src/components/code-block/languages-available.ts +402 -0
  234. package/src/components/code-block/prism.ts +15618 -0
  235. package/src/components/code-block/themes.ts +4929 -0
  236. package/src/components/code-inline/code-inline.tsx +60 -0
  237. package/src/components/code-inline/index.ts +1 -0
  238. package/src/components/column/column.spec.tsx +28 -0
  239. package/src/components/column/column.tsx +17 -0
  240. package/src/components/column/index.ts +1 -0
  241. package/src/components/container/container.spec.tsx +33 -0
  242. package/src/components/container/container.tsx +59 -0
  243. package/src/components/container/index.ts +1 -0
  244. package/src/components/element-marker.ts +5 -0
  245. package/src/components/font/font.spec.tsx +63 -0
  246. package/src/components/font/font.tsx +76 -0
  247. package/src/components/font/index.ts +1 -0
  248. package/src/components/head/head.spec.tsx +34 -0
  249. package/src/components/head/head.tsx +15 -0
  250. package/src/components/head/index.ts +1 -0
  251. package/src/components/heading/heading.spec.tsx +32 -0
  252. package/src/components/heading/heading.tsx +31 -0
  253. package/src/components/heading/index.ts +1 -0
  254. package/src/components/heading/utils/as.ts +26 -0
  255. package/src/components/heading/utils/spaces.ts +64 -0
  256. package/src/components/heading/utils/utils.spec.ts +70 -0
  257. package/src/components/hr/hr.spec.tsx +22 -0
  258. package/src/components/hr/hr.tsx +23 -0
  259. package/src/components/hr/index.ts +1 -0
  260. package/src/components/html/html.spec.tsx +26 -0
  261. package/src/components/html/html.tsx +13 -0
  262. package/src/components/html/index.ts +1 -0
  263. package/src/components/img/img.spec.tsx +30 -0
  264. package/src/components/img/img.tsx +27 -0
  265. package/src/components/img/index.ts +1 -0
  266. package/src/components/index.ts +19 -0
  267. package/src/components/link/index.ts +1 -0
  268. package/src/components/link/link.spec.tsx +37 -0
  269. package/src/components/link/link.tsx +24 -0
  270. package/src/components/markdown/index.ts +1 -0
  271. package/src/components/markdown/markdown.spec.tsx +221 -0
  272. package/src/components/markdown/markdown.tsx +239 -0
  273. package/src/components/markdown/styles.ts +130 -0
  274. package/src/components/markdown/utils/parse-css-in-js-to-inline-css.spec.ts +42 -0
  275. package/src/components/markdown/utils/parse-css-in-js-to-inline-css.ts +73 -0
  276. package/src/components/preview/index.ts +1 -0
  277. package/src/components/preview/preview.spec.tsx +49 -0
  278. package/src/components/preview/preview.tsx +56 -0
  279. package/src/components/row/index.ts +1 -0
  280. package/src/components/row/row.spec.tsx +28 -0
  281. package/src/components/row/row.tsx +33 -0
  282. package/src/components/section/index.ts +1 -0
  283. package/src/components/section/section.spec.tsx +58 -0
  284. package/src/components/section/section.tsx +59 -0
  285. package/src/components/tailwind/e2e/integrations.spec.ts +44 -0
  286. package/src/components/tailwind/e2e/nextjs/README.md +9 -0
  287. package/src/components/tailwind/e2e/nextjs/emails/vercel-invite-user.tsx +151 -0
  288. package/src/components/tailwind/e2e/nextjs/next.config.mjs +6 -0
  289. package/src/components/tailwind/e2e/nextjs/package.json +24 -0
  290. package/src/components/tailwind/e2e/nextjs/src/app/favicon.ico +0 -0
  291. package/src/components/tailwind/e2e/nextjs/src/app/layout.tsx +23 -0
  292. package/src/components/tailwind/e2e/nextjs/src/app/page.tsx +7 -0
  293. package/src/components/tailwind/e2e/nextjs/tsconfig.json +27 -0
  294. package/src/components/tailwind/e2e/vite/README.md +9 -0
  295. package/src/components/tailwind/e2e/vite/emails/vercel-invite-user.tsx +151 -0
  296. package/src/components/tailwind/e2e/vite/index.html +13 -0
  297. package/src/components/tailwind/e2e/vite/package.json +25 -0
  298. package/src/components/tailwind/e2e/vite/public/vite.svg +1 -0
  299. package/src/components/tailwind/e2e/vite/src/App.tsx +10 -0
  300. package/src/components/tailwind/e2e/vite/src/main.tsx +9 -0
  301. package/src/components/tailwind/e2e/vite/src/vite-env.d.ts +1 -0
  302. package/src/components/tailwind/e2e/vite/tsconfig.json +25 -0
  303. package/src/components/tailwind/e2e/vite/tsconfig.node.json +11 -0
  304. package/src/components/tailwind/e2e/vite/vite.config.ts +7 -0
  305. package/src/components/tailwind/hooks/use-suspended-promise.ts +34 -0
  306. package/src/components/tailwind/hooks/use-suspensed-promise.spec.ts +263 -0
  307. package/src/components/tailwind/index.ts +4 -0
  308. package/src/components/tailwind/inline-styles.spec.ts +49 -0
  309. package/src/components/tailwind/inline-styles.ts +21 -0
  310. package/src/components/tailwind/sanitize-stylesheet.ts +10 -0
  311. package/src/components/tailwind/tailwind.spec.tsx +1390 -0
  312. package/src/components/tailwind/tailwind.tsx +178 -0
  313. package/src/components/tailwind/utils/__snapshots__/quick-safe-render-to-string.spec.tsx.snap +3 -0
  314. package/src/components/tailwind/utils/compatibility/escape-class-name.spec.ts +17 -0
  315. package/src/components/tailwind/utils/compatibility/escape-class-name.ts +18 -0
  316. package/src/components/tailwind/utils/compatibility/get-react-property.ts +15 -0
  317. package/src/components/tailwind/utils/compatibility/sanitize-class-name.spec.ts +7 -0
  318. package/src/components/tailwind/utils/compatibility/sanitize-class-name.ts +36 -0
  319. package/src/components/tailwind/utils/compatibility/unescape-class.ts +3 -0
  320. package/src/components/tailwind/utils/css/__snapshots__/extract-rules-matching-classes.spec.ts.snap +23 -0
  321. package/src/components/tailwind/utils/css/__snapshots__/remove-rule-duplicates-from-root.spec.ts.snap +3 -0
  322. package/src/components/tailwind/utils/css/__snapshots__/sanitize-non-inlinable-classes.spec.ts.snap +7 -0
  323. package/src/components/tailwind/utils/css/downlevel-for-email-clients.spec.ts +119 -0
  324. package/src/components/tailwind/utils/css/downlevel-for-email-clients.ts +244 -0
  325. package/src/components/tailwind/utils/css/extract-rules-per-class.spec.ts +232 -0
  326. package/src/components/tailwind/utils/css/extract-rules-per-class.ts +76 -0
  327. package/src/components/tailwind/utils/css/get-custom-properties.ts +49 -0
  328. package/src/components/tailwind/utils/css/is-part-inlinable.ts +15 -0
  329. package/src/components/tailwind/utils/css/is-rule-inlinable.ts +15 -0
  330. package/src/components/tailwind/utils/css/make-inline-styles-for.spec.ts +124 -0
  331. package/src/components/tailwind/utils/css/make-inline-styles-for.ts +73 -0
  332. package/src/components/tailwind/utils/css/resolve-all-css-variables.spec.ts +296 -0
  333. package/src/components/tailwind/utils/css/resolve-all-css-variables.ts +236 -0
  334. package/src/components/tailwind/utils/css/resolve-calc-expressions.spec.ts +36 -0
  335. package/src/components/tailwind/utils/css/resolve-calc-expressions.ts +147 -0
  336. package/src/components/tailwind/utils/css/sanitize-declarations.spec.ts +491 -0
  337. package/src/components/tailwind/utils/css/sanitize-declarations.ts +443 -0
  338. package/src/components/tailwind/utils/css/sanitize-non-inlinable-rules.spec.ts +72 -0
  339. package/src/components/tailwind/utils/css/sanitize-non-inlinable-rules.ts +48 -0
  340. package/src/components/tailwind/utils/css/split-mixed-rule.ts +68 -0
  341. package/src/components/tailwind/utils/css/strip-empty-tailwind-vars.spec.ts +128 -0
  342. package/src/components/tailwind/utils/css/strip-empty-tailwind-vars.ts +70 -0
  343. package/src/components/tailwind/utils/css/unwrap-value.ts +9 -0
  344. package/src/components/tailwind/utils/react/is-component.ts +12 -0
  345. package/src/components/tailwind/utils/react/map-react-tree.spec.tsx +58 -0
  346. package/src/components/tailwind/utils/react/map-react-tree.ts +58 -0
  347. package/src/components/tailwind/utils/tailwindcss/clone-element-with-inlined-styles.ts +61 -0
  348. package/src/components/tailwind/utils/tailwindcss/setup-tailwind.spec.ts +25 -0
  349. package/src/components/tailwind/utils/tailwindcss/setup-tailwind.ts +121 -0
  350. package/src/components/tailwind/utils/tailwindcss/tailwind-stylesheets/index.ts +900 -0
  351. package/src/components/tailwind/utils/tailwindcss/tailwind-stylesheets/preflight.ts +397 -0
  352. package/src/components/tailwind/utils/tailwindcss/tailwind-stylesheets/theme.ts +466 -0
  353. package/src/components/tailwind/utils/tailwindcss/tailwind-stylesheets/utilities.ts +5 -0
  354. package/src/components/tailwind/utils/text/from-dash-case-to-camel-case.ts +3 -0
  355. package/src/components/text/index.ts +1 -0
  356. package/src/components/text/text.spec.tsx +35 -0
  357. package/src/components/text/text.tsx +50 -0
  358. package/src/components/text/utils/compute-margins.spec.ts +67 -0
  359. package/src/components/text/utils/compute-margins.ts +102 -0
  360. package/src/index.ts +2 -110
  361. package/tsconfig.json +9 -4
  362. package/tsdown.config.ts +51 -6
  363. package/vitest.config.ts +1 -0
  364. package/vitest.e2e.config.ts +17 -0
  365. package/src/commands/build.ts +0 -269
  366. package/src/commands/dev.ts +0 -27
  367. package/src/commands/export.ts +0 -204
  368. package/src/commands/resend/reset.ts +0 -8
  369. package/src/commands/resend/setup.ts +0 -29
  370. package/src/commands/start.ts +0 -38
  371. package/src/utils/conf.ts +0 -9
  372. package/src/utils/esbuild/escape-string-for-regex.ts +0 -3
  373. package/src/utils/esbuild/renderring-utilities-exporter.ts +0 -63
  374. package/src/utils/get-emails-directory-metadata.spec.ts +0 -82
  375. package/src/utils/get-emails-directory-metadata.ts +0 -140
  376. package/src/utils/get-preview-server-location.ts +0 -50
  377. package/src/utils/index.ts +0 -2
  378. package/src/utils/packageJson.ts +0 -4
  379. package/src/utils/preview/get-env-variables-for-preview-app.ts +0 -20
  380. package/src/utils/preview/hot-reloading/create-dependency-graph.spec.ts +0 -226
  381. package/src/utils/preview/hot-reloading/create-dependency-graph.ts +0 -343
  382. package/src/utils/preview/hot-reloading/get-imported-modules.spec.ts +0 -151
  383. package/src/utils/preview/hot-reloading/get-imported-modules.ts +0 -49
  384. package/src/utils/preview/hot-reloading/resolve-path-aliases.spec.ts +0 -11
  385. package/src/utils/preview/hot-reloading/resolve-path-aliases.ts +0 -32
  386. package/src/utils/preview/hot-reloading/setup-hot-reloading.ts +0 -121
  387. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/data-to-import.json +0 -1
  388. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/file-a.ts +0 -5
  389. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/file-b.ts +0 -5
  390. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/general-importing-file.ts +0 -9
  391. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/outer-dependency.ts +0 -3
  392. package/src/utils/preview/hot-reloading/test/dependency-graph/inner/path-aliases.ts +0 -1
  393. package/src/utils/preview/hot-reloading/test/dependency-graph/outer.ts +0 -5
  394. package/src/utils/preview/hot-reloading/test/some-file.ts +0 -0
  395. package/src/utils/preview/hot-reloading/test/tsconfig.json +0 -8
  396. package/src/utils/preview/index.ts +0 -2
  397. package/src/utils/preview/serve-static-file.ts +0 -51
  398. package/src/utils/preview/start-dev-server.ts +0 -252
  399. package/src/utils/register-spinner-autostopping.ts +0 -28
  400. package/src/utils/style-text.ts +0 -11
  401. package/src/utils/tree.spec.ts +0 -29
  402. package/src/utils/tree.ts +0 -76
  403. package/src/utils/types/hot-reload-change.ts +0 -6
  404. package/src/utils/types/hot-reload-event.ts +0 -3
@@ -0,0 +1,4929 @@
1
+ import type Prism from 'prismjs';
2
+ import type React from 'react';
3
+
4
+ export type Theme = Record<
5
+ string | 'base' | keyof Prism.Grammar,
6
+ React.CSSProperties
7
+ >;
8
+
9
+ export const xonokai = {
10
+ base: {
11
+ MozTabSize: '2',
12
+ OTabSize: '2',
13
+ tabSize: '2',
14
+ WebkitHyphens: 'none',
15
+ MozHyphens: 'none',
16
+ hyphens: 'none',
17
+ whiteSpace: 'pre-wrap',
18
+ wordWrap: 'normal',
19
+ fontFamily: 'Menlo, Monaco, "Courier New", monospace',
20
+ fontSize: '14px',
21
+ color: '#76d9e6',
22
+ textShadow: 'none',
23
+ background: '#2a2a2a',
24
+ padding: '15px',
25
+ borderRadius: '4px',
26
+ border: '1px solid #e1e1e8',
27
+ overflow: 'auto',
28
+ position: 'relative',
29
+ },
30
+ namespace: {
31
+ opacity: '.7',
32
+ },
33
+ comment: {
34
+ color: '#6f705e',
35
+ },
36
+ prolog: {
37
+ color: '#6f705e',
38
+ },
39
+ doctype: {
40
+ color: '#6f705e',
41
+ },
42
+ cdata: {
43
+ color: '#6f705e',
44
+ },
45
+ operator: {
46
+ color: '#a77afe',
47
+ },
48
+ boolean: {
49
+ color: '#a77afe',
50
+ },
51
+ number: {
52
+ color: '#a77afe',
53
+ },
54
+ 'attr-name': {
55
+ color: '#e6d06c',
56
+ },
57
+ string: {
58
+ color: '#e6d06c',
59
+ },
60
+ entity: {
61
+ color: '#e6d06c',
62
+ cursor: 'help',
63
+ },
64
+ url: {
65
+ color: '#e6d06c',
66
+ },
67
+ selector: {
68
+ color: '#a6e22d',
69
+ },
70
+ inserted: {
71
+ color: '#a6e22d',
72
+ },
73
+ atrule: {
74
+ color: '#ef3b7d',
75
+ },
76
+ 'attr-value': {
77
+ color: '#ef3b7d',
78
+ },
79
+ keyword: {
80
+ color: '#ef3b7d',
81
+ },
82
+ important: {
83
+ color: '#ef3b7d',
84
+ fontWeight: 'bold',
85
+ },
86
+ deleted: {
87
+ color: '#ef3b7d',
88
+ },
89
+ regex: {
90
+ color: '#76d9e6',
91
+ },
92
+ statement: {
93
+ color: '#76d9e6',
94
+ fontWeight: 'bold',
95
+ },
96
+ placeholder: {
97
+ color: '#fff',
98
+ },
99
+ variable: {
100
+ color: '#fff',
101
+ },
102
+ bold: {
103
+ fontWeight: 'bold',
104
+ },
105
+ punctuation: {
106
+ color: '#bebec5',
107
+ },
108
+ italic: {
109
+ fontStyle: 'italic',
110
+ },
111
+ } as const;
112
+
113
+ export const vscDarkPlus = {
114
+ base: {
115
+ color: '#d4d4d4',
116
+ fontSize: '13px',
117
+ textShadow: 'none',
118
+ fontFamily:
119
+ 'Menlo, Monaco, Consolas, "Andale Mono", "Ubuntu Mono", "Courier New", monospace',
120
+ direction: 'ltr',
121
+ textAlign: 'left',
122
+ whiteSpace: 'pre',
123
+ wordSpacing: 'normal',
124
+ wordBreak: 'normal',
125
+ lineHeight: '1.5',
126
+ MozTabSize: '4',
127
+ OTabSize: '4',
128
+ tabSize: '4',
129
+ WebkitHyphens: 'none',
130
+ MozHyphens: 'none',
131
+ hyphens: 'none',
132
+ padding: '1em',
133
+ margin: '.5em 0',
134
+ overflow: 'auto',
135
+ background: '#1e1e1e',
136
+ },
137
+ 'doctype .token.doctype-tag': {
138
+ color: '#569CD6',
139
+ },
140
+ 'doctype .token.name': {
141
+ color: '#9cdcfe',
142
+ },
143
+ comment: {
144
+ color: '#6a9955',
145
+ },
146
+ prolog: {
147
+ color: '#6a9955',
148
+ },
149
+ punctuation: {
150
+ color: '#d4d4d4',
151
+ },
152
+ property: {
153
+ color: '#9cdcfe',
154
+ },
155
+ tag: {
156
+ color: '#569cd6',
157
+ },
158
+ boolean: {
159
+ color: '#569cd6',
160
+ },
161
+ number: {
162
+ color: '#b5cea8',
163
+ },
164
+ constant: {
165
+ color: '#9cdcfe',
166
+ },
167
+ symbol: {
168
+ color: '#b5cea8',
169
+ },
170
+ inserted: {
171
+ color: '#b5cea8',
172
+ },
173
+ unit: {
174
+ color: '#b5cea8',
175
+ },
176
+ selector: {
177
+ color: '#d7ba7d',
178
+ },
179
+ 'attr-name': {
180
+ color: '#9cdcfe',
181
+ },
182
+ string: {
183
+ color: '#ce9178',
184
+ },
185
+ char: {
186
+ color: '#ce9178',
187
+ },
188
+ builtin: {
189
+ color: '#ce9178',
190
+ },
191
+ deleted: {
192
+ color: '#ce9178',
193
+ },
194
+ operator: {
195
+ color: '#d4d4d4',
196
+ },
197
+ entity: {
198
+ color: '#569cd6',
199
+ },
200
+ 'operator.arrow': {
201
+ color: '#569CD6',
202
+ },
203
+ atrule: {
204
+ color: '#ce9178',
205
+ },
206
+ 'atrule .token.rule': {
207
+ color: '#c586c0',
208
+ },
209
+ 'atrule .token.url': {
210
+ color: '#9cdcfe',
211
+ },
212
+ 'atrule .token.url .token.function': {
213
+ color: '#dcdcaa',
214
+ },
215
+ 'atrule .token.url .token.punctuation': {
216
+ color: '#d4d4d4',
217
+ },
218
+ keyword: {
219
+ color: '#569CD6',
220
+ },
221
+ 'keyword.module': {
222
+ color: '#c586c0',
223
+ },
224
+ 'keyword.control-flow': {
225
+ color: '#c586c0',
226
+ },
227
+ function: {
228
+ color: '#dcdcaa',
229
+ },
230
+ 'function .token.maybe-class-name': {
231
+ color: '#dcdcaa',
232
+ },
233
+ regex: {
234
+ color: '#d16969',
235
+ },
236
+ important: {
237
+ color: '#569cd6',
238
+ },
239
+ italic: {
240
+ fontStyle: 'italic',
241
+ },
242
+ 'class-name': {
243
+ color: '#4ec9b0',
244
+ },
245
+ 'maybe-class-name': {
246
+ color: '#4ec9b0',
247
+ },
248
+ console: {
249
+ color: '#9cdcfe',
250
+ },
251
+ parameter: {
252
+ color: '#9cdcfe',
253
+ },
254
+ interpolation: {
255
+ color: '#9cdcfe',
256
+ },
257
+ 'punctuation.interpolation-punctuation': {
258
+ color: '#569cd6',
259
+ },
260
+ variable: {
261
+ color: '#9cdcfe',
262
+ },
263
+ 'imports .token.maybe-class-name': {
264
+ color: '#9cdcfe',
265
+ },
266
+ 'exports .token.maybe-class-name': {
267
+ color: '#9cdcfe',
268
+ },
269
+ escape: {
270
+ color: '#d7ba7d',
271
+ },
272
+ 'tag .token.punctuation': {
273
+ color: '#808080',
274
+ },
275
+ cdata: {
276
+ color: '#808080',
277
+ },
278
+ 'attr-value': {
279
+ color: '#ce9178',
280
+ },
281
+ 'attr-value .token.punctuation': {
282
+ color: '#ce9178',
283
+ },
284
+ 'attr-value .token.punctuation.attr-equals': {
285
+ color: '#d4d4d4',
286
+ },
287
+ namespace: {
288
+ color: '#4ec9b0',
289
+ },
290
+ } as const;
291
+ export const duotoneForest = {
292
+ base: {
293
+ fontFamily:
294
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
295
+ fontSize: '14px',
296
+ lineHeight: '1.375',
297
+ direction: 'ltr',
298
+ textAlign: 'left',
299
+ whiteSpace: 'pre',
300
+ wordSpacing: 'normal',
301
+ wordBreak: 'normal',
302
+ MozTabSize: '4',
303
+ OTabSize: '4',
304
+ tabSize: '4',
305
+ WebkitHyphens: 'none',
306
+ MozHyphens: 'none',
307
+ hyphens: 'none',
308
+ background: '#2a2d2a',
309
+ color: '#687d68',
310
+ padding: '1em',
311
+ margin: '.5em 0',
312
+ overflow: 'auto',
313
+ },
314
+ comment: {
315
+ color: '#535f53',
316
+ },
317
+ prolog: {
318
+ color: '#535f53',
319
+ },
320
+ doctype: {
321
+ color: '#535f53',
322
+ },
323
+ cdata: {
324
+ color: '#535f53',
325
+ },
326
+ punctuation: {
327
+ color: '#535f53',
328
+ },
329
+ namespace: {
330
+ opacity: '.7',
331
+ },
332
+ tag: {
333
+ color: '#a2b34d',
334
+ },
335
+ operator: {
336
+ color: '#a2b34d',
337
+ },
338
+ number: {
339
+ color: '#a2b34d',
340
+ },
341
+ property: {
342
+ color: '#687d68',
343
+ },
344
+ function: {
345
+ color: '#687d68',
346
+ },
347
+ 'tag-id': {
348
+ color: '#f0fff0',
349
+ },
350
+ selector: {
351
+ color: '#f0fff0',
352
+ },
353
+ 'atrule-id': {
354
+ color: '#f0fff0',
355
+ },
356
+ 'attr-name': {
357
+ color: '#b3d6b3',
358
+ },
359
+ boolean: {
360
+ color: '#e5fb79',
361
+ },
362
+ string: {
363
+ color: '#e5fb79',
364
+ },
365
+ entity: {
366
+ color: '#e5fb79',
367
+ cursor: 'help',
368
+ },
369
+ url: {
370
+ color: '#e5fb79',
371
+ },
372
+ 'attr-value': {
373
+ color: '#e5fb79',
374
+ },
375
+ keyword: {
376
+ color: '#e5fb79',
377
+ },
378
+ control: {
379
+ color: '#e5fb79',
380
+ },
381
+ directive: {
382
+ color: '#e5fb79',
383
+ },
384
+ unit: {
385
+ color: '#e5fb79',
386
+ },
387
+ statement: {
388
+ color: '#e5fb79',
389
+ },
390
+ regex: {
391
+ color: '#e5fb79',
392
+ },
393
+ atrule: {
394
+ color: '#e5fb79',
395
+ },
396
+ placeholder: {
397
+ color: '#e5fb79',
398
+ },
399
+ variable: {
400
+ color: '#e5fb79',
401
+ },
402
+ deleted: {
403
+ textDecoration: 'line-through',
404
+ },
405
+ inserted: {
406
+ borderBottom: '1px dotted #f0fff0',
407
+ textDecoration: 'none',
408
+ },
409
+ italic: {
410
+ fontStyle: 'italic',
411
+ },
412
+ important: {
413
+ fontWeight: 'bold',
414
+ color: '#b3d6b3',
415
+ },
416
+ bold: {
417
+ fontWeight: 'bold',
418
+ },
419
+ } as const;
420
+ export const holiTheme = {
421
+ base: {},
422
+ comment: {
423
+ color: '#446e69',
424
+ },
425
+ prolog: {
426
+ color: '#446e69',
427
+ },
428
+ doctype: {
429
+ color: '#446e69',
430
+ },
431
+ cdata: {
432
+ color: '#446e69',
433
+ },
434
+ punctuation: {
435
+ color: '#d6b007',
436
+ },
437
+ property: {
438
+ color: '#d6e7ff',
439
+ },
440
+ tag: {
441
+ color: '#d6e7ff',
442
+ },
443
+ boolean: {
444
+ color: '#d6e7ff',
445
+ },
446
+ number: {
447
+ color: '#d6e7ff',
448
+ },
449
+ constant: {
450
+ color: '#d6e7ff',
451
+ },
452
+ symbol: {
453
+ color: '#d6e7ff',
454
+ },
455
+ deleted: {
456
+ color: '#d6e7ff',
457
+ },
458
+ selector: {
459
+ color: '#e60067',
460
+ },
461
+ 'attr-name': {
462
+ color: '#e60067',
463
+ },
464
+ builtin: {
465
+ color: '#e60067',
466
+ },
467
+ inserted: {
468
+ color: '#e60067',
469
+ },
470
+ string: {
471
+ color: '#49c6ec',
472
+ },
473
+ char: {
474
+ color: '#49c6ec',
475
+ },
476
+ operator: {
477
+ color: '#ec8e01',
478
+ background: 'transparent',
479
+ },
480
+ entity: {
481
+ color: '#ec8e01',
482
+ background: 'transparent',
483
+ },
484
+ url: {
485
+ color: '#ec8e01',
486
+ background: 'transparent',
487
+ },
488
+ atrule: {
489
+ color: '#0fe468',
490
+ },
491
+ 'attr-value': {
492
+ color: '#0fe468',
493
+ },
494
+ keyword: {
495
+ color: '#0fe468',
496
+ },
497
+ function: {
498
+ color: '#78f3e9',
499
+ },
500
+ 'class-name': {
501
+ color: '#78f3e9',
502
+ },
503
+ regex: {
504
+ color: '#d6e7ff',
505
+ },
506
+ important: {
507
+ color: '#d6e7ff',
508
+ },
509
+ variable: {
510
+ color: '#d6e7ff',
511
+ },
512
+ } as const;
513
+ export const cb = {
514
+ base: {
515
+ color: '#fff',
516
+ textShadow: '0 1px 1px #000',
517
+ fontFamily: 'Menlo, Monaco, "Courier New", monospace',
518
+ direction: 'ltr',
519
+ textAlign: 'left',
520
+ wordSpacing: 'normal',
521
+ whiteSpace: 'pre',
522
+ wordWrap: 'normal',
523
+ lineHeight: '1.4',
524
+ background: '#222',
525
+ border: '0',
526
+ MozTabSize: '4',
527
+ OTabSize: '4',
528
+ tabSize: '4',
529
+ WebkitHyphens: 'none',
530
+ MozHyphens: 'none',
531
+ hyphens: 'none',
532
+ padding: '15px',
533
+ margin: '1em 0',
534
+ overflow: 'auto',
535
+ MozBorderRadius: '8px',
536
+ WebkitBorderRadius: '8px',
537
+ borderRadius: '8px',
538
+ },
539
+ comment: {
540
+ color: '#797979',
541
+ },
542
+ prolog: {
543
+ color: '#797979',
544
+ },
545
+ doctype: {
546
+ color: '#797979',
547
+ },
548
+ cdata: {
549
+ color: '#797979',
550
+ },
551
+ selector: {
552
+ color: '#fff',
553
+ },
554
+ operator: {
555
+ color: '#fff',
556
+ },
557
+ punctuation: {
558
+ color: '#fff',
559
+ },
560
+ namespace: {
561
+ opacity: '.7',
562
+ },
563
+ tag: {
564
+ color: '#ffd893',
565
+ },
566
+ boolean: {
567
+ color: '#ffd893',
568
+ },
569
+ atrule: {
570
+ color: '#B0C975',
571
+ },
572
+ 'attr-value': {
573
+ color: '#B0C975',
574
+ },
575
+ hex: {
576
+ color: '#B0C975',
577
+ },
578
+ string: {
579
+ color: '#B0C975',
580
+ },
581
+ property: {
582
+ color: '#c27628',
583
+ },
584
+ entity: {
585
+ color: '#c27628',
586
+ cursor: 'help',
587
+ },
588
+ url: {
589
+ color: '#c27628',
590
+ },
591
+ 'attr-name': {
592
+ color: '#c27628',
593
+ },
594
+ keyword: {
595
+ color: '#c27628',
596
+ },
597
+ regex: {
598
+ color: '#9B71C6',
599
+ },
600
+ function: {
601
+ color: '#e5a638',
602
+ },
603
+ constant: {
604
+ color: '#e5a638',
605
+ },
606
+ variable: {
607
+ color: '#fdfba8',
608
+ },
609
+ number: {
610
+ color: '#8799B0',
611
+ },
612
+ important: {
613
+ color: '#E45734',
614
+ },
615
+ deliminator: {
616
+ color: '#E45734',
617
+ },
618
+ } as const;
619
+ export const vs = {
620
+ base: {
621
+ color: '#393A34',
622
+ fontFamily:
623
+ '"Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace',
624
+ direction: 'ltr',
625
+ textAlign: 'left',
626
+ whiteSpace: 'pre',
627
+ wordSpacing: 'normal',
628
+ wordBreak: 'normal',
629
+ fontSize: '.9em',
630
+ lineHeight: '1.2em',
631
+ MozTabSize: '4',
632
+ OTabSize: '4',
633
+ tabSize: '4',
634
+ WebkitHyphens: 'none',
635
+ MozHyphens: 'none',
636
+ hyphens: 'none',
637
+ padding: '1em',
638
+ margin: '.5em 0',
639
+ overflow: 'auto',
640
+ border: '1px solid #dddddd',
641
+ backgroundColor: 'white',
642
+ },
643
+ comment: {
644
+ color: '#008000',
645
+ fontStyle: 'italic',
646
+ },
647
+ prolog: {
648
+ color: '#008000',
649
+ fontStyle: 'italic',
650
+ },
651
+ doctype: {
652
+ color: '#008000',
653
+ fontStyle: 'italic',
654
+ },
655
+ cdata: {
656
+ color: '#008000',
657
+ fontStyle: 'italic',
658
+ },
659
+ namespace: {
660
+ opacity: '.7',
661
+ },
662
+ string: {
663
+ color: '#A31515',
664
+ },
665
+ punctuation: {
666
+ color: '#393A34',
667
+ },
668
+ operator: {
669
+ color: '#393A34',
670
+ },
671
+ url: {
672
+ color: '#36acaa',
673
+ },
674
+ symbol: {
675
+ color: '#36acaa',
676
+ },
677
+ number: {
678
+ color: '#36acaa',
679
+ },
680
+ boolean: {
681
+ color: '#36acaa',
682
+ },
683
+ variable: {
684
+ color: '#36acaa',
685
+ },
686
+ constant: {
687
+ color: '#36acaa',
688
+ },
689
+ inserted: {
690
+ color: '#36acaa',
691
+ },
692
+ atrule: {
693
+ color: '#0000ff',
694
+ },
695
+ keyword: {
696
+ color: '#0000ff',
697
+ },
698
+ 'attr-value': {
699
+ color: '#0000ff',
700
+ },
701
+ function: {
702
+ color: '#393A34',
703
+ },
704
+ deleted: {
705
+ color: '#9a050f',
706
+ },
707
+ selector: {
708
+ color: '#800000',
709
+ },
710
+ important: {
711
+ color: '#e90',
712
+ fontWeight: 'bold',
713
+ },
714
+ bold: {
715
+ fontWeight: 'bold',
716
+ },
717
+ italic: {
718
+ fontStyle: 'italic',
719
+ },
720
+ 'class-name': {
721
+ color: '#2B91AF',
722
+ },
723
+ tag: {
724
+ color: '#800000',
725
+ },
726
+ 'attr-name': {
727
+ color: '#ff0000',
728
+ },
729
+ property: {
730
+ color: '#ff0000',
731
+ },
732
+ regex: {
733
+ color: '#ff0000',
734
+ },
735
+ entity: {
736
+ color: '#ff0000',
737
+ },
738
+ 'directive.tag .tag': {
739
+ background: '#ffff00',
740
+ color: '#393A34',
741
+ },
742
+ } as const;
743
+ export const materialDark = {
744
+ base: {
745
+ textAlign: 'left',
746
+ whiteSpace: 'pre',
747
+ wordSpacing: 'normal',
748
+ wordBreak: 'normal',
749
+ wordWrap: 'normal',
750
+ color: '#eee',
751
+ background: '#2f2f2f',
752
+ fontFamily: 'Roboto Mono, monospace',
753
+ fontSize: '1em',
754
+ lineHeight: '1.5em',
755
+ MozTabSize: '4',
756
+ OTabSize: '4',
757
+ tabSize: '4',
758
+ WebkitHyphens: 'none',
759
+ MozHyphens: 'none',
760
+ hyphens: 'none',
761
+ overflow: 'auto',
762
+ position: 'relative',
763
+ margin: '0.5em 0',
764
+ padding: '1.25em 1em',
765
+ },
766
+ atrule: {
767
+ color: '#c792ea',
768
+ },
769
+ 'attr-name': {
770
+ color: '#ffcb6b',
771
+ },
772
+ 'attr-value': {
773
+ color: '#a5e844',
774
+ },
775
+ attribute: {
776
+ color: '#a5e844',
777
+ },
778
+ boolean: {
779
+ color: '#c792ea',
780
+ },
781
+ builtin: {
782
+ color: '#ffcb6b',
783
+ },
784
+ cdata: {
785
+ color: '#80cbc4',
786
+ },
787
+ char: {
788
+ color: '#80cbc4',
789
+ },
790
+ class: {
791
+ color: '#ffcb6b',
792
+ },
793
+ 'class-name': {
794
+ color: '#f2ff00',
795
+ },
796
+ comment: {
797
+ color: '#616161',
798
+ },
799
+ constant: {
800
+ color: '#c792ea',
801
+ },
802
+ deleted: {
803
+ color: '#ff6666',
804
+ },
805
+ doctype: {
806
+ color: '#616161',
807
+ },
808
+ entity: {
809
+ color: '#ff6666',
810
+ },
811
+ function: {
812
+ color: '#c792ea',
813
+ },
814
+ hexcode: {
815
+ color: '#f2ff00',
816
+ },
817
+ id: {
818
+ color: '#c792ea',
819
+ fontWeight: 'bold',
820
+ },
821
+ important: {
822
+ color: '#c792ea',
823
+ fontWeight: 'bold',
824
+ },
825
+ inserted: {
826
+ color: '#80cbc4',
827
+ },
828
+ keyword: {
829
+ color: '#c792ea',
830
+ },
831
+ number: {
832
+ color: '#fd9170',
833
+ },
834
+ operator: {
835
+ color: '#89ddff',
836
+ },
837
+ prolog: {
838
+ color: '#616161',
839
+ },
840
+ property: {
841
+ color: '#80cbc4',
842
+ },
843
+ 'pseudo-class': {
844
+ color: '#a5e844',
845
+ },
846
+ 'pseudo-element': {
847
+ color: '#a5e844',
848
+ },
849
+ punctuation: {
850
+ color: '#89ddff',
851
+ },
852
+ regex: {
853
+ color: '#f2ff00',
854
+ },
855
+ selector: {
856
+ color: '#ff6666',
857
+ },
858
+ string: {
859
+ color: '#a5e844',
860
+ },
861
+ symbol: {
862
+ color: '#c792ea',
863
+ },
864
+ tag: {
865
+ color: '#ff6666',
866
+ },
867
+ unit: {
868
+ color: '#fd9170',
869
+ },
870
+ url: {
871
+ color: '#ff6666',
872
+ },
873
+ variable: {
874
+ color: '#ff6666',
875
+ },
876
+ } as const;
877
+ export const dracula = {
878
+ base: {
879
+ color: '#f8f8f2',
880
+ background: '#282a36',
881
+ textShadow: '0 1px rgba(0, 0, 0, 0.3)',
882
+ fontFamily: "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
883
+ textAlign: 'left',
884
+ whiteSpace: 'pre',
885
+ wordSpacing: 'normal',
886
+ wordBreak: 'normal',
887
+ wordWrap: 'normal',
888
+ lineHeight: '1.5',
889
+ MozTabSize: '4',
890
+ OTabSize: '4',
891
+ tabSize: '4',
892
+ WebkitHyphens: 'none',
893
+ MozHyphens: 'none',
894
+ hyphens: 'none',
895
+ padding: '1em',
896
+ margin: '.5em 0',
897
+ overflow: 'auto',
898
+ borderRadius: '0.3em',
899
+ },
900
+ comment: {
901
+ color: '#6272a4',
902
+ },
903
+ prolog: {
904
+ color: '#6272a4',
905
+ },
906
+ doctype: {
907
+ color: '#6272a4',
908
+ },
909
+ cdata: {
910
+ color: '#6272a4',
911
+ },
912
+ punctuation: {
913
+ color: '#f8f8f2',
914
+ },
915
+ property: {
916
+ color: '#ff79c6',
917
+ },
918
+ tag: {
919
+ color: '#ff79c6',
920
+ },
921
+ constant: {
922
+ color: '#ff79c6',
923
+ },
924
+ symbol: {
925
+ color: '#ff79c6',
926
+ },
927
+ deleted: {
928
+ color: '#ff79c6',
929
+ },
930
+ boolean: {
931
+ color: '#bd93f9',
932
+ },
933
+ number: {
934
+ color: '#bd93f9',
935
+ },
936
+ selector: {
937
+ color: '#50fa7b',
938
+ },
939
+ 'attr-name': {
940
+ color: '#50fa7b',
941
+ },
942
+ string: {
943
+ color: '#50fa7b',
944
+ },
945
+ char: {
946
+ color: '#50fa7b',
947
+ },
948
+ builtin: {
949
+ color: '#50fa7b',
950
+ },
951
+ inserted: {
952
+ color: '#50fa7b',
953
+ },
954
+ operator: {
955
+ color: '#f8f8f2',
956
+ },
957
+ entity: {
958
+ color: '#f8f8f2',
959
+ cursor: 'help',
960
+ },
961
+ url: {
962
+ color: '#f8f8f2',
963
+ },
964
+ variable: {
965
+ color: '#f8f8f2',
966
+ },
967
+ atrule: {
968
+ color: '#f1fa8c',
969
+ },
970
+ 'attr-value': {
971
+ color: '#f1fa8c',
972
+ },
973
+ function: {
974
+ color: '#f1fa8c',
975
+ },
976
+ 'class-name': {
977
+ color: '#f1fa8c',
978
+ },
979
+ keyword: {
980
+ color: '#8be9fd',
981
+ },
982
+ regex: {
983
+ color: '#ffb86c',
984
+ },
985
+ important: {
986
+ color: '#ffb86c',
987
+ fontWeight: 'bold',
988
+ },
989
+ bold: {
990
+ fontWeight: 'bold',
991
+ },
992
+ italic: {
993
+ fontStyle: 'italic',
994
+ },
995
+ } as const;
996
+ export const shadesOfPurple = {
997
+ base: {},
998
+ '': {
999
+ fontWeight: '400',
1000
+ },
1001
+ comment: {
1002
+ color: '#b362ff',
1003
+ },
1004
+ prolog: {
1005
+ color: '#b362ff',
1006
+ },
1007
+ cdata: {
1008
+ color: '#b362ff',
1009
+ },
1010
+ delimiter: {
1011
+ color: '#ff9d00',
1012
+ },
1013
+ keyword: {
1014
+ color: '#ff9d00',
1015
+ },
1016
+ selector: {
1017
+ color: '#ff9d00',
1018
+ },
1019
+ important: {
1020
+ color: '#ff9d00',
1021
+ },
1022
+ atrule: {
1023
+ color: '#ff9d00',
1024
+ },
1025
+ operator: {
1026
+ color: 'rgb(255, 180, 84)',
1027
+ background: 'none',
1028
+ },
1029
+ 'attr-name': {
1030
+ color: 'rgb(255, 180, 84)',
1031
+ },
1032
+ punctuation: {
1033
+ color: '#ffffff',
1034
+ },
1035
+ boolean: {
1036
+ color: 'rgb(255, 98, 140)',
1037
+ },
1038
+ tag: {
1039
+ color: 'rgb(255, 157, 0)',
1040
+ },
1041
+ 'tag .punctuation': {
1042
+ color: 'rgb(255, 157, 0)',
1043
+ },
1044
+ doctype: {
1045
+ color: 'rgb(255, 157, 0)',
1046
+ },
1047
+ builtin: {
1048
+ color: 'rgb(255, 157, 0)',
1049
+ },
1050
+ entity: {
1051
+ color: '#6897bb',
1052
+ background: 'none',
1053
+ },
1054
+ symbol: {
1055
+ color: '#6897bb',
1056
+ },
1057
+ number: {
1058
+ color: '#ff628c',
1059
+ },
1060
+ property: {
1061
+ color: '#ff628c',
1062
+ },
1063
+ constant: {
1064
+ color: '#ff628c',
1065
+ },
1066
+ variable: {
1067
+ color: '#ff628c',
1068
+ },
1069
+ string: {
1070
+ color: '#a5ff90',
1071
+ },
1072
+ char: {
1073
+ color: '#a5ff90',
1074
+ },
1075
+ 'attr-value': {
1076
+ color: '#a5c261',
1077
+ },
1078
+ 'attr-value .punctuation': {
1079
+ color: '#a5c261',
1080
+ },
1081
+ 'attr-value .punctuation:first-child': {
1082
+ color: '#a9b7c6',
1083
+ },
1084
+ url: {
1085
+ color: '#287bde',
1086
+ textDecoration: 'underline',
1087
+ background: 'none',
1088
+ },
1089
+ function: {
1090
+ color: 'rgb(250, 208, 0)',
1091
+ },
1092
+ regex: {
1093
+ background: '#364135',
1094
+ },
1095
+ bold: {
1096
+ fontWeight: 'bold',
1097
+ },
1098
+ italic: {
1099
+ fontStyle: 'italic',
1100
+ },
1101
+ inserted: {
1102
+ background: '#00ff00',
1103
+ },
1104
+ deleted: {
1105
+ background: '#ff000d',
1106
+ },
1107
+ 'class-name': {
1108
+ color: '#fb94ff',
1109
+ },
1110
+ } as const;
1111
+ export const gruvboxDark = {
1112
+ base: {
1113
+ color: '#ebdbb2',
1114
+ fontFamily: 'Consolas, Monaco, "Andale Mono", monospace',
1115
+ direction: 'ltr',
1116
+ textAlign: 'left',
1117
+ whiteSpace: 'pre',
1118
+ wordSpacing: 'normal',
1119
+ wordBreak: 'normal',
1120
+ lineHeight: '1.5',
1121
+ MozTabSize: '4',
1122
+ OTabSize: '4',
1123
+ tabSize: '4',
1124
+ WebkitHyphens: 'none',
1125
+ MozHyphens: 'none',
1126
+ hyphens: 'none',
1127
+ padding: '1em',
1128
+ margin: '0.5em 0',
1129
+ overflow: 'auto',
1130
+ background: '#1d2021',
1131
+ },
1132
+ comment: {
1133
+ color: '#a89984',
1134
+ },
1135
+ prolog: {
1136
+ color: '#a89984',
1137
+ },
1138
+ cdata: {
1139
+ color: '#a89984',
1140
+ },
1141
+ delimiter: {
1142
+ color: '#fb4934',
1143
+ },
1144
+ boolean: {
1145
+ color: '#fb4934',
1146
+ },
1147
+ keyword: {
1148
+ color: '#fb4934',
1149
+ },
1150
+ selector: {
1151
+ color: '#fb4934',
1152
+ },
1153
+ important: {
1154
+ color: '#fb4934',
1155
+ },
1156
+ atrule: {
1157
+ color: '#fb4934',
1158
+ },
1159
+ operator: {
1160
+ color: '#a89984',
1161
+ },
1162
+ punctuation: {
1163
+ color: '#a89984',
1164
+ },
1165
+ 'attr-name': {
1166
+ color: '#a89984',
1167
+ },
1168
+ tag: {
1169
+ color: '#fabd2f',
1170
+ },
1171
+ 'tag .punctuation': {
1172
+ color: '#fabd2f',
1173
+ },
1174
+ doctype: {
1175
+ color: '#fabd2f',
1176
+ },
1177
+ builtin: {
1178
+ color: '#fabd2f',
1179
+ },
1180
+ entity: {
1181
+ color: '#d3869b',
1182
+ },
1183
+ number: {
1184
+ color: '#d3869b',
1185
+ },
1186
+ symbol: {
1187
+ color: '#d3869b',
1188
+ },
1189
+ property: {
1190
+ color: '#fb4934',
1191
+ },
1192
+ constant: {
1193
+ color: '#fb4934',
1194
+ },
1195
+ variable: {
1196
+ color: '#fb4934',
1197
+ },
1198
+ string: {
1199
+ color: '#b8bb26',
1200
+ },
1201
+ char: {
1202
+ color: '#b8bb26',
1203
+ },
1204
+ 'attr-value': {
1205
+ color: '#a89984',
1206
+ },
1207
+ 'attr-value .punctuation': {
1208
+ color: '#a89984',
1209
+ },
1210
+ url: {
1211
+ color: '#b8bb26',
1212
+ textDecoration: 'underline',
1213
+ },
1214
+ function: {
1215
+ color: '#fabd2f',
1216
+ },
1217
+ regex: {
1218
+ background: '#b8bb26',
1219
+ },
1220
+ bold: {
1221
+ fontWeight: 'bold',
1222
+ },
1223
+ italic: {
1224
+ fontStyle: 'italic',
1225
+ },
1226
+ inserted: {
1227
+ background: '#a89984',
1228
+ },
1229
+ deleted: {
1230
+ background: '#fb4934',
1231
+ },
1232
+ } as const;
1233
+ export const baseAteliersulphurpoolLight = {
1234
+ base: {
1235
+ fontFamily:
1236
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
1237
+ fontSize: '14px',
1238
+ lineHeight: '1.375',
1239
+ direction: 'ltr',
1240
+ textAlign: 'left',
1241
+ whiteSpace: 'pre',
1242
+ wordSpacing: 'normal',
1243
+ wordBreak: 'normal',
1244
+ MozTabSize: '4',
1245
+ OTabSize: '4',
1246
+ tabSize: '4',
1247
+ WebkitHyphens: 'none',
1248
+ MozHyphens: 'none',
1249
+
1250
+ hyphens: 'none',
1251
+ background: '#f5f7ff',
1252
+ color: '#5e6687',
1253
+ padding: '1em',
1254
+ margin: '.5em 0',
1255
+ overflow: 'auto',
1256
+ },
1257
+ comment: {
1258
+ color: '#898ea4',
1259
+ },
1260
+ prolog: {
1261
+ color: '#898ea4',
1262
+ },
1263
+ doctype: {
1264
+ color: '#898ea4',
1265
+ },
1266
+ cdata: {
1267
+ color: '#898ea4',
1268
+ },
1269
+ punctuation: {
1270
+ color: '#5e6687',
1271
+ },
1272
+ namespace: {
1273
+ opacity: '.7',
1274
+ },
1275
+ operator: {
1276
+ color: '#c76b29',
1277
+ },
1278
+ boolean: {
1279
+ color: '#c76b29',
1280
+ },
1281
+ number: {
1282
+ color: '#c76b29',
1283
+ },
1284
+ property: {
1285
+ color: '#c08b30',
1286
+ },
1287
+ tag: {
1288
+ color: '#3d8fd1',
1289
+ },
1290
+ string: {
1291
+ color: '#22a2c9',
1292
+ },
1293
+ selector: {
1294
+ color: '#6679cc',
1295
+ },
1296
+ 'attr-name': {
1297
+ color: '#c76b29',
1298
+ },
1299
+ entity: {
1300
+ color: '#22a2c9',
1301
+ cursor: 'help',
1302
+ },
1303
+ url: {
1304
+ color: '#22a2c9',
1305
+ },
1306
+ 'attr-value': {
1307
+ color: '#ac9739',
1308
+ },
1309
+ keyword: {
1310
+ color: '#ac9739',
1311
+ },
1312
+ control: {
1313
+ color: '#ac9739',
1314
+ },
1315
+ directive: {
1316
+ color: '#ac9739',
1317
+ },
1318
+ unit: {
1319
+ color: '#ac9739',
1320
+ },
1321
+ statement: {
1322
+ color: '#22a2c9',
1323
+ },
1324
+ regex: {
1325
+ color: '#22a2c9',
1326
+ },
1327
+ atrule: {
1328
+ color: '#22a2c9',
1329
+ },
1330
+ placeholder: {
1331
+ color: '#3d8fd1',
1332
+ },
1333
+ variable: {
1334
+ color: '#3d8fd1',
1335
+ },
1336
+ deleted: {
1337
+ textDecoration: 'line-through',
1338
+ },
1339
+ inserted: {
1340
+ borderBottom: '1px dotted #202746',
1341
+ textDecoration: 'none',
1342
+ },
1343
+ italic: {
1344
+ fontStyle: 'italic',
1345
+ },
1346
+ important: {
1347
+ fontWeight: 'bold',
1348
+ color: '#c94922',
1349
+ },
1350
+ bold: {
1351
+ fontWeight: 'bold',
1352
+ },
1353
+ } as const;
1354
+ export const coldarkCold = {
1355
+ base: {
1356
+ color: '#111b27',
1357
+ background: '#e3eaf2',
1358
+ fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
1359
+ textAlign: 'left',
1360
+ whiteSpace: 'pre',
1361
+ wordSpacing: 'normal',
1362
+ wordBreak: 'normal',
1363
+ wordWrap: 'normal',
1364
+ lineHeight: '1.5',
1365
+ MozTabSize: '4',
1366
+ OTabSize: '4',
1367
+ tabSize: '4',
1368
+ WebkitHyphens: 'none',
1369
+ MozHyphens: 'none',
1370
+
1371
+ hyphens: 'none',
1372
+ padding: '1em',
1373
+ margin: '0.5em 0',
1374
+ overflow: 'auto',
1375
+ },
1376
+ comment: {
1377
+ color: '#3c526d',
1378
+ },
1379
+ prolog: {
1380
+ color: '#3c526d',
1381
+ },
1382
+ doctype: {
1383
+ color: '#3c526d',
1384
+ },
1385
+ cdata: {
1386
+ color: '#3c526d',
1387
+ },
1388
+ punctuation: {
1389
+ color: '#111b27',
1390
+ },
1391
+ 'delimiter.important': {
1392
+ color: '#006d6d',
1393
+ fontWeight: 'inherit',
1394
+ },
1395
+ 'selector .parent': {
1396
+ color: '#006d6d',
1397
+ },
1398
+ tag: {
1399
+ color: '#006d6d',
1400
+ },
1401
+ 'tag .token.punctuation': {
1402
+ color: '#006d6d',
1403
+ },
1404
+ 'attr-name': {
1405
+ color: '#755f00',
1406
+ },
1407
+ boolean: {
1408
+ color: '#755f00',
1409
+ },
1410
+ 'boolean.important': {
1411
+ color: '#755f00',
1412
+ },
1413
+ number: {
1414
+ color: '#755f00',
1415
+ },
1416
+ constant: {
1417
+ color: '#755f00',
1418
+ },
1419
+ 'selector .token.attribute': {
1420
+ color: '#755f00',
1421
+ },
1422
+ 'class-name': {
1423
+ color: '#005a8e',
1424
+ },
1425
+ key: {
1426
+ color: '#005a8e',
1427
+ },
1428
+ parameter: {
1429
+ color: '#005a8e',
1430
+ },
1431
+ property: {
1432
+ color: '#005a8e',
1433
+ },
1434
+ 'property-access': {
1435
+ color: '#005a8e',
1436
+ },
1437
+ variable: {
1438
+ color: '#005a8e',
1439
+ },
1440
+ 'attr-value': {
1441
+ color: '#116b00',
1442
+ },
1443
+ inserted: {
1444
+ color: '#116b00',
1445
+ },
1446
+ color: {
1447
+ color: '#116b00',
1448
+ },
1449
+ 'selector .token.value': {
1450
+ color: '#116b00',
1451
+ },
1452
+ string: {
1453
+ color: '#116b00',
1454
+ },
1455
+ 'string .token.url-link': {
1456
+ color: '#116b00',
1457
+ },
1458
+ builtin: {
1459
+ color: '#af00af',
1460
+ },
1461
+ 'keyword-array': {
1462
+ color: '#af00af',
1463
+ },
1464
+ package: {
1465
+ color: '#af00af',
1466
+ },
1467
+ regex: {
1468
+ color: '#af00af',
1469
+ },
1470
+ function: {
1471
+ color: '#7c00aa',
1472
+ },
1473
+ 'selector .token.class': {
1474
+ color: '#7c00aa',
1475
+ },
1476
+ 'selector .token.id': {
1477
+ color: '#7c00aa',
1478
+ },
1479
+ 'atrule .token.rule': {
1480
+ color: '#a04900',
1481
+ },
1482
+ combinator: {
1483
+ color: '#a04900',
1484
+ },
1485
+ keyword: {
1486
+ color: '#a04900',
1487
+ },
1488
+ operator: {
1489
+ color: '#a04900',
1490
+ },
1491
+ 'pseudo-class': {
1492
+ color: '#a04900',
1493
+ },
1494
+ 'pseudo-element': {
1495
+ color: '#a04900',
1496
+ },
1497
+ selector: {
1498
+ color: '#a04900',
1499
+ },
1500
+ unit: {
1501
+ color: '#a04900',
1502
+ },
1503
+ deleted: {
1504
+ color: '#c22f2e',
1505
+ },
1506
+ important: {
1507
+ color: '#c22f2e',
1508
+ fontWeight: 'bold',
1509
+ },
1510
+ 'keyword-this': {
1511
+ color: '#005a8e',
1512
+ fontWeight: 'bold',
1513
+ },
1514
+ this: {
1515
+ color: '#005a8e',
1516
+ fontWeight: 'bold',
1517
+ },
1518
+ bold: {
1519
+ fontWeight: 'bold',
1520
+ },
1521
+ italic: {
1522
+ fontStyle: 'italic',
1523
+ },
1524
+ entity: {
1525
+ cursor: 'help',
1526
+ },
1527
+ 'token.tab:not(:empty):before': {
1528
+ color: '#3c526d',
1529
+ },
1530
+ 'token.cr:before': {
1531
+ color: '#3c526d',
1532
+ },
1533
+ 'token.lf:before': {
1534
+ color: '#3c526d',
1535
+ },
1536
+ 'token.space:before': {
1537
+ color: '#3c526d',
1538
+ },
1539
+ } as const;
1540
+ export const solarizedDarkAtom = {
1541
+ base: {
1542
+ color: '#839496',
1543
+ textShadow: '0 1px rgba(0, 0, 0, 0.3)',
1544
+ fontFamily:
1545
+ "Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace",
1546
+ direction: 'ltr',
1547
+ textAlign: 'left',
1548
+ whiteSpace: 'pre',
1549
+ wordSpacing: 'normal',
1550
+ wordBreak: 'normal',
1551
+ lineHeight: '1.5',
1552
+ MozTabSize: '4',
1553
+ OTabSize: '4',
1554
+ tabSize: '4',
1555
+ WebkitHyphens: 'none',
1556
+ MozHyphens: 'none',
1557
+
1558
+ hyphens: 'none',
1559
+ padding: '1em',
1560
+ margin: '.5em 0',
1561
+ overflow: 'auto',
1562
+ borderRadius: '0.3em',
1563
+ background: '#002b36',
1564
+ },
1565
+ comment: {
1566
+ color: '#586e75',
1567
+ },
1568
+ prolog: {
1569
+ color: '#586e75',
1570
+ },
1571
+ doctype: {
1572
+ color: '#586e75',
1573
+ },
1574
+ cdata: {
1575
+ color: '#586e75',
1576
+ },
1577
+ punctuation: {
1578
+ color: '#93a1a1',
1579
+ },
1580
+ property: {
1581
+ color: '#268bd2',
1582
+ },
1583
+ keyword: {
1584
+ color: '#268bd2',
1585
+ },
1586
+ tag: {
1587
+ color: '#268bd2',
1588
+ },
1589
+ 'class-name': {
1590
+ color: '#FFFFB6',
1591
+ textDecoration: 'underline',
1592
+ },
1593
+ boolean: {
1594
+ color: '#b58900',
1595
+ },
1596
+ constant: {
1597
+ color: '#b58900',
1598
+ },
1599
+ symbol: {
1600
+ color: '#dc322f',
1601
+ },
1602
+ deleted: {
1603
+ color: '#dc322f',
1604
+ },
1605
+ number: {
1606
+ color: '#859900',
1607
+ },
1608
+ selector: {
1609
+ color: '#859900',
1610
+ },
1611
+ 'attr-name': {
1612
+ color: '#859900',
1613
+ },
1614
+ string: {
1615
+ color: '#859900',
1616
+ },
1617
+ char: {
1618
+ color: '#859900',
1619
+ },
1620
+ builtin: {
1621
+ color: '#859900',
1622
+ },
1623
+ inserted: {
1624
+ color: '#859900',
1625
+ },
1626
+ variable: {
1627
+ color: '#268bd2',
1628
+ },
1629
+ operator: {
1630
+ color: '#EDEDED',
1631
+ },
1632
+ function: {
1633
+ color: '#268bd2',
1634
+ },
1635
+ regex: {
1636
+ color: '#E9C062',
1637
+ },
1638
+ important: {
1639
+ color: '#fd971f',
1640
+ fontWeight: 'bold',
1641
+ },
1642
+ entity: {
1643
+ color: '#FFFFB6',
1644
+ cursor: 'help',
1645
+ },
1646
+ url: {
1647
+ color: '#96CBFE',
1648
+ },
1649
+ bold: {
1650
+ fontWeight: 'bold',
1651
+ },
1652
+ italic: {
1653
+ fontStyle: 'italic',
1654
+ },
1655
+ atrule: {
1656
+ color: '#F9EE98',
1657
+ },
1658
+ 'attr-value': {
1659
+ color: '#F9EE98',
1660
+ },
1661
+ } as const;
1662
+ export const synthwave84 = {
1663
+ base: {
1664
+ color: '#f92aad',
1665
+ textShadow: '0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3',
1666
+ background: 'none',
1667
+ fontFamily: "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
1668
+ fontSize: '1em',
1669
+ textAlign: 'left',
1670
+ whiteSpace: 'pre',
1671
+ wordSpacing: 'normal',
1672
+ wordBreak: 'normal',
1673
+ wordWrap: 'normal',
1674
+ lineHeight: '1.5',
1675
+ MozTabSize: '4',
1676
+ OTabSize: '4',
1677
+ tabSize: '4',
1678
+ WebkitHyphens: 'none',
1679
+ MozHyphens: 'none',
1680
+
1681
+ hyphens: 'none',
1682
+ padding: '1em',
1683
+ margin: '.5em 0',
1684
+ overflow: 'auto',
1685
+ backgroundColor: 'transparent !important',
1686
+ backgroundImage: 'linear-gradient(to bottom, #2a2139 75%, #34294f)',
1687
+ },
1688
+ comment: {
1689
+ color: '#8e8e8e',
1690
+ },
1691
+ 'block-comment': {
1692
+ color: '#8e8e8e',
1693
+ },
1694
+ prolog: {
1695
+ color: '#8e8e8e',
1696
+ },
1697
+ doctype: {
1698
+ color: '#8e8e8e',
1699
+ },
1700
+ cdata: {
1701
+ color: '#8e8e8e',
1702
+ },
1703
+ punctuation: {
1704
+ color: '#ccc',
1705
+ },
1706
+ tag: {
1707
+ color: '#e2777a',
1708
+ },
1709
+ 'attr-name': {
1710
+ color: '#e2777a',
1711
+ },
1712
+ namespace: {
1713
+ color: '#e2777a',
1714
+ },
1715
+ number: {
1716
+ color: '#e2777a',
1717
+ },
1718
+ unit: {
1719
+ color: '#e2777a',
1720
+ },
1721
+ hexcode: {
1722
+ color: '#e2777a',
1723
+ },
1724
+ deleted: {
1725
+ color: '#e2777a',
1726
+ },
1727
+ property: {
1728
+ color: '#72f1b8',
1729
+ textShadow: '0 0 2px #100c0f, 0 0 10px #257c5575, 0 0 35px #21272475',
1730
+ },
1731
+ selector: {
1732
+ color: '#72f1b8',
1733
+ textShadow: '0 0 2px #100c0f, 0 0 10px #257c5575, 0 0 35px #21272475',
1734
+ },
1735
+ 'function-name': {
1736
+ color: '#6196cc',
1737
+ },
1738
+ boolean: {
1739
+ color: '#fdfdfd',
1740
+ textShadow:
1741
+ '0 0 2px #001716, 0 0 3px #03edf975, 0 0 5px #03edf975, 0 0 8px #03edf975',
1742
+ },
1743
+ 'selector .token.id': {
1744
+ color: '#fdfdfd',
1745
+ textShadow:
1746
+ '0 0 2px #001716, 0 0 3px #03edf975, 0 0 5px #03edf975, 0 0 8px #03edf975',
1747
+ },
1748
+ function: {
1749
+ color: '#fdfdfd',
1750
+ textShadow:
1751
+ '0 0 2px #001716, 0 0 3px #03edf975, 0 0 5px #03edf975, 0 0 8px #03edf975',
1752
+ },
1753
+ 'class-name': {
1754
+ color: '#fff5f6',
1755
+ textShadow:
1756
+ '0 0 2px #000, 0 0 10px #fc1f2c75, 0 0 5px #fc1f2c75, 0 0 25px #fc1f2c75',
1757
+ },
1758
+ constant: {
1759
+ color: '#f92aad',
1760
+ textShadow: '0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3',
1761
+ },
1762
+ symbol: {
1763
+ color: '#f92aad',
1764
+ textShadow: '0 0 2px #100c0f, 0 0 5px #dc078e33, 0 0 10px #fff3',
1765
+ },
1766
+ important: {
1767
+ color: '#f4eee4',
1768
+ textShadow: '0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575',
1769
+ fontWeight: 'bold',
1770
+ },
1771
+ atrule: {
1772
+ color: '#f4eee4',
1773
+ textShadow: '0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575',
1774
+ },
1775
+ keyword: {
1776
+ color: '#f4eee4',
1777
+ textShadow: '0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575',
1778
+ },
1779
+ 'selector .token.class': {
1780
+ color: '#f4eee4',
1781
+ textShadow: '0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575',
1782
+ },
1783
+ builtin: {
1784
+ color: '#f4eee4',
1785
+ textShadow: '0 0 2px #393a33, 0 0 8px #f39f0575, 0 0 2px #f39f0575',
1786
+ },
1787
+ string: {
1788
+ color: '#f87c32',
1789
+ },
1790
+ char: {
1791
+ color: '#f87c32',
1792
+ },
1793
+ 'attr-value': {
1794
+ color: '#f87c32',
1795
+ },
1796
+ regex: {
1797
+ color: '#f87c32',
1798
+ },
1799
+ variable: {
1800
+ color: '#f87c32',
1801
+ },
1802
+ operator: {
1803
+ color: '#67cdcc',
1804
+ },
1805
+ entity: {
1806
+ color: '#67cdcc',
1807
+ cursor: 'help',
1808
+ },
1809
+ url: {
1810
+ color: '#67cdcc',
1811
+ },
1812
+ bold: {
1813
+ fontWeight: 'bold',
1814
+ },
1815
+ italic: {
1816
+ fontStyle: 'italic',
1817
+ },
1818
+ inserted: {
1819
+ color: 'green',
1820
+ },
1821
+ } as const;
1822
+ export const materialOceanic = {
1823
+ base: {
1824
+ textAlign: 'left',
1825
+ whiteSpace: 'pre',
1826
+ wordSpacing: 'normal',
1827
+ wordBreak: 'normal',
1828
+ wordWrap: 'normal',
1829
+ color: '#c3cee3',
1830
+ background: '#263238',
1831
+ fontFamily: 'Roboto Mono, monospace',
1832
+ fontSize: '1em',
1833
+ lineHeight: '1.5em',
1834
+ MozTabSize: '4',
1835
+ OTabSize: '4',
1836
+ tabSize: '4',
1837
+ WebkitHyphens: 'none',
1838
+ MozHyphens: 'none',
1839
+
1840
+ hyphens: 'none',
1841
+ overflow: 'auto',
1842
+ position: 'relative',
1843
+ margin: '0.5em 0',
1844
+ padding: '1.25em 1em',
1845
+ },
1846
+ atrule: {
1847
+ color: '#c792ea',
1848
+ },
1849
+ 'attr-name': {
1850
+ color: '#ffcb6b',
1851
+ },
1852
+ 'attr-value': {
1853
+ color: '#c3e88d',
1854
+ },
1855
+ attribute: {
1856
+ color: '#c3e88d',
1857
+ },
1858
+ boolean: {
1859
+ color: '#c792ea',
1860
+ },
1861
+ builtin: {
1862
+ color: '#ffcb6b',
1863
+ },
1864
+ cdata: {
1865
+ color: '#80cbc4',
1866
+ },
1867
+ char: {
1868
+ color: '#80cbc4',
1869
+ },
1870
+ class: {
1871
+ color: '#ffcb6b',
1872
+ },
1873
+ 'class-name': {
1874
+ color: '#f2ff00',
1875
+ },
1876
+ color: {
1877
+ color: '#f2ff00',
1878
+ },
1879
+ comment: {
1880
+ color: '#546e7a',
1881
+ },
1882
+ constant: {
1883
+ color: '#c792ea',
1884
+ },
1885
+ deleted: {
1886
+ color: '#f07178',
1887
+ },
1888
+ doctype: {
1889
+ color: '#546e7a',
1890
+ },
1891
+ entity: {
1892
+ color: '#f07178',
1893
+ },
1894
+ function: {
1895
+ color: '#c792ea',
1896
+ },
1897
+ hexcode: {
1898
+ color: '#f2ff00',
1899
+ },
1900
+ id: {
1901
+ color: '#c792ea',
1902
+ fontWeight: 'bold',
1903
+ },
1904
+ important: {
1905
+ color: '#c792ea',
1906
+ fontWeight: 'bold',
1907
+ },
1908
+ inserted: {
1909
+ color: '#80cbc4',
1910
+ },
1911
+ keyword: {
1912
+ color: '#c792ea',
1913
+ fontStyle: 'italic',
1914
+ },
1915
+ number: {
1916
+ color: '#fd9170',
1917
+ },
1918
+ operator: {
1919
+ color: '#89ddff',
1920
+ },
1921
+ prolog: {
1922
+ color: '#546e7a',
1923
+ },
1924
+ property: {
1925
+ color: '#80cbc4',
1926
+ },
1927
+ 'pseudo-class': {
1928
+ color: '#c3e88d',
1929
+ },
1930
+ 'pseudo-element': {
1931
+ color: '#c3e88d',
1932
+ },
1933
+ punctuation: {
1934
+ color: '#89ddff',
1935
+ },
1936
+ regex: {
1937
+ color: '#f2ff00',
1938
+ },
1939
+ selector: {
1940
+ color: '#f07178',
1941
+ },
1942
+ string: {
1943
+ color: '#c3e88d',
1944
+ },
1945
+ symbol: {
1946
+ color: '#c792ea',
1947
+ },
1948
+ tag: {
1949
+ color: '#f07178',
1950
+ },
1951
+ unit: {
1952
+ color: '#f07178',
1953
+ },
1954
+ url: {
1955
+ color: '#fd9170',
1956
+ },
1957
+ variable: {
1958
+ color: '#f07178',
1959
+ },
1960
+ } as const;
1961
+ export const duotoneSpace = {
1962
+ base: {
1963
+ fontFamily:
1964
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
1965
+ fontSize: '14px',
1966
+ lineHeight: '1.375',
1967
+ direction: 'ltr',
1968
+ textAlign: 'left',
1969
+ whiteSpace: 'pre',
1970
+ wordSpacing: 'normal',
1971
+ wordBreak: 'normal',
1972
+ MozTabSize: '4',
1973
+ OTabSize: '4',
1974
+ tabSize: '4',
1975
+ WebkitHyphens: 'none',
1976
+ MozHyphens: 'none',
1977
+
1978
+ hyphens: 'none',
1979
+ background: '#24242e',
1980
+ color: '#767693',
1981
+ padding: '1em',
1982
+ margin: '.5em 0',
1983
+ overflow: 'auto',
1984
+ },
1985
+ comment: {
1986
+ color: '#5b5b76',
1987
+ },
1988
+ prolog: {
1989
+ color: '#5b5b76',
1990
+ },
1991
+ doctype: {
1992
+ color: '#5b5b76',
1993
+ },
1994
+ cdata: {
1995
+ color: '#5b5b76',
1996
+ },
1997
+ punctuation: {
1998
+ color: '#5b5b76',
1999
+ },
2000
+ namespace: {
2001
+ opacity: '.7',
2002
+ },
2003
+ tag: {
2004
+ color: '#dd672c',
2005
+ },
2006
+ operator: {
2007
+ color: '#dd672c',
2008
+ },
2009
+ number: {
2010
+ color: '#dd672c',
2011
+ },
2012
+ property: {
2013
+ color: '#767693',
2014
+ },
2015
+ function: {
2016
+ color: '#767693',
2017
+ },
2018
+ 'tag-id': {
2019
+ color: '#ebebff',
2020
+ },
2021
+ selector: {
2022
+ color: '#ebebff',
2023
+ },
2024
+ 'atrule-id': {
2025
+ color: '#ebebff',
2026
+ },
2027
+ 'attr-name': {
2028
+ color: '#aaaaca',
2029
+ },
2030
+ boolean: {
2031
+ color: '#fe8c52',
2032
+ },
2033
+ string: {
2034
+ color: '#fe8c52',
2035
+ },
2036
+ entity: {
2037
+ color: '#fe8c52',
2038
+ cursor: 'help',
2039
+ },
2040
+ url: {
2041
+ color: '#fe8c52',
2042
+ },
2043
+ 'attr-value': {
2044
+ color: '#fe8c52',
2045
+ },
2046
+ keyword: {
2047
+ color: '#fe8c52',
2048
+ },
2049
+ control: {
2050
+ color: '#fe8c52',
2051
+ },
2052
+ directive: {
2053
+ color: '#fe8c52',
2054
+ },
2055
+ unit: {
2056
+ color: '#fe8c52',
2057
+ },
2058
+ statement: {
2059
+ color: '#fe8c52',
2060
+ },
2061
+ regex: {
2062
+ color: '#fe8c52',
2063
+ },
2064
+ atrule: {
2065
+ color: '#fe8c52',
2066
+ },
2067
+ placeholder: {
2068
+ color: '#fe8c52',
2069
+ },
2070
+ variable: {
2071
+ color: '#fe8c52',
2072
+ },
2073
+ deleted: {
2074
+ textDecoration: 'line-through',
2075
+ },
2076
+ inserted: {
2077
+ borderBottom: '1px dotted #ebebff',
2078
+ textDecoration: 'none',
2079
+ },
2080
+ italic: {
2081
+ fontStyle: 'italic',
2082
+ },
2083
+ important: {
2084
+ fontWeight: 'bold',
2085
+ color: '#aaaaca',
2086
+ },
2087
+ bold: {
2088
+ fontWeight: 'bold',
2089
+ },
2090
+ } as const;
2091
+ export const materialLight = {
2092
+ base: {
2093
+ textAlign: 'left',
2094
+ whiteSpace: 'pre',
2095
+ wordSpacing: 'normal',
2096
+ wordBreak: 'normal',
2097
+ wordWrap: 'normal',
2098
+ color: '#90a4ae',
2099
+ background: '#fafafa',
2100
+ fontFamily: 'Roboto Mono, monospace',
2101
+ fontSize: '1em',
2102
+ lineHeight: '1.5em',
2103
+ MozTabSize: '4',
2104
+ OTabSize: '4',
2105
+ tabSize: '4',
2106
+ WebkitHyphens: 'none',
2107
+ MozHyphens: 'none',
2108
+
2109
+ hyphens: 'none',
2110
+ overflow: 'auto',
2111
+ position: 'relative',
2112
+ margin: '0.5em 0',
2113
+ padding: '1.25em 1em',
2114
+ },
2115
+ atrule: {
2116
+ color: '#7c4dff',
2117
+ },
2118
+ 'attr-name': {
2119
+ color: '#39adb5',
2120
+ },
2121
+ 'attr-value': {
2122
+ color: '#f6a434',
2123
+ },
2124
+ attribute: {
2125
+ color: '#f6a434',
2126
+ },
2127
+ boolean: {
2128
+ color: '#7c4dff',
2129
+ },
2130
+ builtin: {
2131
+ color: '#39adb5',
2132
+ },
2133
+ cdata: {
2134
+ color: '#39adb5',
2135
+ },
2136
+ char: {
2137
+ color: '#39adb5',
2138
+ },
2139
+ class: {
2140
+ color: '#39adb5',
2141
+ },
2142
+ 'class-name': {
2143
+ color: '#6182b8',
2144
+ },
2145
+ comment: {
2146
+ color: '#aabfc9',
2147
+ },
2148
+ constant: {
2149
+ color: '#7c4dff',
2150
+ },
2151
+ deleted: {
2152
+ color: '#e53935',
2153
+ },
2154
+ doctype: {
2155
+ color: '#aabfc9',
2156
+ },
2157
+ entity: {
2158
+ color: '#e53935',
2159
+ },
2160
+ function: {
2161
+ color: '#7c4dff',
2162
+ },
2163
+ hexcode: {
2164
+ color: '#f76d47',
2165
+ },
2166
+ id: {
2167
+ color: '#7c4dff',
2168
+ fontWeight: 'bold',
2169
+ },
2170
+ important: {
2171
+ color: '#7c4dff',
2172
+ fontWeight: 'bold',
2173
+ },
2174
+ inserted: {
2175
+ color: '#39adb5',
2176
+ },
2177
+ keyword: {
2178
+ color: '#7c4dff',
2179
+ },
2180
+ number: {
2181
+ color: '#f76d47',
2182
+ },
2183
+ operator: {
2184
+ color: '#39adb5',
2185
+ },
2186
+ prolog: {
2187
+ color: '#aabfc9',
2188
+ },
2189
+ property: {
2190
+ color: '#39adb5',
2191
+ },
2192
+ 'pseudo-class': {
2193
+ color: '#f6a434',
2194
+ },
2195
+ 'pseudo-element': {
2196
+ color: '#f6a434',
2197
+ },
2198
+ punctuation: {
2199
+ color: '#39adb5',
2200
+ },
2201
+ regex: {
2202
+ color: '#6182b8',
2203
+ },
2204
+ selector: {
2205
+ color: '#e53935',
2206
+ },
2207
+ string: {
2208
+ color: '#f6a434',
2209
+ },
2210
+ symbol: {
2211
+ color: '#7c4dff',
2212
+ },
2213
+ tag: {
2214
+ color: '#e53935',
2215
+ },
2216
+ unit: {
2217
+ color: '#f76d47',
2218
+ },
2219
+ url: {
2220
+ color: '#e53935',
2221
+ },
2222
+ variable: {
2223
+ color: '#e53935',
2224
+ },
2225
+ } as const;
2226
+ export const duotoneSea = {
2227
+ base: {
2228
+ fontFamily:
2229
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
2230
+ fontSize: '14px',
2231
+ lineHeight: '1.375',
2232
+ direction: 'ltr',
2233
+ textAlign: 'left',
2234
+ whiteSpace: 'pre',
2235
+ wordSpacing: 'normal',
2236
+ wordBreak: 'normal',
2237
+ MozTabSize: '4',
2238
+ OTabSize: '4',
2239
+ tabSize: '4',
2240
+ WebkitHyphens: 'none',
2241
+ MozHyphens: 'none',
2242
+
2243
+ hyphens: 'none',
2244
+ background: '#1d262f',
2245
+ color: '#57718e',
2246
+ padding: '1em',
2247
+ margin: '.5em 0',
2248
+ overflow: 'auto',
2249
+ },
2250
+ comment: {
2251
+ color: '#4a5f78',
2252
+ },
2253
+ prolog: {
2254
+ color: '#4a5f78',
2255
+ },
2256
+ doctype: {
2257
+ color: '#4a5f78',
2258
+ },
2259
+ cdata: {
2260
+ color: '#4a5f78',
2261
+ },
2262
+ punctuation: {
2263
+ color: '#4a5f78',
2264
+ },
2265
+ namespace: {
2266
+ opacity: '.7',
2267
+ },
2268
+ tag: {
2269
+ color: '#0aa370',
2270
+ },
2271
+ operator: {
2272
+ color: '#0aa370',
2273
+ },
2274
+ number: {
2275
+ color: '#0aa370',
2276
+ },
2277
+ property: {
2278
+ color: '#57718e',
2279
+ },
2280
+ function: {
2281
+ color: '#57718e',
2282
+ },
2283
+ 'tag-id': {
2284
+ color: '#ebf4ff',
2285
+ },
2286
+ selector: {
2287
+ color: '#ebf4ff',
2288
+ },
2289
+ 'atrule-id': {
2290
+ color: '#ebf4ff',
2291
+ },
2292
+ 'attr-name': {
2293
+ color: '#7eb6f6',
2294
+ },
2295
+ boolean: {
2296
+ color: '#47ebb4',
2297
+ },
2298
+ string: {
2299
+ color: '#47ebb4',
2300
+ },
2301
+ entity: {
2302
+ color: '#47ebb4',
2303
+ cursor: 'help',
2304
+ },
2305
+ url: {
2306
+ color: '#47ebb4',
2307
+ },
2308
+ 'attr-value': {
2309
+ color: '#47ebb4',
2310
+ },
2311
+ keyword: {
2312
+ color: '#47ebb4',
2313
+ },
2314
+ control: {
2315
+ color: '#47ebb4',
2316
+ },
2317
+ directive: {
2318
+ color: '#47ebb4',
2319
+ },
2320
+ unit: {
2321
+ color: '#47ebb4',
2322
+ },
2323
+ statement: {
2324
+ color: '#47ebb4',
2325
+ },
2326
+ regex: {
2327
+ color: '#47ebb4',
2328
+ },
2329
+ atrule: {
2330
+ color: '#47ebb4',
2331
+ },
2332
+ placeholder: {
2333
+ color: '#47ebb4',
2334
+ },
2335
+ variable: {
2336
+ color: '#47ebb4',
2337
+ },
2338
+ deleted: {
2339
+ textDecoration: 'line-through',
2340
+ },
2341
+ inserted: {
2342
+ borderBottom: '1px dotted #ebf4ff',
2343
+ textDecoration: 'none',
2344
+ },
2345
+ italic: {
2346
+ fontStyle: 'italic',
2347
+ },
2348
+ important: {
2349
+ fontWeight: 'bold',
2350
+ color: '#7eb6f6',
2351
+ },
2352
+ bold: {
2353
+ fontWeight: 'bold',
2354
+ },
2355
+ } as const;
2356
+ export const a11yDark = {
2357
+ base: {
2358
+ color: '#f8f8f2',
2359
+ background: '#2b2b2b',
2360
+ fontFamily: "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
2361
+ textAlign: 'left',
2362
+ whiteSpace: 'pre',
2363
+ wordSpacing: 'normal',
2364
+ wordBreak: 'normal',
2365
+ wordWrap: 'normal',
2366
+ lineHeight: '1.5',
2367
+ MozTabSize: '4',
2368
+ OTabSize: '4',
2369
+ tabSize: '4',
2370
+ WebkitHyphens: 'none',
2371
+ MozHyphens: 'none',
2372
+
2373
+ hyphens: 'none',
2374
+ padding: '1em',
2375
+ margin: '0.5em 0',
2376
+ overflow: 'auto',
2377
+ borderRadius: '0.3em',
2378
+ },
2379
+ comment: {
2380
+ color: '#d4d0ab',
2381
+ },
2382
+ prolog: {
2383
+ color: '#d4d0ab',
2384
+ },
2385
+ doctype: {
2386
+ color: '#d4d0ab',
2387
+ },
2388
+ cdata: {
2389
+ color: '#d4d0ab',
2390
+ },
2391
+ punctuation: {
2392
+ color: '#fefefe',
2393
+ },
2394
+ property: {
2395
+ color: '#ffa07a',
2396
+ },
2397
+ tag: {
2398
+ color: '#ffa07a',
2399
+ },
2400
+ constant: {
2401
+ color: '#ffa07a',
2402
+ },
2403
+ symbol: {
2404
+ color: '#ffa07a',
2405
+ },
2406
+ deleted: {
2407
+ color: '#ffa07a',
2408
+ },
2409
+ boolean: {
2410
+ color: '#00e0e0',
2411
+ },
2412
+ number: {
2413
+ color: '#00e0e0',
2414
+ },
2415
+ selector: {
2416
+ color: '#abe338',
2417
+ },
2418
+ 'attr-name': {
2419
+ color: '#abe338',
2420
+ },
2421
+ string: {
2422
+ color: '#abe338',
2423
+ },
2424
+ char: {
2425
+ color: '#abe338',
2426
+ },
2427
+ builtin: {
2428
+ color: '#abe338',
2429
+ },
2430
+ inserted: {
2431
+ color: '#abe338',
2432
+ },
2433
+ operator: {
2434
+ color: '#00e0e0',
2435
+ },
2436
+ entity: {
2437
+ color: '#00e0e0',
2438
+ cursor: 'help',
2439
+ },
2440
+ url: {
2441
+ color: '#00e0e0',
2442
+ },
2443
+ variable: {
2444
+ color: '#00e0e0',
2445
+ },
2446
+ atrule: {
2447
+ color: '#ffd700',
2448
+ },
2449
+ 'attr-value': {
2450
+ color: '#ffd700',
2451
+ },
2452
+ function: {
2453
+ color: '#ffd700',
2454
+ },
2455
+ keyword: {
2456
+ color: '#00e0e0',
2457
+ },
2458
+ regex: {
2459
+ color: '#ffd700',
2460
+ },
2461
+ important: {
2462
+ color: '#ffd700',
2463
+ fontWeight: 'bold',
2464
+ },
2465
+ bold: {
2466
+ fontWeight: 'bold',
2467
+ },
2468
+ italic: {
2469
+ fontStyle: 'italic',
2470
+ },
2471
+ } as const;
2472
+ export const darcula = {
2473
+ base: {
2474
+ color: '#a9b7c6',
2475
+ fontFamily: "Consolas, Monaco, 'Andale Mono', monospace",
2476
+ direction: 'ltr',
2477
+ textAlign: 'left',
2478
+ whiteSpace: 'pre',
2479
+ wordSpacing: 'normal',
2480
+ wordBreak: 'normal',
2481
+ lineHeight: '1.5',
2482
+ MozTabSize: '4',
2483
+ OTabSize: '4',
2484
+ tabSize: '4',
2485
+ WebkitHyphens: 'none',
2486
+ MozHyphens: 'none',
2487
+
2488
+ hyphens: 'none',
2489
+ padding: '1em',
2490
+ margin: '.5em 0',
2491
+ overflow: 'auto',
2492
+ background: '#2b2b2b',
2493
+ },
2494
+ comment: {
2495
+ color: '#808080',
2496
+ },
2497
+ prolog: {
2498
+ color: '#808080',
2499
+ },
2500
+ cdata: {
2501
+ color: '#808080',
2502
+ },
2503
+ delimiter: {
2504
+ color: '#cc7832',
2505
+ },
2506
+ boolean: {
2507
+ color: '#cc7832',
2508
+ },
2509
+ keyword: {
2510
+ color: '#cc7832',
2511
+ },
2512
+ selector: {
2513
+ color: '#cc7832',
2514
+ },
2515
+ important: {
2516
+ color: '#cc7832',
2517
+ },
2518
+ atrule: {
2519
+ color: '#cc7832',
2520
+ },
2521
+ operator: {
2522
+ color: '#a9b7c6',
2523
+ },
2524
+ punctuation: {
2525
+ color: '#a9b7c6',
2526
+ },
2527
+ 'attr-name': {
2528
+ color: '#a9b7c6',
2529
+ },
2530
+ tag: {
2531
+ color: '#e8bf6a',
2532
+ },
2533
+ 'tag .punctuation': {
2534
+ color: '#e8bf6a',
2535
+ },
2536
+ doctype: {
2537
+ color: '#e8bf6a',
2538
+ },
2539
+ builtin: {
2540
+ color: '#e8bf6a',
2541
+ },
2542
+ entity: {
2543
+ color: '#6897bb',
2544
+ },
2545
+ number: {
2546
+ color: '#6897bb',
2547
+ },
2548
+ symbol: {
2549
+ color: '#6897bb',
2550
+ },
2551
+ property: {
2552
+ color: '#9876aa',
2553
+ },
2554
+ constant: {
2555
+ color: '#9876aa',
2556
+ },
2557
+ variable: {
2558
+ color: '#9876aa',
2559
+ },
2560
+ string: {
2561
+ color: '#6a8759',
2562
+ },
2563
+ char: {
2564
+ color: '#6a8759',
2565
+ },
2566
+ 'attr-value': {
2567
+ color: '#a5c261',
2568
+ },
2569
+ 'attr-value .punctuation': {
2570
+ color: '#a5c261',
2571
+ },
2572
+ 'attr-value .punctuation:first-child': {
2573
+ color: '#a9b7c6',
2574
+ },
2575
+ url: {
2576
+ color: '#287bde',
2577
+ textDecoration: 'underline',
2578
+ },
2579
+ function: {
2580
+ color: '#ffc66d',
2581
+ },
2582
+ regex: {
2583
+ background: '#364135',
2584
+ },
2585
+ bold: {
2586
+ fontWeight: 'bold',
2587
+ },
2588
+ italic: {
2589
+ fontStyle: 'italic',
2590
+ },
2591
+ inserted: {
2592
+ background: '#294436',
2593
+ },
2594
+ deleted: {
2595
+ background: '#484a4a',
2596
+ },
2597
+ } as const;
2598
+ export const zTouch = {
2599
+ base: {
2600
+ color: 'white',
2601
+ fontFamily: 'monospace',
2602
+ textAlign: 'left',
2603
+ whiteSpace: 'pre',
2604
+ wordSpacing: 'normal',
2605
+ wordBreak: 'normal',
2606
+ wordWrap: 'normal',
2607
+ MozTabSize: '4',
2608
+ OTabSize: '4',
2609
+ tabSize: '4',
2610
+ WebkitHyphens: 'none',
2611
+ MozHyphens: 'none',
2612
+
2613
+ hyphens: 'none',
2614
+ lineHeight: '25px',
2615
+ fontSize: '18px',
2616
+ margin: '0.5em 0',
2617
+ background: '#0a143c',
2618
+ padding: '1em',
2619
+ overflow: 'auto',
2620
+ },
2621
+ comment: {
2622
+ color: 'rgb(99, 119, 119)',
2623
+ fontStyle: 'italic',
2624
+ },
2625
+ prolog: {
2626
+ color: 'rgb(99, 119, 119)',
2627
+ fontStyle: 'italic',
2628
+ },
2629
+ cdata: {
2630
+ color: 'rgb(99, 119, 119)',
2631
+ fontStyle: 'italic',
2632
+ },
2633
+ punctuation: {
2634
+ color: 'rgb(199, 146, 234)',
2635
+ },
2636
+ deleted: {
2637
+ color: 'rgba(239, 83, 80, 0.56)',
2638
+ fontStyle: 'italic',
2639
+ },
2640
+ symbol: {
2641
+ color: 'rgb(128, 203, 196)',
2642
+ },
2643
+ property: {
2644
+ color: 'rgb(128, 203, 196)',
2645
+ },
2646
+ tag: {
2647
+ color: 'rgb(127, 219, 202)',
2648
+ },
2649
+ operator: {
2650
+ color: 'rgb(127, 219, 202)',
2651
+ },
2652
+ keyword: {
2653
+ color: 'rgb(127, 219, 202)',
2654
+ },
2655
+ boolean: {
2656
+ color: 'rgb(255, 88, 116)',
2657
+ },
2658
+ number: {
2659
+ color: 'rgb(247, 140, 108)',
2660
+ },
2661
+ constant: {
2662
+ color: 'rgb(34 183 199)',
2663
+ },
2664
+ function: {
2665
+ color: 'rgb(34 183 199)',
2666
+ },
2667
+ builtin: {
2668
+ color: 'rgb(34 183 199)',
2669
+ },
2670
+ char: {
2671
+ color: 'rgb(34 183 199)',
2672
+ },
2673
+ selector: {
2674
+ color: 'rgb(199, 146, 234)',
2675
+ fontStyle: 'italic',
2676
+ },
2677
+ doctype: {
2678
+ color: 'rgb(199, 146, 234)',
2679
+ fontStyle: 'italic',
2680
+ },
2681
+ 'attr-name': {
2682
+ color: 'rgb(173, 219, 103)',
2683
+ fontStyle: 'italic',
2684
+ },
2685
+ inserted: {
2686
+ color: 'rgb(173, 219, 103)',
2687
+ fontStyle: 'italic',
2688
+ },
2689
+ string: {
2690
+ color: 'rgb(173, 219, 103)',
2691
+ },
2692
+ url: {
2693
+ color: 'rgb(173, 219, 103)',
2694
+ },
2695
+ entity: {
2696
+ color: 'rgb(173, 219, 103)',
2697
+ },
2698
+ 'class-name': {
2699
+ color: 'rgb(255, 203, 139)',
2700
+ },
2701
+ atrule: {
2702
+ color: 'rgb(255, 203, 139)',
2703
+ },
2704
+ 'attr-value': {
2705
+ color: 'rgb(255, 203, 139)',
2706
+ },
2707
+ regex: {
2708
+ color: 'rgb(214, 222, 235)',
2709
+ },
2710
+ important: {
2711
+ color: 'rgb(214, 222, 235)',
2712
+ fontWeight: 'bold',
2713
+ },
2714
+ variable: {
2715
+ color: 'rgb(214, 222, 235)',
2716
+ },
2717
+ bold: {
2718
+ fontWeight: 'bold',
2719
+ },
2720
+ italic: {
2721
+ fontStyle: 'italic',
2722
+ },
2723
+ } as const;
2724
+ export const duotoneEarth = {
2725
+ base: {
2726
+ fontFamily:
2727
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
2728
+ fontSize: '14px',
2729
+ lineHeight: '1.375',
2730
+ direction: 'ltr',
2731
+ textAlign: 'left',
2732
+ whiteSpace: 'pre',
2733
+ wordSpacing: 'normal',
2734
+ wordBreak: 'normal',
2735
+ MozTabSize: '4',
2736
+ OTabSize: '4',
2737
+ tabSize: '4',
2738
+ WebkitHyphens: 'none',
2739
+ MozHyphens: 'none',
2740
+
2741
+ hyphens: 'none',
2742
+ background: '#322d29',
2743
+ color: '#88786d',
2744
+ padding: '1em',
2745
+ margin: '.5em 0',
2746
+ overflow: 'auto',
2747
+ },
2748
+ comment: {
2749
+ color: '#6a5f58',
2750
+ },
2751
+ prolog: {
2752
+ color: '#6a5f58',
2753
+ },
2754
+ doctype: {
2755
+ color: '#6a5f58',
2756
+ },
2757
+ cdata: {
2758
+ color: '#6a5f58',
2759
+ },
2760
+ punctuation: {
2761
+ color: '#6a5f58',
2762
+ },
2763
+ namespace: {
2764
+ opacity: '.7',
2765
+ },
2766
+ tag: {
2767
+ color: '#bfa05a',
2768
+ },
2769
+ operator: {
2770
+ color: '#bfa05a',
2771
+ },
2772
+ number: {
2773
+ color: '#bfa05a',
2774
+ },
2775
+ property: {
2776
+ color: '#88786d',
2777
+ },
2778
+ function: {
2779
+ color: '#88786d',
2780
+ },
2781
+ 'tag-id': {
2782
+ color: '#fff3eb',
2783
+ },
2784
+ selector: {
2785
+ color: '#fff3eb',
2786
+ },
2787
+ 'atrule-id': {
2788
+ color: '#fff3eb',
2789
+ },
2790
+ 'attr-name': {
2791
+ color: '#a48774',
2792
+ },
2793
+ boolean: {
2794
+ color: '#fcc440',
2795
+ },
2796
+ string: {
2797
+ color: '#fcc440',
2798
+ },
2799
+ entity: {
2800
+ color: '#fcc440',
2801
+ cursor: 'help',
2802
+ },
2803
+ url: {
2804
+ color: '#fcc440',
2805
+ },
2806
+ 'attr-value': {
2807
+ color: '#fcc440',
2808
+ },
2809
+ keyword: {
2810
+ color: '#fcc440',
2811
+ },
2812
+ control: {
2813
+ color: '#fcc440',
2814
+ },
2815
+ directive: {
2816
+ color: '#fcc440',
2817
+ },
2818
+ unit: {
2819
+ color: '#fcc440',
2820
+ },
2821
+ statement: {
2822
+ color: '#fcc440',
2823
+ },
2824
+ regex: {
2825
+ color: '#fcc440',
2826
+ },
2827
+ atrule: {
2828
+ color: '#fcc440',
2829
+ },
2830
+ placeholder: {
2831
+ color: '#fcc440',
2832
+ },
2833
+ variable: {
2834
+ color: '#fcc440',
2835
+ },
2836
+ deleted: {
2837
+ textDecoration: 'line-through',
2838
+ },
2839
+ inserted: {
2840
+ borderBottom: '1px dotted #fff3eb',
2841
+ textDecoration: 'none',
2842
+ },
2843
+ italic: {
2844
+ fontStyle: 'italic',
2845
+ },
2846
+ important: {
2847
+ fontWeight: 'bold',
2848
+ color: '#a48774',
2849
+ },
2850
+ bold: {
2851
+ fontWeight: 'bold',
2852
+ },
2853
+ } as const;
2854
+ export const gruvboxLight = {
2855
+ base: {
2856
+ color: '#3c3836',
2857
+ fontFamily: 'Consolas, Monaco, "Andale Mono", monospace',
2858
+ direction: 'ltr',
2859
+ textAlign: 'left',
2860
+ whiteSpace: 'pre',
2861
+ wordSpacing: 'normal',
2862
+ wordBreak: 'normal',
2863
+ lineHeight: '1.5',
2864
+ MozTabSize: '4',
2865
+ OTabSize: '4',
2866
+ tabSize: '4',
2867
+ WebkitHyphens: 'none',
2868
+ MozHyphens: 'none',
2869
+
2870
+ hyphens: 'none',
2871
+ padding: '1em',
2872
+ margin: '0.5em 0',
2873
+ overflow: 'auto',
2874
+ background: '#f9f5d7',
2875
+ },
2876
+ comment: {
2877
+ color: '#7c6f64',
2878
+ },
2879
+ prolog: {
2880
+ color: '#7c6f64',
2881
+ },
2882
+ cdata: {
2883
+ color: '#7c6f64',
2884
+ },
2885
+ delimiter: {
2886
+ color: '#9d0006',
2887
+ },
2888
+ boolean: {
2889
+ color: '#9d0006',
2890
+ },
2891
+ keyword: {
2892
+ color: '#9d0006',
2893
+ },
2894
+ selector: {
2895
+ color: '#9d0006',
2896
+ },
2897
+ important: {
2898
+ color: '#9d0006',
2899
+ },
2900
+ atrule: {
2901
+ color: '#9d0006',
2902
+ },
2903
+ operator: {
2904
+ color: '#7c6f64',
2905
+ },
2906
+ punctuation: {
2907
+ color: '#7c6f64',
2908
+ },
2909
+ 'attr-name': {
2910
+ color: '#7c6f64',
2911
+ },
2912
+ tag: {
2913
+ color: '#b57614',
2914
+ },
2915
+ 'tag .punctuation': {
2916
+ color: '#b57614',
2917
+ },
2918
+ doctype: {
2919
+ color: '#b57614',
2920
+ },
2921
+ builtin: {
2922
+ color: '#b57614',
2923
+ },
2924
+ entity: {
2925
+ color: '#8f3f71',
2926
+ },
2927
+ number: {
2928
+ color: '#8f3f71',
2929
+ },
2930
+ symbol: {
2931
+ color: '#8f3f71',
2932
+ },
2933
+ property: {
2934
+ color: '#9d0006',
2935
+ },
2936
+ constant: {
2937
+ color: '#9d0006',
2938
+ },
2939
+ variable: {
2940
+ color: '#9d0006',
2941
+ },
2942
+ string: {
2943
+ color: '#797403',
2944
+ },
2945
+ char: {
2946
+ color: '#797403',
2947
+ },
2948
+ 'attr-value': {
2949
+ color: '#7c6f64',
2950
+ },
2951
+ 'attr-value .punctuation': {
2952
+ color: '#7c6f64',
2953
+ },
2954
+ url: {
2955
+ color: '#797403',
2956
+ textDecoration: 'underline',
2957
+ },
2958
+ function: {
2959
+ color: '#b57614',
2960
+ },
2961
+ regex: {
2962
+ background: '#797403',
2963
+ },
2964
+ bold: {
2965
+ fontWeight: 'bold',
2966
+ },
2967
+ italic: {
2968
+ fontStyle: 'italic',
2969
+ },
2970
+ inserted: {
2971
+ background: '#7c6f64',
2972
+ },
2973
+ deleted: {
2974
+ background: '#9d0006',
2975
+ },
2976
+ } as const;
2977
+ export const oneDark = {
2978
+ base: {
2979
+ background: 'hsl(220, 13%, 18%)',
2980
+ color: 'hsl(220, 14%, 71%)',
2981
+ textShadow: '0 1px rgba(0, 0, 0, 0.3)',
2982
+ fontFamily:
2983
+ '"Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace',
2984
+ direction: 'ltr',
2985
+ textAlign: 'left',
2986
+ whiteSpace: 'pre',
2987
+ wordSpacing: 'normal',
2988
+ wordBreak: 'normal',
2989
+ lineHeight: '1.5',
2990
+ MozTabSize: '2',
2991
+ OTabSize: '2',
2992
+ tabSize: '2',
2993
+ WebkitHyphens: 'none',
2994
+ MozHyphens: 'none',
2995
+
2996
+ hyphens: 'none',
2997
+ padding: '1em',
2998
+ margin: '0.5em 0',
2999
+ overflow: 'auto',
3000
+ borderRadius: '0.3em',
3001
+ },
3002
+ comment: {
3003
+ color: 'hsl(220, 10%, 40%)',
3004
+ fontStyle: 'italic',
3005
+ },
3006
+ prolog: {
3007
+ color: 'hsl(220, 10%, 40%)',
3008
+ },
3009
+ cdata: {
3010
+ color: 'hsl(220, 10%, 40%)',
3011
+ },
3012
+ doctype: {
3013
+ color: 'hsl(220, 14%, 71%)',
3014
+ },
3015
+ punctuation: {
3016
+ color: 'hsl(220, 14%, 71%)',
3017
+ },
3018
+ entity: {
3019
+ color: 'hsl(220, 14%, 71%)',
3020
+ cursor: 'help',
3021
+ },
3022
+ 'attr-name': {
3023
+ color: 'hsl(29, 54%, 61%)',
3024
+ },
3025
+ 'class-name': {
3026
+ color: 'hsl(29, 54%, 61%)',
3027
+ },
3028
+ boolean: {
3029
+ color: 'hsl(29, 54%, 61%)',
3030
+ },
3031
+ constant: {
3032
+ color: 'hsl(29, 54%, 61%)',
3033
+ },
3034
+ number: {
3035
+ color: 'hsl(29, 54%, 61%)',
3036
+ },
3037
+ atrule: {
3038
+ color: 'hsl(29, 54%, 61%)',
3039
+ },
3040
+ keyword: {
3041
+ color: 'hsl(286, 60%, 67%)',
3042
+ },
3043
+ property: {
3044
+ color: 'hsl(355, 65%, 65%)',
3045
+ },
3046
+ tag: {
3047
+ color: 'hsl(355, 65%, 65%)',
3048
+ },
3049
+ symbol: {
3050
+ color: 'hsl(355, 65%, 65%)',
3051
+ },
3052
+ deleted: {
3053
+ color: 'hsl(355, 65%, 65%)',
3054
+ },
3055
+ important: {
3056
+ color: 'hsl(355, 65%, 65%)',
3057
+ },
3058
+ selector: {
3059
+ color: 'hsl(95, 38%, 62%)',
3060
+ },
3061
+ string: {
3062
+ color: 'hsl(95, 38%, 62%)',
3063
+ },
3064
+ char: {
3065
+ color: 'hsl(95, 38%, 62%)',
3066
+ },
3067
+ builtin: {
3068
+ color: 'hsl(95, 38%, 62%)',
3069
+ },
3070
+ inserted: {
3071
+ color: 'hsl(95, 38%, 62%)',
3072
+ },
3073
+ regex: {
3074
+ color: 'hsl(95, 38%, 62%)',
3075
+ },
3076
+ 'attr-value': {
3077
+ color: 'hsl(95, 38%, 62%)',
3078
+ },
3079
+ 'attr-value > .token.punctuation': {
3080
+ color: 'hsl(95, 38%, 62%)',
3081
+ },
3082
+ variable: {
3083
+ color: 'hsl(207, 82%, 66%)',
3084
+ },
3085
+ operator: {
3086
+ color: 'hsl(207, 82%, 66%)',
3087
+ },
3088
+ function: {
3089
+ color: 'hsl(207, 82%, 66%)',
3090
+ },
3091
+ url: {
3092
+ color: 'hsl(187, 47%, 55%)',
3093
+ },
3094
+ 'attr-value > .token.punctuation.attr-equals': {
3095
+ color: 'hsl(220, 14%, 71%)',
3096
+ },
3097
+ 'special-attr > .token.attr-value > .token.value.css': {
3098
+ color: 'hsl(220, 14%, 71%)',
3099
+ },
3100
+ bold: {
3101
+ fontWeight: 'bold',
3102
+ },
3103
+ italic: {
3104
+ fontStyle: 'italic',
3105
+ },
3106
+ namespace: {
3107
+ opacity: '0.8',
3108
+ },
3109
+ 'token.tab:not(:empty):before': {
3110
+ color: 'hsla(220, 14%, 71%, 0.15)',
3111
+ textShadow: 'none',
3112
+ },
3113
+ 'token.cr:before': {
3114
+ color: 'hsla(220, 14%, 71%, 0.15)',
3115
+ textShadow: 'none',
3116
+ },
3117
+ 'token.lf:before': {
3118
+ color: 'hsla(220, 14%, 71%, 0.15)',
3119
+ textShadow: 'none',
3120
+ },
3121
+ 'token.space:before': {
3122
+ color: 'hsla(220, 14%, 71%, 0.15)',
3123
+ textShadow: 'none',
3124
+ },
3125
+ } as const;
3126
+ export const duotoneDark = {
3127
+ base: {
3128
+ fontFamily:
3129
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
3130
+ fontSize: '14px',
3131
+ lineHeight: '1.375',
3132
+ direction: 'ltr',
3133
+ textAlign: 'left',
3134
+ whiteSpace: 'pre',
3135
+ wordSpacing: 'normal',
3136
+ wordBreak: 'normal',
3137
+ MozTabSize: '4',
3138
+ OTabSize: '4',
3139
+ tabSize: '4',
3140
+ WebkitHyphens: 'none',
3141
+ MozHyphens: 'none',
3142
+
3143
+ hyphens: 'none',
3144
+ background: '#2a2734',
3145
+ color: '#9a86fd',
3146
+ padding: '1em',
3147
+ margin: '.5em 0',
3148
+ overflow: 'auto',
3149
+ },
3150
+ comment: {
3151
+ color: '#6c6783',
3152
+ },
3153
+ prolog: {
3154
+ color: '#6c6783',
3155
+ },
3156
+ doctype: {
3157
+ color: '#6c6783',
3158
+ },
3159
+ cdata: {
3160
+ color: '#6c6783',
3161
+ },
3162
+ punctuation: {
3163
+ color: '#6c6783',
3164
+ },
3165
+ namespace: {
3166
+ opacity: '.7',
3167
+ },
3168
+ tag: {
3169
+ color: '#e09142',
3170
+ },
3171
+ operator: {
3172
+ color: '#e09142',
3173
+ },
3174
+ number: {
3175
+ color: '#e09142',
3176
+ },
3177
+ property: {
3178
+ color: '#9a86fd',
3179
+ },
3180
+ function: {
3181
+ color: '#9a86fd',
3182
+ },
3183
+ 'tag-id': {
3184
+ color: '#eeebff',
3185
+ },
3186
+ selector: {
3187
+ color: '#eeebff',
3188
+ },
3189
+ 'atrule-id': {
3190
+ color: '#eeebff',
3191
+ },
3192
+ 'attr-name': {
3193
+ color: '#c4b9fe',
3194
+ },
3195
+ boolean: {
3196
+ color: '#ffcc99',
3197
+ },
3198
+ string: {
3199
+ color: '#ffcc99',
3200
+ },
3201
+ entity: {
3202
+ color: '#ffcc99',
3203
+ cursor: 'help',
3204
+ },
3205
+ url: {
3206
+ color: '#ffcc99',
3207
+ },
3208
+ 'attr-value': {
3209
+ color: '#ffcc99',
3210
+ },
3211
+ keyword: {
3212
+ color: '#ffcc99',
3213
+ },
3214
+ control: {
3215
+ color: '#ffcc99',
3216
+ },
3217
+ directive: {
3218
+ color: '#ffcc99',
3219
+ },
3220
+ unit: {
3221
+ color: '#ffcc99',
3222
+ },
3223
+ statement: {
3224
+ color: '#ffcc99',
3225
+ },
3226
+ regex: {
3227
+ color: '#ffcc99',
3228
+ },
3229
+ atrule: {
3230
+ color: '#ffcc99',
3231
+ },
3232
+ placeholder: {
3233
+ color: '#ffcc99',
3234
+ },
3235
+ variable: {
3236
+ color: '#ffcc99',
3237
+ },
3238
+ deleted: {
3239
+ textDecoration: 'line-through',
3240
+ },
3241
+ inserted: {
3242
+ borderBottom: '1px dotted #eeebff',
3243
+ textDecoration: 'none',
3244
+ },
3245
+ italic: {
3246
+ fontStyle: 'italic',
3247
+ },
3248
+ important: {
3249
+ fontWeight: 'bold',
3250
+ color: '#c4b9fe',
3251
+ },
3252
+ bold: {
3253
+ fontWeight: 'bold',
3254
+ },
3255
+ } as const;
3256
+ export const lucario = {
3257
+ base: {
3258
+ color: '#f8f8f2',
3259
+ background: '#263E52',
3260
+ textShadow: '0 1px rgba(0, 0, 0, 0.3)',
3261
+ fontFamily: "Monaco, Consolas, 'Andale Mono', 'Ubuntu Mono', monospace",
3262
+ textAlign: 'left',
3263
+ whiteSpace: 'pre',
3264
+ wordSpacing: 'normal',
3265
+ wordBreak: 'normal',
3266
+ wordWrap: 'normal',
3267
+ lineHeight: '1.5',
3268
+ MozTabSize: '4',
3269
+ OTabSize: '4',
3270
+ tabSize: '4',
3271
+ WebkitHyphens: 'none',
3272
+ MozHyphens: 'none',
3273
+
3274
+ hyphens: 'none',
3275
+ padding: '1em',
3276
+ margin: '.5em 0',
3277
+ overflow: 'auto',
3278
+ borderRadius: '0.3em',
3279
+ },
3280
+ comment: {
3281
+ color: '#5c98cd',
3282
+ },
3283
+ prolog: {
3284
+ color: '#5c98cd',
3285
+ },
3286
+ doctype: {
3287
+ color: '#5c98cd',
3288
+ },
3289
+ cdata: {
3290
+ color: '#5c98cd',
3291
+ },
3292
+ punctuation: {
3293
+ color: '#f8f8f2',
3294
+ },
3295
+ property: {
3296
+ color: '#F05E5D',
3297
+ },
3298
+ tag: {
3299
+ color: '#F05E5D',
3300
+ },
3301
+ constant: {
3302
+ color: '#F05E5D',
3303
+ },
3304
+ symbol: {
3305
+ color: '#F05E5D',
3306
+ },
3307
+ deleted: {
3308
+ color: '#F05E5D',
3309
+ },
3310
+ boolean: {
3311
+ color: '#BC94F9',
3312
+ },
3313
+ number: {
3314
+ color: '#BC94F9',
3315
+ },
3316
+ selector: {
3317
+ color: '#FCFCD6',
3318
+ },
3319
+ 'attr-name': {
3320
+ color: '#FCFCD6',
3321
+ },
3322
+ string: {
3323
+ color: '#FCFCD6',
3324
+ },
3325
+ char: {
3326
+ color: '#FCFCD6',
3327
+ },
3328
+ builtin: {
3329
+ color: '#FCFCD6',
3330
+ },
3331
+ inserted: {
3332
+ color: '#FCFCD6',
3333
+ },
3334
+ operator: {
3335
+ color: '#f8f8f2',
3336
+ },
3337
+ entity: {
3338
+ color: '#f8f8f2',
3339
+ cursor: 'help',
3340
+ },
3341
+ url: {
3342
+ color: '#f8f8f2',
3343
+ },
3344
+ variable: {
3345
+ color: '#f8f8f2',
3346
+ },
3347
+ atrule: {
3348
+ color: '#66D8EF',
3349
+ },
3350
+ 'attr-value': {
3351
+ color: '#66D8EF',
3352
+ },
3353
+ function: {
3354
+ color: '#66D8EF',
3355
+ },
3356
+ 'class-name': {
3357
+ color: '#66D8EF',
3358
+ },
3359
+ keyword: {
3360
+ color: '#6EB26E',
3361
+ },
3362
+ regex: {
3363
+ color: '#F05E5D',
3364
+ },
3365
+ important: {
3366
+ color: '#F05E5D',
3367
+ fontWeight: 'bold',
3368
+ },
3369
+ bold: {
3370
+ fontWeight: 'bold',
3371
+ },
3372
+ italic: {
3373
+ fontStyle: 'italic',
3374
+ },
3375
+ } as const;
3376
+ export const coldarkDark = {
3377
+ base: {
3378
+ color: '#e3eaf2',
3379
+ background: '#111b27',
3380
+ fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
3381
+ textAlign: 'left',
3382
+ whiteSpace: 'pre',
3383
+ wordSpacing: 'normal',
3384
+ wordBreak: 'normal',
3385
+ wordWrap: 'normal',
3386
+ lineHeight: '1.5',
3387
+ MozTabSize: '4',
3388
+ OTabSize: '4',
3389
+ tabSize: '4',
3390
+ WebkitHyphens: 'none',
3391
+ MozHyphens: 'none',
3392
+
3393
+ hyphens: 'none',
3394
+ padding: '1em',
3395
+ margin: '0.5em 0',
3396
+ overflow: 'auto',
3397
+ },
3398
+ comment: {
3399
+ color: '#8da1b9',
3400
+ },
3401
+ prolog: {
3402
+ color: '#8da1b9',
3403
+ },
3404
+ doctype: {
3405
+ color: '#8da1b9',
3406
+ },
3407
+ cdata: {
3408
+ color: '#8da1b9',
3409
+ },
3410
+ punctuation: {
3411
+ color: '#e3eaf2',
3412
+ },
3413
+ 'delimiter.important': {
3414
+ color: '#66cccc',
3415
+ fontWeight: 'inherit',
3416
+ },
3417
+ 'selector .parent': {
3418
+ color: '#66cccc',
3419
+ },
3420
+ tag: {
3421
+ color: '#66cccc',
3422
+ },
3423
+ 'tag .token.punctuation': {
3424
+ color: '#66cccc',
3425
+ },
3426
+ 'attr-name': {
3427
+ color: '#e6d37a',
3428
+ },
3429
+ boolean: {
3430
+ color: '#e6d37a',
3431
+ },
3432
+ 'boolean.important': {
3433
+ color: '#e6d37a',
3434
+ },
3435
+ number: {
3436
+ color: '#e6d37a',
3437
+ },
3438
+ constant: {
3439
+ color: '#e6d37a',
3440
+ },
3441
+ 'selector .token.attribute': {
3442
+ color: '#e6d37a',
3443
+ },
3444
+ 'class-name': {
3445
+ color: '#6cb8e6',
3446
+ },
3447
+ key: {
3448
+ color: '#6cb8e6',
3449
+ },
3450
+ parameter: {
3451
+ color: '#6cb8e6',
3452
+ },
3453
+ property: {
3454
+ color: '#6cb8e6',
3455
+ },
3456
+ 'property-access': {
3457
+ color: '#6cb8e6',
3458
+ },
3459
+ variable: {
3460
+ color: '#6cb8e6',
3461
+ },
3462
+ 'attr-value': {
3463
+ color: '#91d076',
3464
+ },
3465
+ inserted: {
3466
+ color: '#91d076',
3467
+ },
3468
+ color: {
3469
+ color: '#91d076',
3470
+ },
3471
+ 'selector .token.value': {
3472
+ color: '#91d076',
3473
+ },
3474
+ string: {
3475
+ color: '#91d076',
3476
+ },
3477
+ 'string .token.url-link': {
3478
+ color: '#91d076',
3479
+ },
3480
+ builtin: {
3481
+ color: '#f4adf4',
3482
+ },
3483
+ 'keyword-array': {
3484
+ color: '#f4adf4',
3485
+ },
3486
+ package: {
3487
+ color: '#f4adf4',
3488
+ },
3489
+ regex: {
3490
+ color: '#f4adf4',
3491
+ },
3492
+ function: {
3493
+ color: '#c699e3',
3494
+ },
3495
+ 'selector .token.class': {
3496
+ color: '#c699e3',
3497
+ },
3498
+ 'selector .token.id': {
3499
+ color: '#c699e3',
3500
+ },
3501
+ 'atrule .token.rule': {
3502
+ color: '#e9ae7e',
3503
+ },
3504
+ combinator: {
3505
+ color: '#e9ae7e',
3506
+ },
3507
+ keyword: {
3508
+ color: '#e9ae7e',
3509
+ },
3510
+ operator: {
3511
+ color: '#e9ae7e',
3512
+ },
3513
+ 'pseudo-class': {
3514
+ color: '#e9ae7e',
3515
+ },
3516
+ 'pseudo-element': {
3517
+ color: '#e9ae7e',
3518
+ },
3519
+ selector: {
3520
+ color: '#e9ae7e',
3521
+ },
3522
+ unit: {
3523
+ color: '#e9ae7e',
3524
+ },
3525
+ deleted: {
3526
+ color: '#cd6660',
3527
+ },
3528
+ important: {
3529
+ color: '#cd6660',
3530
+ fontWeight: 'bold',
3531
+ },
3532
+ 'keyword-this': {
3533
+ color: '#6cb8e6',
3534
+ fontWeight: 'bold',
3535
+ },
3536
+ this: {
3537
+ color: '#6cb8e6',
3538
+ fontWeight: 'bold',
3539
+ },
3540
+ bold: {
3541
+ fontWeight: 'bold',
3542
+ },
3543
+ italic: {
3544
+ fontStyle: 'italic',
3545
+ },
3546
+ entity: {
3547
+ cursor: 'help',
3548
+ },
3549
+ 'token.tab:not(:empty):before': {
3550
+ color: '#8da1b9',
3551
+ },
3552
+ 'token.cr:before': {
3553
+ color: '#8da1b9',
3554
+ },
3555
+ 'token.lf:before': {
3556
+ color: '#8da1b9',
3557
+ },
3558
+ 'token.space:before': {
3559
+ color: '#8da1b9',
3560
+ },
3561
+ } as const;
3562
+ export const atomDark = {
3563
+ base: {
3564
+ color: '#c5c8c6',
3565
+ textShadow: '0 1px rgba(0, 0, 0, 0.3)',
3566
+ fontFamily:
3567
+ "Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace",
3568
+ direction: 'ltr',
3569
+ textAlign: 'left',
3570
+ whiteSpace: 'pre',
3571
+ wordSpacing: 'normal',
3572
+ wordBreak: 'normal',
3573
+ lineHeight: '1.5',
3574
+ MozTabSize: '4',
3575
+ OTabSize: '4',
3576
+ tabSize: '4',
3577
+ WebkitHyphens: 'none',
3578
+ MozHyphens: 'none',
3579
+
3580
+ hyphens: 'none',
3581
+ padding: '1em',
3582
+ margin: '.5em 0',
3583
+ overflow: 'auto',
3584
+ borderRadius: '0.3em',
3585
+ background: '#1d1f21',
3586
+ },
3587
+ comment: {
3588
+ color: '#7C7C7C',
3589
+ },
3590
+ prolog: {
3591
+ color: '#7C7C7C',
3592
+ },
3593
+ doctype: {
3594
+ color: '#7C7C7C',
3595
+ },
3596
+ cdata: {
3597
+ color: '#7C7C7C',
3598
+ },
3599
+ punctuation: {
3600
+ color: '#c5c8c6',
3601
+ },
3602
+ property: {
3603
+ color: '#96CBFE',
3604
+ },
3605
+ keyword: {
3606
+ color: '#96CBFE',
3607
+ },
3608
+ tag: {
3609
+ color: '#96CBFE',
3610
+ },
3611
+ 'class-name': {
3612
+ color: '#FFFFB6',
3613
+ textDecoration: 'underline',
3614
+ },
3615
+ boolean: {
3616
+ color: '#99CC99',
3617
+ },
3618
+ constant: {
3619
+ color: '#99CC99',
3620
+ },
3621
+ symbol: {
3622
+ color: '#f92672',
3623
+ },
3624
+ deleted: {
3625
+ color: '#f92672',
3626
+ },
3627
+ number: {
3628
+ color: '#FF73FD',
3629
+ },
3630
+ selector: {
3631
+ color: '#A8FF60',
3632
+ },
3633
+ 'attr-name': {
3634
+ color: '#A8FF60',
3635
+ },
3636
+ string: {
3637
+ color: '#A8FF60',
3638
+ },
3639
+ char: {
3640
+ color: '#A8FF60',
3641
+ },
3642
+ builtin: {
3643
+ color: '#A8FF60',
3644
+ },
3645
+ inserted: {
3646
+ color: '#A8FF60',
3647
+ },
3648
+ variable: {
3649
+ color: '#C6C5FE',
3650
+ },
3651
+ operator: {
3652
+ color: '#EDEDED',
3653
+ },
3654
+ entity: {
3655
+ color: '#FFFFB6',
3656
+ cursor: 'help',
3657
+ },
3658
+ url: {
3659
+ color: '#96CBFE',
3660
+ },
3661
+ atrule: {
3662
+ color: '#F9EE98',
3663
+ },
3664
+ 'attr-value': {
3665
+ color: '#F9EE98',
3666
+ },
3667
+ function: {
3668
+ color: '#DAD085',
3669
+ },
3670
+ regex: {
3671
+ color: '#E9C062',
3672
+ },
3673
+ important: {
3674
+ color: '#fd971f',
3675
+ fontWeight: 'bold',
3676
+ },
3677
+ bold: {
3678
+ fontWeight: 'bold',
3679
+ },
3680
+ italic: {
3681
+ fontStyle: 'italic',
3682
+ },
3683
+ } as const;
3684
+ export const pojoaque = {
3685
+ base: {
3686
+ MozTabSize: '4',
3687
+ OTabSize: '4',
3688
+ tabSize: '4',
3689
+ WebkitHyphens: 'none',
3690
+ MozHyphens: 'none',
3691
+
3692
+ hyphens: 'none',
3693
+ whiteSpace: 'pre-wrap',
3694
+ wordBreak: 'break-all',
3695
+ wordWrap: 'break-word',
3696
+ fontFamily: 'Menlo, Monaco, "Courier New", monospace',
3697
+ fontSize: '15px',
3698
+ lineHeight: '1.5',
3699
+ color: '#DCCF8F',
3700
+ textShadow: '0',
3701
+ borderRadius: '5px',
3702
+ border: '1px solid #000',
3703
+ background:
3704
+ "#181914 url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAMAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQACQYGBgcGCQcHCQ0IBwgNDwsJCQsPEQ4ODw4OERENDg4ODg0RERQUFhQUERoaHBwaGiYmJiYmKysrKysrKysrKwEJCAgJCgkMCgoMDwwODA8TDg4ODhMVDg4PDg4VGhMRERERExoXGhYWFhoXHR0aGh0dJCQjJCQrKysrKysrKysr/8AAEQgAjACMAwEiAAIRAQMRAf/EAF4AAQEBAAAAAAAAAAAAAAAAAAABBwEBAQAAAAAAAAAAAAAAAAAAAAIQAAEDAwIHAQEAAAAAAAAAAADwAREhYaExkUFRcYGxwdHh8REBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AyGFEjHaBS2fDDs2zkhKmBKktb7km+ZwwCnXPkLVmCTMItj6AXFxRS465/BTnkAJvkLkJe+7AKKoi2AtRS2zuAWsCb5GOlBN8gKfmuGHZ8MFqIth3ALmFoFwbwKWyAlTAp17uKqBvgBD8sM4fTjhvAhkzhaRkBMKBrfs7jGPIpzy7gFrAqnC0C0gB0EWwBDW2cBVQwm+QtPpa3wBO3sVvszCnLAhkzgL5/RLf13cLQd8/AGlu0Cb5HTx9KuAEieGJEdcehS3eRTp2ATdt3CpIm+QtZwAhROXFeb7swp/ahaM3kBE/jSIUBc/AWrgBN8uNFAl+b7sAXFxFn2YLUU5Ns7gFX8C4ib+hN8gFWXwK3bZglxEJm+gKdciLPsFV/TClsgJUwKJ5FVA7tvIFrfZhVfGJDcsCKaYgAqv6YRbE+RWOWBtu7+AL3yRalXLyKqAIIfk+zARbDgFyEsncYwJvlgFRW+GEWntIi2P0BooyFxcNr8Ep3+ANLbMO+QyhvbiqdgC0kVvgUUiLYgBS2QtPbiVI1/sgOmG9uO+Y8DW+7jS2zAOnj6O2BndwuIAUtkdRN8gFoK3wwXMQyZwHVbClsuNLd4E3yAUR6FVDBR+BafQGt93LVMxJTv8ABts4CVLhcfYWsCb5kC9/BHdU8CLYFY5bMAd+eX9MGthhpbA1vu4B7+RKkaW2Yq4AQtVBBFsAJU/AuIXBhN8gGWnstefhiZyWvLAEnbYS1uzSFP6Jvn4Baxx70JKkQojLib5AVTey1jjgkKJGO0AKWyOm7N7cSpgSpAdPH0Tfd/gp1z5C1ZgKqN9J2wFxcUUuAFLZAm+QC0Fb4YUVRFsAOvj4KW2dwtYE3yAWk/wS/PLMKfmuGHZ8MAXF/Ja32Yi5haAKWz4Ydm2cSpgU693Atb7km+Zwwh+WGcPpxw3gAkzCLY+iYUDW/Z3Adc/gpzyFrAqnALkJe+7DoItgAtRS2zuKqGE3yAx0oJvkdvYrfZmALURbDuL5/RLf13cAuDeBS2RpbtAm+QFVA3wR+3fUtFHoBDJnC0jIXH0HWsgMY8inPLuOkd9chp4z20ALQLSA8cI9jYAIa2zjzjBd8gRafS1vgiUho/kAKcsCGTOGWvoOpkAtB3z8Hm8x2Ff5ADp4+lXAlIvcmwH/2Q==') repeat left top",
3705
+ padding: '12px',
3706
+ overflow: 'auto',
3707
+ },
3708
+ namespace: {
3709
+ opacity: '.7',
3710
+ },
3711
+ comment: {
3712
+ color: '#586e75',
3713
+ fontStyle: 'italic',
3714
+ },
3715
+ prolog: {
3716
+ color: '#586e75',
3717
+ fontStyle: 'italic',
3718
+ },
3719
+ doctype: {
3720
+ color: '#586e75',
3721
+ fontStyle: 'italic',
3722
+ },
3723
+ cdata: {
3724
+ color: '#586e75',
3725
+ fontStyle: 'italic',
3726
+ },
3727
+ number: {
3728
+ color: '#b89859',
3729
+ },
3730
+ string: {
3731
+ color: '#468966',
3732
+ },
3733
+ char: {
3734
+ color: '#468966',
3735
+ },
3736
+ builtin: {
3737
+ color: '#468966',
3738
+ },
3739
+ inserted: {
3740
+ color: '#468966',
3741
+ },
3742
+ 'attr-name': {
3743
+ color: '#b89859',
3744
+ },
3745
+ operator: {
3746
+ color: '#dccf8f',
3747
+ },
3748
+ entity: {
3749
+ color: '#dccf8f',
3750
+ cursor: 'help',
3751
+ },
3752
+ url: {
3753
+ color: '#dccf8f',
3754
+ },
3755
+ selector: {
3756
+ color: '#859900',
3757
+ },
3758
+ regex: {
3759
+ color: '#859900',
3760
+ },
3761
+ atrule: {
3762
+ color: '#cb4b16',
3763
+ },
3764
+ keyword: {
3765
+ color: '#cb4b16',
3766
+ },
3767
+ 'attr-value': {
3768
+ color: '#468966',
3769
+ },
3770
+ function: {
3771
+ color: '#b58900',
3772
+ },
3773
+ variable: {
3774
+ color: '#b58900',
3775
+ },
3776
+ placeholder: {
3777
+ color: '#b58900',
3778
+ },
3779
+ property: {
3780
+ color: '#b89859',
3781
+ },
3782
+ tag: {
3783
+ color: '#ffb03b',
3784
+ },
3785
+ boolean: {
3786
+ color: '#b89859',
3787
+ },
3788
+ constant: {
3789
+ color: '#b89859',
3790
+ },
3791
+ symbol: {
3792
+ color: '#b89859',
3793
+ },
3794
+ important: {
3795
+ color: '#dc322f',
3796
+ },
3797
+ statement: {
3798
+ color: '#dc322f',
3799
+ },
3800
+ deleted: {
3801
+ color: '#dc322f',
3802
+ },
3803
+ punctuation: {
3804
+ color: '#dccf8f',
3805
+ },
3806
+ bold: {
3807
+ fontWeight: 'bold',
3808
+ },
3809
+ italic: {
3810
+ fontStyle: 'italic',
3811
+ },
3812
+ } as const;
3813
+ export const duotoneLight = {
3814
+ base: {
3815
+ fontFamily:
3816
+ 'Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace',
3817
+ fontSize: '14px',
3818
+ lineHeight: '1.375',
3819
+ direction: 'ltr',
3820
+ textAlign: 'left',
3821
+ whiteSpace: 'pre',
3822
+ wordSpacing: 'normal',
3823
+ wordBreak: 'normal',
3824
+ MozTabSize: '4',
3825
+ OTabSize: '4',
3826
+ tabSize: '4',
3827
+ WebkitHyphens: 'none',
3828
+ MozHyphens: 'none',
3829
+
3830
+ hyphens: 'none',
3831
+ background: '#faf8f5',
3832
+ color: '#728fcb',
3833
+ padding: '1em',
3834
+ margin: '.5em 0',
3835
+ overflow: 'auto',
3836
+ },
3837
+ comment: {
3838
+ color: '#b6ad9a',
3839
+ },
3840
+ prolog: {
3841
+ color: '#b6ad9a',
3842
+ },
3843
+ doctype: {
3844
+ color: '#b6ad9a',
3845
+ },
3846
+ cdata: {
3847
+ color: '#b6ad9a',
3848
+ },
3849
+ punctuation: {
3850
+ color: '#b6ad9a',
3851
+ },
3852
+ namespace: {
3853
+ opacity: '.7',
3854
+ },
3855
+ tag: {
3856
+ color: '#063289',
3857
+ },
3858
+ operator: {
3859
+ color: '#063289',
3860
+ },
3861
+ number: {
3862
+ color: '#063289',
3863
+ },
3864
+ property: {
3865
+ color: '#b29762',
3866
+ },
3867
+ function: {
3868
+ color: '#b29762',
3869
+ },
3870
+ 'tag-id': {
3871
+ color: '#2d2006',
3872
+ },
3873
+ selector: {
3874
+ color: '#2d2006',
3875
+ },
3876
+ 'atrule-id': {
3877
+ color: '#2d2006',
3878
+ },
3879
+ 'attr-name': {
3880
+ color: '#896724',
3881
+ },
3882
+ boolean: {
3883
+ color: '#728fcb',
3884
+ },
3885
+ string: {
3886
+ color: '#728fcb',
3887
+ },
3888
+ entity: {
3889
+ color: '#728fcb',
3890
+ cursor: 'help',
3891
+ },
3892
+ url: {
3893
+ color: '#728fcb',
3894
+ },
3895
+ 'attr-value': {
3896
+ color: '#728fcb',
3897
+ },
3898
+ keyword: {
3899
+ color: '#728fcb',
3900
+ },
3901
+ control: {
3902
+ color: '#728fcb',
3903
+ },
3904
+ directive: {
3905
+ color: '#728fcb',
3906
+ },
3907
+ unit: {
3908
+ color: '#728fcb',
3909
+ },
3910
+ statement: {
3911
+ color: '#728fcb',
3912
+ },
3913
+ regex: {
3914
+ color: '#728fcb',
3915
+ },
3916
+ atrule: {
3917
+ color: '#728fcb',
3918
+ },
3919
+ placeholder: {
3920
+ color: '#93abdc',
3921
+ },
3922
+ variable: {
3923
+ color: '#93abdc',
3924
+ },
3925
+ deleted: {
3926
+ textDecoration: 'line-through',
3927
+ },
3928
+ inserted: {
3929
+ borderBottom: '1px dotted #2d2006',
3930
+ textDecoration: 'none',
3931
+ },
3932
+ italic: {
3933
+ fontStyle: 'italic',
3934
+ },
3935
+ important: {
3936
+ fontWeight: 'bold',
3937
+ color: '#896724',
3938
+ },
3939
+ bold: {
3940
+ fontWeight: 'bold',
3941
+ },
3942
+ } as const;
3943
+ export const nightOwl = {
3944
+ base: {
3945
+ color: 'white',
3946
+ fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
3947
+ textAlign: 'left',
3948
+ whiteSpace: 'pre',
3949
+ wordSpacing: 'normal',
3950
+ wordBreak: 'normal',
3951
+ wordWrap: 'normal',
3952
+ lineHeight: '1.5',
3953
+ fontSize: '1em',
3954
+ MozTabSize: '4',
3955
+ OTabSize: '4',
3956
+ tabSize: '4',
3957
+ WebkitHyphens: 'none',
3958
+ MozHyphens: 'none',
3959
+
3960
+ hyphens: 'none',
3961
+ padding: '1em',
3962
+ margin: '0.5em 0',
3963
+ overflow: 'auto',
3964
+ background: '#011627',
3965
+ },
3966
+ comment: {
3967
+ color: 'rgb(99, 119, 119)',
3968
+ fontStyle: 'italic',
3969
+ },
3970
+ prolog: {
3971
+ color: 'rgb(99, 119, 119)',
3972
+ fontStyle: 'italic',
3973
+ },
3974
+ cdata: {
3975
+ color: 'rgb(99, 119, 119)',
3976
+ fontStyle: 'italic',
3977
+ },
3978
+ punctuation: {
3979
+ color: 'rgb(199, 146, 234)',
3980
+ },
3981
+ deleted: {
3982
+ color: 'rgba(239, 83, 80, 0.56)',
3983
+ fontStyle: 'italic',
3984
+ },
3985
+ symbol: {
3986
+ color: 'rgb(128, 203, 196)',
3987
+ },
3988
+ property: {
3989
+ color: 'rgb(128, 203, 196)',
3990
+ },
3991
+ tag: {
3992
+ color: 'rgb(127, 219, 202)',
3993
+ },
3994
+ operator: {
3995
+ color: 'rgb(127, 219, 202)',
3996
+ },
3997
+ keyword: {
3998
+ color: 'rgb(127, 219, 202)',
3999
+ },
4000
+ boolean: {
4001
+ color: 'rgb(255, 88, 116)',
4002
+ },
4003
+ number: {
4004
+ color: 'rgb(247, 140, 108)',
4005
+ },
4006
+ constant: {
4007
+ color: 'rgb(130, 170, 255)',
4008
+ },
4009
+ function: {
4010
+ color: 'rgb(130, 170, 255)',
4011
+ },
4012
+ builtin: {
4013
+ color: 'rgb(130, 170, 255)',
4014
+ },
4015
+ char: {
4016
+ color: 'rgb(130, 170, 255)',
4017
+ },
4018
+ selector: {
4019
+ color: 'rgb(199, 146, 234)',
4020
+ fontStyle: 'italic',
4021
+ },
4022
+ doctype: {
4023
+ color: 'rgb(199, 146, 234)',
4024
+ fontStyle: 'italic',
4025
+ },
4026
+ 'attr-name': {
4027
+ color: 'rgb(173, 219, 103)',
4028
+ fontStyle: 'italic',
4029
+ },
4030
+ inserted: {
4031
+ color: 'rgb(173, 219, 103)',
4032
+ fontStyle: 'italic',
4033
+ },
4034
+ string: {
4035
+ color: 'rgb(173, 219, 103)',
4036
+ },
4037
+ url: {
4038
+ color: 'rgb(173, 219, 103)',
4039
+ },
4040
+ entity: {
4041
+ color: 'rgb(173, 219, 103)',
4042
+ },
4043
+ 'class-name': {
4044
+ color: 'rgb(255, 203, 139)',
4045
+ },
4046
+ atrule: {
4047
+ color: 'rgb(255, 203, 139)',
4048
+ },
4049
+ 'attr-value': {
4050
+ color: 'rgb(255, 203, 139)',
4051
+ },
4052
+ regex: {
4053
+ color: 'rgb(214, 222, 235)',
4054
+ },
4055
+ important: {
4056
+ color: 'rgb(214, 222, 235)',
4057
+ fontWeight: 'bold',
4058
+ },
4059
+ variable: {
4060
+ color: 'rgb(214, 222, 235)',
4061
+ },
4062
+ bold: {
4063
+ fontWeight: 'bold',
4064
+ },
4065
+ italic: {
4066
+ fontStyle: 'italic',
4067
+ },
4068
+ } as const;
4069
+ export const laserwave = {
4070
+ base: {
4071
+ background: '#27212e',
4072
+ color: '#ffffff',
4073
+ fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
4074
+ fontSize: '1em',
4075
+ direction: 'ltr',
4076
+ textAlign: 'left',
4077
+ whiteSpace: 'pre',
4078
+ wordSpacing: 'normal',
4079
+ wordBreak: 'normal',
4080
+ lineHeight: '1.5',
4081
+ MozTabSize: '2',
4082
+ OTabSize: '2',
4083
+ tabSize: '2',
4084
+ WebkitHyphens: 'none',
4085
+ MozHyphens: 'none',
4086
+
4087
+ hyphens: 'none',
4088
+ padding: '1em',
4089
+ margin: '0.5em 0',
4090
+ overflow: 'auto',
4091
+ borderRadius: '0.5em',
4092
+ },
4093
+ comment: {
4094
+ color: '#91889b',
4095
+ },
4096
+ prolog: {
4097
+ color: '#91889b',
4098
+ },
4099
+ cdata: {
4100
+ color: '#91889b',
4101
+ },
4102
+ punctuation: {
4103
+ color: '#7b6995',
4104
+ },
4105
+ builtin: {
4106
+ color: '#ffe261',
4107
+ },
4108
+ constant: {
4109
+ color: '#ffe261',
4110
+ },
4111
+ boolean: {
4112
+ color: '#ffe261',
4113
+ },
4114
+ number: {
4115
+ color: '#b381c5',
4116
+ },
4117
+ important: {
4118
+ color: '#40b4c4',
4119
+ },
4120
+ atrule: {
4121
+ color: '#40b4c4',
4122
+ },
4123
+ property: {
4124
+ color: '#40b4c4',
4125
+ },
4126
+ keyword: {
4127
+ color: '#40b4c4',
4128
+ },
4129
+ doctype: {
4130
+ color: '#74dfc4',
4131
+ },
4132
+ operator: {
4133
+ color: '#74dfc4',
4134
+ },
4135
+ inserted: {
4136
+ color: '#74dfc4',
4137
+ },
4138
+ tag: {
4139
+ color: '#74dfc4',
4140
+ },
4141
+ 'class-name': {
4142
+ color: '#74dfc4',
4143
+ },
4144
+ symbol: {
4145
+ color: '#74dfc4',
4146
+ },
4147
+ 'attr-name': {
4148
+ color: '#eb64b9',
4149
+ },
4150
+ function: {
4151
+ color: '#eb64b9',
4152
+ },
4153
+ deleted: {
4154
+ color: '#eb64b9',
4155
+ },
4156
+ selector: {
4157
+ color: '#eb64b9',
4158
+ },
4159
+ 'attr-value': {
4160
+ color: '#b4dce7',
4161
+ },
4162
+ regex: {
4163
+ color: '#b4dce7',
4164
+ },
4165
+ char: {
4166
+ color: '#b4dce7',
4167
+ },
4168
+ string: {
4169
+ color: '#b4dce7',
4170
+ },
4171
+ entity: {
4172
+ color: '#ffffff',
4173
+ cursor: 'help',
4174
+ },
4175
+ url: {
4176
+ color: '#ffffff',
4177
+ },
4178
+ variable: {
4179
+ color: '#ffffff',
4180
+ },
4181
+ bold: {
4182
+ fontWeight: 'bold',
4183
+ },
4184
+ italic: {
4185
+ fontStyle: 'italic',
4186
+ },
4187
+ namespace: {
4188
+ opacity: '0.7',
4189
+ },
4190
+ } as const;
4191
+ export const coyWithoutShadows = {
4192
+ base: {
4193
+ color: 'black',
4194
+ background: 'none',
4195
+ fontFamily: "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
4196
+ fontSize: '1em',
4197
+ textAlign: 'left',
4198
+ whiteSpace: 'pre',
4199
+ wordSpacing: 'normal',
4200
+ wordBreak: 'normal',
4201
+ wordWrap: 'normal',
4202
+ lineHeight: '1.5',
4203
+ MozTabSize: '4',
4204
+ OTabSize: '4',
4205
+ tabSize: '4',
4206
+ WebkitHyphens: 'none',
4207
+ MozHyphens: 'none',
4208
+
4209
+ hyphens: 'none',
4210
+ position: 'relative',
4211
+ borderLeft: '10px solid #358ccb',
4212
+ boxShadow: '-1px 0 0 0 #358ccb, 0 0 0 1px #dfdfdf',
4213
+ backgroundColor: '#fdfdfd',
4214
+ backgroundImage:
4215
+ 'linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%)',
4216
+ backgroundSize: '3em 3em',
4217
+ backgroundOrigin: 'content-box',
4218
+ backgroundAttachment: 'local',
4219
+ margin: '.5em 0',
4220
+ padding: '0 1em',
4221
+ },
4222
+ comment: {
4223
+ color: '#7D8B99',
4224
+ },
4225
+ 'block-comment': {
4226
+ color: '#7D8B99',
4227
+ },
4228
+ prolog: {
4229
+ color: '#7D8B99',
4230
+ },
4231
+ doctype: {
4232
+ color: '#7D8B99',
4233
+ },
4234
+ cdata: {
4235
+ color: '#7D8B99',
4236
+ },
4237
+ punctuation: {
4238
+ color: '#5F6364',
4239
+ },
4240
+ property: {
4241
+ color: '#c92c2c',
4242
+ },
4243
+ tag: {
4244
+ color: '#c92c2c',
4245
+ },
4246
+ boolean: {
4247
+ color: '#c92c2c',
4248
+ },
4249
+ number: {
4250
+ color: '#c92c2c',
4251
+ },
4252
+ 'function-name': {
4253
+ color: '#c92c2c',
4254
+ },
4255
+ constant: {
4256
+ color: '#c92c2c',
4257
+ },
4258
+ symbol: {
4259
+ color: '#c92c2c',
4260
+ },
4261
+ deleted: {
4262
+ color: '#c92c2c',
4263
+ },
4264
+ selector: {
4265
+ color: '#2f9c0a',
4266
+ },
4267
+ 'attr-name': {
4268
+ color: '#2f9c0a',
4269
+ },
4270
+ string: {
4271
+ color: '#2f9c0a',
4272
+ },
4273
+ char: {
4274
+ color: '#2f9c0a',
4275
+ },
4276
+ function: {
4277
+ color: '#2f9c0a',
4278
+ },
4279
+ builtin: {
4280
+ color: '#2f9c0a',
4281
+ },
4282
+ inserted: {
4283
+ color: '#2f9c0a',
4284
+ },
4285
+ operator: {
4286
+ color: '#a67f59',
4287
+ background: 'rgba(255, 255, 255, 0.5)',
4288
+ },
4289
+ entity: {
4290
+ color: '#a67f59',
4291
+ background: 'rgba(255, 255, 255, 0.5)',
4292
+ cursor: 'help',
4293
+ },
4294
+ url: {
4295
+ color: '#a67f59',
4296
+ background: 'rgba(255, 255, 255, 0.5)',
4297
+ },
4298
+ variable: {
4299
+ color: '#a67f59',
4300
+ background: 'rgba(255, 255, 255, 0.5)',
4301
+ },
4302
+ atrule: {
4303
+ color: '#1990b8',
4304
+ },
4305
+ 'attr-value': {
4306
+ color: '#1990b8',
4307
+ },
4308
+ keyword: {
4309
+ color: '#1990b8',
4310
+ },
4311
+ 'class-name': {
4312
+ color: '#1990b8',
4313
+ },
4314
+ regex: {
4315
+ color: '#e90',
4316
+ },
4317
+ important: {
4318
+ color: '#e90',
4319
+ fontWeight: 'normal',
4320
+ },
4321
+ bold: {
4322
+ fontWeight: 'bold',
4323
+ },
4324
+ italic: {
4325
+ fontStyle: 'italic',
4326
+ },
4327
+ namespace: {
4328
+ opacity: '.7',
4329
+ },
4330
+ } as const;
4331
+ export const hopscotch = {
4332
+ base: {
4333
+ fontFamily:
4334
+ '"Fira Mono", Menlo, Monaco, "Lucida Console", "Courier New", Courier, monospace',
4335
+ fontSize: '16px',
4336
+ lineHeight: '1.375',
4337
+ direction: 'ltr',
4338
+ textAlign: 'left',
4339
+ wordSpacing: 'normal',
4340
+ MozTabSize: '4',
4341
+ OTabSize: '4',
4342
+ tabSize: '4',
4343
+ WebkitHyphens: 'none',
4344
+ MozHyphens: 'none',
4345
+
4346
+ hyphens: 'none',
4347
+ whiteSpace: 'pre-wrap',
4348
+ wordBreak: 'break-all',
4349
+ wordWrap: 'break-word',
4350
+ background: '#322931',
4351
+ color: '#b9b5b8',
4352
+ padding: '1em',
4353
+ margin: '.5em 0',
4354
+ overflow: 'auto',
4355
+ },
4356
+ comment: {
4357
+ color: '#797379',
4358
+ },
4359
+ prolog: {
4360
+ color: '#797379',
4361
+ },
4362
+ doctype: {
4363
+ color: '#797379',
4364
+ },
4365
+ cdata: {
4366
+ color: '#797379',
4367
+ },
4368
+ punctuation: {
4369
+ color: '#b9b5b8',
4370
+ },
4371
+ null: {
4372
+ color: '#fd8b19',
4373
+ },
4374
+ operator: {
4375
+ color: '#fd8b19',
4376
+ },
4377
+ boolean: {
4378
+ color: '#fd8b19',
4379
+ },
4380
+ number: {
4381
+ color: '#fd8b19',
4382
+ },
4383
+ property: {
4384
+ color: '#fdcc59',
4385
+ },
4386
+ tag: {
4387
+ color: '#1290bf',
4388
+ },
4389
+ string: {
4390
+ color: '#149b93',
4391
+ },
4392
+ selector: {
4393
+ color: '#c85e7c',
4394
+ },
4395
+ 'attr-name': {
4396
+ color: '#fd8b19',
4397
+ },
4398
+ entity: {
4399
+ color: '#149b93',
4400
+ cursor: 'help',
4401
+ },
4402
+ url: {
4403
+ color: '#149b93',
4404
+ },
4405
+ 'attr-value': {
4406
+ color: '#8fc13e',
4407
+ },
4408
+ keyword: {
4409
+ color: '#8fc13e',
4410
+ },
4411
+ control: {
4412
+ color: '#8fc13e',
4413
+ },
4414
+ directive: {
4415
+ color: '#8fc13e',
4416
+ },
4417
+ unit: {
4418
+ color: '#8fc13e',
4419
+ },
4420
+ statement: {
4421
+ color: '#149b93',
4422
+ },
4423
+ regex: {
4424
+ color: '#149b93',
4425
+ },
4426
+ atrule: {
4427
+ color: '#149b93',
4428
+ },
4429
+ placeholder: {
4430
+ color: '#1290bf',
4431
+ },
4432
+ variable: {
4433
+ color: '#1290bf',
4434
+ },
4435
+ important: {
4436
+ color: '#dd464c',
4437
+ fontWeight: 'bold',
4438
+ },
4439
+ } as const;
4440
+ export const oneLight = {
4441
+ base: {
4442
+ background: 'hsl(230, 1%, 98%)',
4443
+ color: 'hsl(230, 8%, 24%)',
4444
+ fontFamily:
4445
+ '"Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace',
4446
+ direction: 'ltr',
4447
+ textAlign: 'left',
4448
+ whiteSpace: 'pre',
4449
+ wordSpacing: 'normal',
4450
+ wordBreak: 'normal',
4451
+ lineHeight: '1.5',
4452
+ MozTabSize: '2',
4453
+ OTabSize: '2',
4454
+ tabSize: '2',
4455
+ WebkitHyphens: 'none',
4456
+ MozHyphens: 'none',
4457
+
4458
+ hyphens: 'none',
4459
+ padding: '1em',
4460
+ margin: '0.5em 0',
4461
+ overflow: 'auto',
4462
+ borderRadius: '0.3em',
4463
+ },
4464
+ comment: {
4465
+ color: 'hsl(230, 4%, 64%)',
4466
+ fontStyle: 'italic',
4467
+ },
4468
+ prolog: {
4469
+ color: 'hsl(230, 4%, 64%)',
4470
+ },
4471
+ cdata: {
4472
+ color: 'hsl(230, 4%, 64%)',
4473
+ },
4474
+ doctype: {
4475
+ color: 'hsl(230, 8%, 24%)',
4476
+ },
4477
+ punctuation: {
4478
+ color: 'hsl(230, 8%, 24%)',
4479
+ },
4480
+ entity: {
4481
+ color: 'hsl(230, 8%, 24%)',
4482
+ cursor: 'help',
4483
+ },
4484
+ 'attr-name': {
4485
+ color: 'hsl(35, 99%, 36%)',
4486
+ },
4487
+ 'class-name': {
4488
+ color: 'hsl(35, 99%, 36%)',
4489
+ },
4490
+ boolean: {
4491
+ color: 'hsl(35, 99%, 36%)',
4492
+ },
4493
+ constant: {
4494
+ color: 'hsl(35, 99%, 36%)',
4495
+ },
4496
+ number: {
4497
+ color: 'hsl(35, 99%, 36%)',
4498
+ },
4499
+ atrule: {
4500
+ color: 'hsl(35, 99%, 36%)',
4501
+ },
4502
+ keyword: {
4503
+ color: 'hsl(301, 63%, 40%)',
4504
+ },
4505
+ property: {
4506
+ color: 'hsl(5, 74%, 59%)',
4507
+ },
4508
+ tag: {
4509
+ color: 'hsl(5, 74%, 59%)',
4510
+ },
4511
+ symbol: {
4512
+ color: 'hsl(5, 74%, 59%)',
4513
+ },
4514
+ deleted: {
4515
+ color: 'hsl(5, 74%, 59%)',
4516
+ },
4517
+ important: {
4518
+ color: 'hsl(5, 74%, 59%)',
4519
+ },
4520
+ selector: {
4521
+ color: 'hsl(119, 34%, 47%)',
4522
+ },
4523
+ string: {
4524
+ color: 'hsl(119, 34%, 47%)',
4525
+ },
4526
+ char: {
4527
+ color: 'hsl(119, 34%, 47%)',
4528
+ },
4529
+ builtin: {
4530
+ color: 'hsl(119, 34%, 47%)',
4531
+ },
4532
+ inserted: {
4533
+ color: 'hsl(119, 34%, 47%)',
4534
+ },
4535
+ regex: {
4536
+ color: 'hsl(119, 34%, 47%)',
4537
+ },
4538
+ 'attr-value': {
4539
+ color: 'hsl(119, 34%, 47%)',
4540
+ },
4541
+ 'attr-value > .token.punctuation': {
4542
+ color: 'hsl(119, 34%, 47%)',
4543
+ },
4544
+ variable: {
4545
+ color: 'hsl(221, 87%, 60%)',
4546
+ },
4547
+ operator: {
4548
+ color: 'hsl(221, 87%, 60%)',
4549
+ },
4550
+ function: {
4551
+ color: 'hsl(221, 87%, 60%)',
4552
+ },
4553
+ url: {
4554
+ color: 'hsl(198, 99%, 37%)',
4555
+ },
4556
+ 'attr-value > .token.punctuation.attr-equals': {
4557
+ color: 'hsl(230, 8%, 24%)',
4558
+ },
4559
+ 'special-attr > .token.attr-value > .token.value.css': {
4560
+ color: 'hsl(230, 8%, 24%)',
4561
+ },
4562
+ bold: {
4563
+ fontWeight: 'bold',
4564
+ },
4565
+ italic: {
4566
+ fontStyle: 'italic',
4567
+ },
4568
+ namespace: {
4569
+ opacity: '0.8',
4570
+ },
4571
+ 'token.tab:not(:empty):before': {
4572
+ color: 'hsla(230, 8%, 24%, 0.2)',
4573
+ },
4574
+ 'token.cr:before': {
4575
+ color: 'hsla(230, 8%, 24%, 0.2)',
4576
+ },
4577
+ 'token.lf:before': {
4578
+ color: 'hsla(230, 8%, 24%, 0.2)',
4579
+ },
4580
+ 'token.space:before': {
4581
+ color: 'hsla(230, 8%, 24%, 0.2)',
4582
+ },
4583
+ } as const;
4584
+ export const nord = {
4585
+ base: {
4586
+ color: '#f8f8f2',
4587
+ background: '#2E3440',
4588
+ fontFamily:
4589
+ "\"Fira Code\", Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
4590
+ textAlign: 'left',
4591
+ whiteSpace: 'pre',
4592
+ wordSpacing: 'normal',
4593
+ wordBreak: 'normal',
4594
+ wordWrap: 'normal',
4595
+ lineHeight: '1.5',
4596
+ MozTabSize: '4',
4597
+ OTabSize: '4',
4598
+ tabSize: '4',
4599
+ WebkitHyphens: 'none',
4600
+ MozHyphens: 'none',
4601
+
4602
+ hyphens: 'none',
4603
+ padding: '1em',
4604
+ margin: '.5em 0',
4605
+ overflow: 'auto',
4606
+ borderRadius: '0.3em',
4607
+ },
4608
+ comment: {
4609
+ color: '#636f88',
4610
+ },
4611
+ prolog: {
4612
+ color: '#636f88',
4613
+ },
4614
+ doctype: {
4615
+ color: '#636f88',
4616
+ },
4617
+ cdata: {
4618
+ color: '#636f88',
4619
+ },
4620
+ punctuation: {
4621
+ color: '#81A1C1',
4622
+ },
4623
+ property: {
4624
+ color: '#81A1C1',
4625
+ },
4626
+ tag: {
4627
+ color: '#81A1C1',
4628
+ },
4629
+ constant: {
4630
+ color: '#81A1C1',
4631
+ },
4632
+ symbol: {
4633
+ color: '#81A1C1',
4634
+ },
4635
+ deleted: {
4636
+ color: '#81A1C1',
4637
+ },
4638
+ number: {
4639
+ color: '#B48EAD',
4640
+ },
4641
+ boolean: {
4642
+ color: '#81A1C1',
4643
+ },
4644
+ selector: {
4645
+ color: '#A3BE8C',
4646
+ },
4647
+ 'attr-name': {
4648
+ color: '#A3BE8C',
4649
+ },
4650
+ string: {
4651
+ color: '#A3BE8C',
4652
+ },
4653
+ char: {
4654
+ color: '#A3BE8C',
4655
+ },
4656
+ builtin: {
4657
+ color: '#A3BE8C',
4658
+ },
4659
+ inserted: {
4660
+ color: '#A3BE8C',
4661
+ },
4662
+ operator: {
4663
+ color: '#81A1C1',
4664
+ },
4665
+ entity: {
4666
+ color: '#81A1C1',
4667
+ cursor: 'help',
4668
+ },
4669
+ url: {
4670
+ color: '#81A1C1',
4671
+ },
4672
+ variable: {
4673
+ color: '#81A1C1',
4674
+ },
4675
+ atrule: {
4676
+ color: '#88C0D0',
4677
+ },
4678
+ 'attr-value': {
4679
+ color: '#88C0D0',
4680
+ },
4681
+ function: {
4682
+ color: '#88C0D0',
4683
+ },
4684
+ 'class-name': {
4685
+ color: '#88C0D0',
4686
+ },
4687
+ keyword: {
4688
+ color: '#81A1C1',
4689
+ },
4690
+ regex: {
4691
+ color: '#EBCB8B',
4692
+ },
4693
+ important: {
4694
+ color: '#EBCB8B',
4695
+ fontWeight: 'bold',
4696
+ },
4697
+ bold: {
4698
+ fontWeight: 'bold',
4699
+ },
4700
+ italic: {
4701
+ fontStyle: 'italic',
4702
+ },
4703
+ } as const;
4704
+ export const ghcolors = {
4705
+ base: {
4706
+ color: '#393A34',
4707
+ fontFamily:
4708
+ '"Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace',
4709
+ direction: 'ltr',
4710
+ textAlign: 'left',
4711
+ whiteSpace: 'pre',
4712
+ wordSpacing: 'normal',
4713
+ wordBreak: 'normal',
4714
+ fontSize: '.9em',
4715
+ lineHeight: '1.2em',
4716
+ MozTabSize: '4',
4717
+ OTabSize: '4',
4718
+ tabSize: '4',
4719
+ WebkitHyphens: 'none',
4720
+ MozHyphens: 'none',
4721
+
4722
+ hyphens: 'none',
4723
+ padding: '1em',
4724
+ margin: '.5em 0',
4725
+ overflow: 'auto',
4726
+ border: '1px solid #dddddd',
4727
+ backgroundColor: 'white',
4728
+ },
4729
+ comment: {
4730
+ color: '#999988',
4731
+ fontStyle: 'italic',
4732
+ },
4733
+ prolog: {
4734
+ color: '#999988',
4735
+ fontStyle: 'italic',
4736
+ },
4737
+ doctype: {
4738
+ color: '#999988',
4739
+ fontStyle: 'italic',
4740
+ },
4741
+ cdata: {
4742
+ color: '#999988',
4743
+ fontStyle: 'italic',
4744
+ },
4745
+ namespace: {
4746
+ opacity: '.7',
4747
+ },
4748
+ string: {
4749
+ color: '#e3116c',
4750
+ },
4751
+ 'attr-value': {
4752
+ color: '#e3116c',
4753
+ },
4754
+ punctuation: {
4755
+ color: '#393A34',
4756
+ },
4757
+ operator: {
4758
+ color: '#393A34',
4759
+ },
4760
+ entity: {
4761
+ color: '#36acaa',
4762
+ },
4763
+ url: {
4764
+ color: '#36acaa',
4765
+ },
4766
+ symbol: {
4767
+ color: '#36acaa',
4768
+ },
4769
+ number: {
4770
+ color: '#36acaa',
4771
+ },
4772
+ boolean: {
4773
+ color: '#36acaa',
4774
+ },
4775
+ variable: {
4776
+ color: '#36acaa',
4777
+ },
4778
+ constant: {
4779
+ color: '#36acaa',
4780
+ },
4781
+ property: {
4782
+ color: '#36acaa',
4783
+ },
4784
+ regex: {
4785
+ color: '#36acaa',
4786
+ },
4787
+ inserted: {
4788
+ color: '#36acaa',
4789
+ },
4790
+ atrule: {
4791
+ color: '#00a4db',
4792
+ },
4793
+ keyword: {
4794
+ color: '#00a4db',
4795
+ },
4796
+ 'attr-name': {
4797
+ color: '#00a4db',
4798
+ },
4799
+ function: {
4800
+ color: '#9a050f',
4801
+ fontWeight: 'bold',
4802
+ },
4803
+ deleted: {
4804
+ color: '#9a050f',
4805
+ },
4806
+ tag: {
4807
+ color: '#00009f',
4808
+ },
4809
+ selector: {
4810
+ color: '#00009f',
4811
+ },
4812
+ important: {
4813
+ fontWeight: 'bold',
4814
+ },
4815
+ bold: {
4816
+ fontWeight: 'bold',
4817
+ },
4818
+ italic: {
4819
+ fontStyle: 'italic',
4820
+ },
4821
+ } as const;
4822
+
4823
+ export const vesper = {
4824
+ base: {
4825
+ color: '#a0a0a0',
4826
+ fontFamily: "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
4827
+ textAlign: 'left',
4828
+ whiteSpace: 'pre',
4829
+ wordSpacing: 'normal',
4830
+ wordBreak: 'normal',
4831
+ wordWrap: 'normal',
4832
+ lineHeight: '1.5',
4833
+ MozTabSize: '4',
4834
+ OTabSize: '4',
4835
+ tabSize: '4',
4836
+ WebkitHyphens: 'none',
4837
+ MozHyphens: 'none',
4838
+ MsHyphens: 'none',
4839
+ hyphens: 'none',
4840
+ overflowX: 'auto',
4841
+ backgroundColor: '#1E1E1E',
4842
+ },
4843
+ selection: {
4844
+ textShadow: 'none',
4845
+ background: '#ffffff25',
4846
+ },
4847
+ print: {
4848
+ textShadow: 'none',
4849
+ },
4850
+ pre: {
4851
+ color: '#a0a0a0',
4852
+ background: '#101010',
4853
+ },
4854
+ comment: {
4855
+ color: '#8b8b8b94',
4856
+ },
4857
+ punctuation: {
4858
+ color: '#8b8b8b94',
4859
+ },
4860
+ variable: {
4861
+ color: '#a0a0a0',
4862
+ },
4863
+ tag: {
4864
+ color: '#a0a0a0',
4865
+ },
4866
+ hexcode: {
4867
+ color: '#a0a0a0',
4868
+ },
4869
+ string: {
4870
+ color: 'rgb(161, 252, 234)',
4871
+ },
4872
+ url: {
4873
+ color: '#a0a0a0',
4874
+ },
4875
+ keyword: {
4876
+ color: '#fff',
4877
+ },
4878
+ deleted: {
4879
+ color: '#fff',
4880
+ },
4881
+ function: {
4882
+ color: '#ffc799',
4883
+ },
4884
+ builtin: {
4885
+ color: '#fff',
4886
+ },
4887
+ number: {
4888
+ color: '#fff',
4889
+ },
4890
+ char: {
4891
+ color: '#fff',
4892
+ },
4893
+ constant: {
4894
+ color: '#fff',
4895
+ },
4896
+ boolean: {
4897
+ color: '#fff',
4898
+ },
4899
+ changed: {
4900
+ color: '#fff',
4901
+ },
4902
+ symbol: {
4903
+ color: '#99ffe4',
4904
+ },
4905
+ inserted: {
4906
+ color: '#ffc799',
4907
+ },
4908
+ 'attr-name': {
4909
+ color: '#a0a0a0',
4910
+ },
4911
+ selector: {
4912
+ color: '#a0a0a0',
4913
+ },
4914
+ property: {
4915
+ color: '#a0a0a0',
4916
+ },
4917
+ regex: {
4918
+ color: '#a0a0a0',
4919
+ },
4920
+ important: {
4921
+ fontWeight: 'bold',
4922
+ },
4923
+ bold: {
4924
+ fontWeight: 'bold',
4925
+ },
4926
+ italic: {
4927
+ fontStyle: 'italic',
4928
+ },
4929
+ } as const;