theme.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. /* Auto-generated theme CSS - Do not edit manually */
  2. :root {
  3. --theme-primary: #3b7dd8;
  4. --theme-secondary: #7b5bb6;
  5. --theme-accent: #d68c27;
  6. --theme-error: #d1383d;
  7. --theme-warning: #d68c27;
  8. --theme-success: #3d9a57;
  9. --theme-info: #318795;
  10. --theme-text: #1a1a1a;
  11. --theme-text-muted: #8a8a8a;
  12. --theme-background: #ffffff;
  13. --theme-background-panel: #fafafa;
  14. --theme-background-element: #f5f5f5;
  15. --theme-border: #b8b8b8;
  16. --theme-border-active: #a0a0a0;
  17. --theme-border-subtle: #d4d4d4;
  18. --theme-diff-added: #1e725c;
  19. --theme-diff-removed: #c53b53;
  20. --theme-diff-context: #7086b5;
  21. --theme-diff-hunk-header: #7086b5;
  22. --theme-diff-highlight-added: #4db380;
  23. --theme-diff-highlight-removed: #f52a65;
  24. --theme-diff-added-bg: #d5e5d5;
  25. --theme-diff-removed-bg: #f7d8db;
  26. --theme-diff-context-bg: #fafafa;
  27. --theme-diff-line-number: #f5f5f5;
  28. --theme-diff-added-line-number-bg: #c5d5c5;
  29. --theme-diff-removed-line-number-bg: #e7c8cb;
  30. --theme-markdown-text: #1a1a1a;
  31. --theme-markdown-heading: #d68c27;
  32. --theme-markdown-link: #3b7dd8;
  33. --theme-markdown-link-text: #318795;
  34. --theme-markdown-code: #3d9a57;
  35. --theme-markdown-block-quote: #b0851f;
  36. --theme-markdown-emph: #b0851f;
  37. --theme-markdown-strong: #d68c27;
  38. --theme-markdown-horizontal-rule: #8a8a8a;
  39. --theme-markdown-list-item: #3b7dd8;
  40. --theme-markdown-list-enumeration: #318795;
  41. --theme-markdown-image: #3b7dd8;
  42. --theme-markdown-image-text: #318795;
  43. --theme-markdown-code-block: #1a1a1a;
  44. --theme-syntax-comment: #8a8a8a;
  45. --theme-syntax-keyword: #d68c27;
  46. --theme-syntax-function: #3b7dd8;
  47. --theme-syntax-variable: #d1383d;
  48. --theme-syntax-string: #3d9a57;
  49. --theme-syntax-number: #d68c27;
  50. --theme-syntax-type: #b0851f;
  51. --theme-syntax-operator: #318795;
  52. --theme-syntax-punctuation: #1a1a1a;
  53. }
  54. [data-theme="aura"][data-dark="false"] {
  55. --theme-primary: #a277ff;
  56. --theme-secondary: #f694ff;
  57. --theme-accent: #a277ff;
  58. --theme-error: #ff6767;
  59. --theme-warning: #ffca85;
  60. --theme-success: #61ffca;
  61. --theme-info: #a277ff;
  62. --theme-text: #edecee;
  63. --theme-text-muted: #6d6d6d;
  64. --theme-background: #0f0f0f;
  65. --theme-background-panel: #15141b;
  66. --theme-background-element: #15141b;
  67. --theme-border: #2d2d2d;
  68. --theme-border-active: #6d6d6d;
  69. --theme-border-subtle: #2d2d2d;
  70. --theme-diff-added: #61ffca;
  71. --theme-diff-removed: #ff6767;
  72. --theme-diff-context: #6d6d6d;
  73. --theme-diff-hunk-header: #6d6d6d;
  74. --theme-diff-highlight-added: #61ffca;
  75. --theme-diff-highlight-removed: #ff6767;
  76. --theme-diff-added-bg: #354933;
  77. --theme-diff-removed-bg: #3f191a;
  78. --theme-diff-context-bg: #15141b;
  79. --theme-diff-line-number: #2d2d2d;
  80. --theme-diff-added-line-number-bg: #162620;
  81. --theme-diff-removed-line-number-bg: #26161a;
  82. --theme-markdown-text: #edecee;
  83. --theme-markdown-heading: #a277ff;
  84. --theme-markdown-link: #f694ff;
  85. --theme-markdown-link-text: #a277ff;
  86. --theme-markdown-code: #61ffca;
  87. --theme-markdown-block-quote: #6d6d6d;
  88. --theme-markdown-emph: #ffca85;
  89. --theme-markdown-strong: #a277ff;
  90. --theme-markdown-horizontal-rule: #6d6d6d;
  91. --theme-markdown-list-item: #a277ff;
  92. --theme-markdown-list-enumeration: #a277ff;
  93. --theme-markdown-image: #f694ff;
  94. --theme-markdown-image-text: #a277ff;
  95. --theme-markdown-code-block: #edecee;
  96. --theme-syntax-comment: #6d6d6d;
  97. --theme-syntax-keyword: #f694ff;
  98. --theme-syntax-function: #a277ff;
  99. --theme-syntax-variable: #a277ff;
  100. --theme-syntax-string: #61ffca;
  101. --theme-syntax-number: #9dff65;
  102. --theme-syntax-type: #a277ff;
  103. --theme-syntax-operator: #f694ff;
  104. --theme-syntax-punctuation: #edecee;
  105. }
  106. [data-theme="aura"][data-dark="true"] {
  107. --theme-primary: #a277ff;
  108. --theme-secondary: #f694ff;
  109. --theme-accent: #a277ff;
  110. --theme-error: #ff6767;
  111. --theme-warning: #ffca85;
  112. --theme-success: #61ffca;
  113. --theme-info: #a277ff;
  114. --theme-text: #edecee;
  115. --theme-text-muted: #6d6d6d;
  116. --theme-background: #0f0f0f;
  117. --theme-background-panel: #15141b;
  118. --theme-background-element: #15141b;
  119. --theme-border: #2d2d2d;
  120. --theme-border-active: #6d6d6d;
  121. --theme-border-subtle: #2d2d2d;
  122. --theme-diff-added: #61ffca;
  123. --theme-diff-removed: #ff6767;
  124. --theme-diff-context: #6d6d6d;
  125. --theme-diff-hunk-header: #6d6d6d;
  126. --theme-diff-highlight-added: #61ffca;
  127. --theme-diff-highlight-removed: #ff6767;
  128. --theme-diff-added-bg: #354933;
  129. --theme-diff-removed-bg: #3f191a;
  130. --theme-diff-context-bg: #15141b;
  131. --theme-diff-line-number: #2d2d2d;
  132. --theme-diff-added-line-number-bg: #162620;
  133. --theme-diff-removed-line-number-bg: #26161a;
  134. --theme-markdown-text: #edecee;
  135. --theme-markdown-heading: #a277ff;
  136. --theme-markdown-link: #f694ff;
  137. --theme-markdown-link-text: #a277ff;
  138. --theme-markdown-code: #61ffca;
  139. --theme-markdown-block-quote: #6d6d6d;
  140. --theme-markdown-emph: #ffca85;
  141. --theme-markdown-strong: #a277ff;
  142. --theme-markdown-horizontal-rule: #6d6d6d;
  143. --theme-markdown-list-item: #a277ff;
  144. --theme-markdown-list-enumeration: #a277ff;
  145. --theme-markdown-image: #f694ff;
  146. --theme-markdown-image-text: #a277ff;
  147. --theme-markdown-code-block: #edecee;
  148. --theme-syntax-comment: #6d6d6d;
  149. --theme-syntax-keyword: #f694ff;
  150. --theme-syntax-function: #a277ff;
  151. --theme-syntax-variable: #a277ff;
  152. --theme-syntax-string: #61ffca;
  153. --theme-syntax-number: #9dff65;
  154. --theme-syntax-type: #a277ff;
  155. --theme-syntax-operator: #f694ff;
  156. --theme-syntax-punctuation: #edecee;
  157. }
  158. [data-theme="ayu"][data-dark="false"] {
  159. --theme-primary: #59c2ff;
  160. --theme-secondary: #d2a6ff;
  161. --theme-accent: #e6b450;
  162. --theme-error: #d95757;
  163. --theme-warning: #e6b673;
  164. --theme-success: #7fd962;
  165. --theme-info: #39bae6;
  166. --theme-text: #bfbdb6;
  167. --theme-text-muted: #565b66;
  168. --theme-background: #0b0e14;
  169. --theme-background-panel: #0f131a;
  170. --theme-background-element: #0d1017;
  171. --theme-border: #6c7380;
  172. --theme-border-active: #6c7380;
  173. --theme-border-subtle: #11151c;
  174. --theme-diff-added: #7fd962;
  175. --theme-diff-removed: #f26d78;
  176. --theme-diff-context: #acb6bf;
  177. --theme-diff-hunk-header: #acb6bf;
  178. --theme-diff-highlight-added: #aad94c;
  179. --theme-diff-highlight-removed: #f07178;
  180. --theme-diff-added-bg: #20303b;
  181. --theme-diff-removed-bg: #37222c;
  182. --theme-diff-context-bg: #0f131a;
  183. --theme-diff-line-number: #6c7380;
  184. --theme-diff-added-line-number-bg: #1b2b34;
  185. --theme-diff-removed-line-number-bg: #2d1f26;
  186. --theme-markdown-text: #bfbdb6;
  187. --theme-markdown-heading: #d2a6ff;
  188. --theme-markdown-link: #59c2ff;
  189. --theme-markdown-link-text: #39bae6;
  190. --theme-markdown-code: #aad94c;
  191. --theme-markdown-block-quote: #e6b673;
  192. --theme-markdown-emph: #e6b673;
  193. --theme-markdown-strong: #ffb454;
  194. --theme-markdown-horizontal-rule: #565b66;
  195. --theme-markdown-list-item: #59c2ff;
  196. --theme-markdown-list-enumeration: #39bae6;
  197. --theme-markdown-image: #59c2ff;
  198. --theme-markdown-image-text: #39bae6;
  199. --theme-markdown-code-block: #bfbdb6;
  200. --theme-syntax-comment: #acb6bf;
  201. --theme-syntax-keyword: #ff8f40;
  202. --theme-syntax-function: #ffb454;
  203. --theme-syntax-variable: #59c2ff;
  204. --theme-syntax-string: #aad94c;
  205. --theme-syntax-number: #d2a6ff;
  206. --theme-syntax-type: #e6b673;
  207. --theme-syntax-operator: #f29668;
  208. --theme-syntax-punctuation: #bfbdb6;
  209. }
  210. [data-theme="ayu"][data-dark="true"] {
  211. --theme-primary: #59c2ff;
  212. --theme-secondary: #d2a6ff;
  213. --theme-accent: #e6b450;
  214. --theme-error: #d95757;
  215. --theme-warning: #e6b673;
  216. --theme-success: #7fd962;
  217. --theme-info: #39bae6;
  218. --theme-text: #bfbdb6;
  219. --theme-text-muted: #565b66;
  220. --theme-background: #0b0e14;
  221. --theme-background-panel: #0f131a;
  222. --theme-background-element: #0d1017;
  223. --theme-border: #6c7380;
  224. --theme-border-active: #6c7380;
  225. --theme-border-subtle: #11151c;
  226. --theme-diff-added: #7fd962;
  227. --theme-diff-removed: #f26d78;
  228. --theme-diff-context: #acb6bf;
  229. --theme-diff-hunk-header: #acb6bf;
  230. --theme-diff-highlight-added: #aad94c;
  231. --theme-diff-highlight-removed: #f07178;
  232. --theme-diff-added-bg: #20303b;
  233. --theme-diff-removed-bg: #37222c;
  234. --theme-diff-context-bg: #0f131a;
  235. --theme-diff-line-number: #6c7380;
  236. --theme-diff-added-line-number-bg: #1b2b34;
  237. --theme-diff-removed-line-number-bg: #2d1f26;
  238. --theme-markdown-text: #bfbdb6;
  239. --theme-markdown-heading: #d2a6ff;
  240. --theme-markdown-link: #59c2ff;
  241. --theme-markdown-link-text: #39bae6;
  242. --theme-markdown-code: #aad94c;
  243. --theme-markdown-block-quote: #e6b673;
  244. --theme-markdown-emph: #e6b673;
  245. --theme-markdown-strong: #ffb454;
  246. --theme-markdown-horizontal-rule: #565b66;
  247. --theme-markdown-list-item: #59c2ff;
  248. --theme-markdown-list-enumeration: #39bae6;
  249. --theme-markdown-image: #59c2ff;
  250. --theme-markdown-image-text: #39bae6;
  251. --theme-markdown-code-block: #bfbdb6;
  252. --theme-syntax-comment: #acb6bf;
  253. --theme-syntax-keyword: #ff8f40;
  254. --theme-syntax-function: #ffb454;
  255. --theme-syntax-variable: #59c2ff;
  256. --theme-syntax-string: #aad94c;
  257. --theme-syntax-number: #d2a6ff;
  258. --theme-syntax-type: #e6b673;
  259. --theme-syntax-operator: #f29668;
  260. --theme-syntax-punctuation: #bfbdb6;
  261. }
  262. [data-theme="catppuccin"][data-dark="false"] {
  263. --theme-primary: #1e66f5;
  264. --theme-secondary: #8839ef;
  265. --theme-accent: #ea76cb;
  266. --theme-error: #d20f39;
  267. --theme-warning: #df8e1d;
  268. --theme-success: #40a02b;
  269. --theme-info: #179299;
  270. --theme-text: #4c4f69;
  271. --theme-text-muted: #5c5f77;
  272. --theme-background: #eff1f5;
  273. --theme-background-panel: #e6e9ef;
  274. --theme-background-element: #dce0e8;
  275. --theme-border: #ccd0da;
  276. --theme-border-active: #bcc0cc;
  277. --theme-border-subtle: #acb0be;
  278. --theme-diff-added: #40a02b;
  279. --theme-diff-removed: #d20f39;
  280. --theme-diff-context: #7c7f93;
  281. --theme-diff-hunk-header: #fe640b;
  282. --theme-diff-highlight-added: #40a02b;
  283. --theme-diff-highlight-removed: #d20f39;
  284. --theme-diff-added-bg: #d6f0d9;
  285. --theme-diff-removed-bg: #f6dfe2;
  286. --theme-diff-context-bg: #e6e9ef;
  287. --theme-diff-line-number: #bcc0cc;
  288. --theme-diff-added-line-number-bg: #c9e3cb;
  289. --theme-diff-removed-line-number-bg: #e9d3d6;
  290. --theme-markdown-text: #4c4f69;
  291. --theme-markdown-heading: #8839ef;
  292. --theme-markdown-link: #1e66f5;
  293. --theme-markdown-link-text: #04a5e5;
  294. --theme-markdown-code: #40a02b;
  295. --theme-markdown-block-quote: #df8e1d;
  296. --theme-markdown-emph: #df8e1d;
  297. --theme-markdown-strong: #fe640b;
  298. --theme-markdown-horizontal-rule: #6c6f85;
  299. --theme-markdown-list-item: #1e66f5;
  300. --theme-markdown-list-enumeration: #04a5e5;
  301. --theme-markdown-image: #1e66f5;
  302. --theme-markdown-image-text: #04a5e5;
  303. --theme-markdown-code-block: #4c4f69;
  304. --theme-syntax-comment: #7c7f93;
  305. --theme-syntax-keyword: #8839ef;
  306. --theme-syntax-function: #1e66f5;
  307. --theme-syntax-variable: #d20f39;
  308. --theme-syntax-string: #40a02b;
  309. --theme-syntax-number: #fe640b;
  310. --theme-syntax-type: #df8e1d;
  311. --theme-syntax-operator: #04a5e5;
  312. --theme-syntax-punctuation: #4c4f69;
  313. }
  314. [data-theme="catppuccin"][data-dark="true"] {
  315. --theme-primary: #89b4fa;
  316. --theme-secondary: #cba6f7;
  317. --theme-accent: #f5c2e7;
  318. --theme-error: #f38ba8;
  319. --theme-warning: #f9e2af;
  320. --theme-success: #a6e3a1;
  321. --theme-info: #94e2d5;
  322. --theme-text: #cdd6f4;
  323. --theme-text-muted: #bac2de;
  324. --theme-background: #1e1e2e;
  325. --theme-background-panel: #181825;
  326. --theme-background-element: #11111b;
  327. --theme-border: #313244;
  328. --theme-border-active: #45475a;
  329. --theme-border-subtle: #585b70;
  330. --theme-diff-added: #a6e3a1;
  331. --theme-diff-removed: #f38ba8;
  332. --theme-diff-context: #9399b2;
  333. --theme-diff-hunk-header: #fab387;
  334. --theme-diff-highlight-added: #a6e3a1;
  335. --theme-diff-highlight-removed: #f38ba8;
  336. --theme-diff-added-bg: #24312b;
  337. --theme-diff-removed-bg: #3c2a32;
  338. --theme-diff-context-bg: #181825;
  339. --theme-diff-line-number: #45475a;
  340. --theme-diff-added-line-number-bg: #1e2a25;
  341. --theme-diff-removed-line-number-bg: #32232a;
  342. --theme-markdown-text: #cdd6f4;
  343. --theme-markdown-heading: #cba6f7;
  344. --theme-markdown-link: #89b4fa;
  345. --theme-markdown-link-text: #89dceb;
  346. --theme-markdown-code: #a6e3a1;
  347. --theme-markdown-block-quote: #f9e2af;
  348. --theme-markdown-emph: #f9e2af;
  349. --theme-markdown-strong: #fab387;
  350. --theme-markdown-horizontal-rule: #a6adc8;
  351. --theme-markdown-list-item: #89b4fa;
  352. --theme-markdown-list-enumeration: #89dceb;
  353. --theme-markdown-image: #89b4fa;
  354. --theme-markdown-image-text: #89dceb;
  355. --theme-markdown-code-block: #cdd6f4;
  356. --theme-syntax-comment: #9399b2;
  357. --theme-syntax-keyword: #cba6f7;
  358. --theme-syntax-function: #89b4fa;
  359. --theme-syntax-variable: #f38ba8;
  360. --theme-syntax-string: #a6e3a1;
  361. --theme-syntax-number: #fab387;
  362. --theme-syntax-type: #f9e2af;
  363. --theme-syntax-operator: #89dceb;
  364. --theme-syntax-punctuation: #cdd6f4;
  365. }
  366. [data-theme="cobalt2"][data-dark="false"] {
  367. --theme-primary: #0066cc;
  368. --theme-secondary: #7c4dff;
  369. --theme-accent: #00acc1;
  370. --theme-error: #e91e63;
  371. --theme-warning: #ff9800;
  372. --theme-success: #4caf50;
  373. --theme-info: #ff5722;
  374. --theme-text: #193549;
  375. --theme-text-muted: #5c6b7d;
  376. --theme-background: #ffffff;
  377. --theme-background-panel: #f5f7fa;
  378. --theme-background-element: #e8ecf1;
  379. --theme-border: #d3dae3;
  380. --theme-border-active: #0066cc;
  381. --theme-border-subtle: #e8ecf1;
  382. --theme-diff-added: #4caf50;
  383. --theme-diff-removed: #e91e63;
  384. --theme-diff-context: #5c6b7d;
  385. --theme-diff-hunk-header: #00acc1;
  386. --theme-diff-highlight-added: #4caf50;
  387. --theme-diff-highlight-removed: #e91e63;
  388. --theme-diff-added-bg: #e8f5e9;
  389. --theme-diff-removed-bg: #ffebee;
  390. --theme-diff-context-bg: #f5f7fa;
  391. --theme-diff-line-number: #b0bec5;
  392. --theme-diff-added-line-number-bg: #e8f5e9;
  393. --theme-diff-removed-line-number-bg: #ffebee;
  394. --theme-markdown-text: #193549;
  395. --theme-markdown-heading: #ff9800;
  396. --theme-markdown-link: #0066cc;
  397. --theme-markdown-link-text: #00acc1;
  398. --theme-markdown-code: #4caf50;
  399. --theme-markdown-block-quote: #5c6b7d;
  400. --theme-markdown-emph: #ff5722;
  401. --theme-markdown-strong: #e91e63;
  402. --theme-markdown-horizontal-rule: #d3dae3;
  403. --theme-markdown-list-item: #0066cc;
  404. --theme-markdown-list-enumeration: #00acc1;
  405. --theme-markdown-image: #0066cc;
  406. --theme-markdown-image-text: #00acc1;
  407. --theme-markdown-code-block: #193549;
  408. --theme-syntax-comment: #5c6b7d;
  409. --theme-syntax-keyword: #ff5722;
  410. --theme-syntax-function: #ff9800;
  411. --theme-syntax-variable: #193549;
  412. --theme-syntax-string: #4caf50;
  413. --theme-syntax-number: #e91e63;
  414. --theme-syntax-type: #00acc1;
  415. --theme-syntax-operator: #ff5722;
  416. --theme-syntax-punctuation: #193549;
  417. }
  418. [data-theme="cobalt2"][data-dark="true"] {
  419. --theme-primary: #0088ff;
  420. --theme-secondary: #9a5feb;
  421. --theme-accent: #2affdf;
  422. --theme-error: #ff0088;
  423. --theme-warning: #ffc600;
  424. --theme-success: #9eff80;
  425. --theme-info: #ff9d00;
  426. --theme-text: #ffffff;
  427. --theme-text-muted: #adb7c9;
  428. --theme-background: #193549;
  429. --theme-background-panel: #122738;
  430. --theme-background-element: #1f4662;
  431. --theme-border: #1f4662;
  432. --theme-border-active: #0088ff;
  433. --theme-border-subtle: #0e1e2e;
  434. --theme-diff-added: #9eff80;
  435. --theme-diff-removed: #ff0088;
  436. --theme-diff-context: #adb7c9;
  437. --theme-diff-hunk-header: #2affdf;
  438. --theme-diff-highlight-added: #b9ff9f;
  439. --theme-diff-highlight-removed: #ff5fb3;
  440. --theme-diff-added-bg: #1a3a2a;
  441. --theme-diff-removed-bg: #3a1a2a;
  442. --theme-diff-context-bg: #122738;
  443. --theme-diff-line-number: #2d5a7b;
  444. --theme-diff-added-line-number-bg: #1a3a2a;
  445. --theme-diff-removed-line-number-bg: #3a1a2a;
  446. --theme-markdown-text: #ffffff;
  447. --theme-markdown-heading: #ffc600;
  448. --theme-markdown-link: #0088ff;
  449. --theme-markdown-link-text: #2affdf;
  450. --theme-markdown-code: #9eff80;
  451. --theme-markdown-block-quote: #adb7c9;
  452. --theme-markdown-emph: #ff9d00;
  453. --theme-markdown-strong: #ff628c;
  454. --theme-markdown-horizontal-rule: #2d5a7b;
  455. --theme-markdown-list-item: #0088ff;
  456. --theme-markdown-list-enumeration: #2affdf;
  457. --theme-markdown-image: #0088ff;
  458. --theme-markdown-image-text: #2affdf;
  459. --theme-markdown-code-block: #ffffff;
  460. --theme-syntax-comment: #0088ff;
  461. --theme-syntax-keyword: #ff9d00;
  462. --theme-syntax-function: #ffc600;
  463. --theme-syntax-variable: #ffffff;
  464. --theme-syntax-string: #9eff80;
  465. --theme-syntax-number: #ff628c;
  466. --theme-syntax-type: #2affdf;
  467. --theme-syntax-operator: #ff9d00;
  468. --theme-syntax-punctuation: #ffffff;
  469. }
  470. [data-theme="dracula"][data-dark="false"] {
  471. --theme-primary: #bd93f9;
  472. --theme-secondary: #ff79c6;
  473. --theme-accent: #8be9fd;
  474. --theme-error: #ff5555;
  475. --theme-warning: #f1fa8c;
  476. --theme-success: #50fa7b;
  477. --theme-info: #ffb86c;
  478. --theme-text: #282a36;
  479. --theme-text-muted: #6272a4;
  480. --theme-background: #f8f8f2;
  481. --theme-background-panel: #e8e8e2;
  482. --theme-background-element: #d8d8d2;
  483. --theme-border: #c8c8c2;
  484. --theme-border-active: #bd93f9;
  485. --theme-border-subtle: #e0e0e0;
  486. --theme-diff-added: #50fa7b;
  487. --theme-diff-removed: #ff5555;
  488. --theme-diff-context: #6272a4;
  489. --theme-diff-hunk-header: #6272a4;
  490. --theme-diff-highlight-added: #50fa7b;
  491. --theme-diff-highlight-removed: #ff5555;
  492. --theme-diff-added-bg: #e0ffe0;
  493. --theme-diff-removed-bg: #ffe0e0;
  494. --theme-diff-context-bg: #e8e8e2;
  495. --theme-diff-line-number: #c8c8c2;
  496. --theme-diff-added-line-number-bg: #e0ffe0;
  497. --theme-diff-removed-line-number-bg: #ffe0e0;
  498. --theme-markdown-text: #282a36;
  499. --theme-markdown-heading: #bd93f9;
  500. --theme-markdown-link: #8be9fd;
  501. --theme-markdown-link-text: #ff79c6;
  502. --theme-markdown-code: #50fa7b;
  503. --theme-markdown-block-quote: #6272a4;
  504. --theme-markdown-emph: #f1fa8c;
  505. --theme-markdown-strong: #ffb86c;
  506. --theme-markdown-horizontal-rule: #6272a4;
  507. --theme-markdown-list-item: #bd93f9;
  508. --theme-markdown-list-enumeration: #8be9fd;
  509. --theme-markdown-image: #8be9fd;
  510. --theme-markdown-image-text: #ff79c6;
  511. --theme-markdown-code-block: #282a36;
  512. --theme-syntax-comment: #6272a4;
  513. --theme-syntax-keyword: #ff79c6;
  514. --theme-syntax-function: #50fa7b;
  515. --theme-syntax-variable: #282a36;
  516. --theme-syntax-string: #f1fa8c;
  517. --theme-syntax-number: #bd93f9;
  518. --theme-syntax-type: #8be9fd;
  519. --theme-syntax-operator: #ff79c6;
  520. --theme-syntax-punctuation: #282a36;
  521. }
  522. [data-theme="dracula"][data-dark="true"] {
  523. --theme-primary: #bd93f9;
  524. --theme-secondary: #ff79c6;
  525. --theme-accent: #8be9fd;
  526. --theme-error: #ff5555;
  527. --theme-warning: #f1fa8c;
  528. --theme-success: #50fa7b;
  529. --theme-info: #ffb86c;
  530. --theme-text: #f8f8f2;
  531. --theme-text-muted: #6272a4;
  532. --theme-background: #282a36;
  533. --theme-background-panel: #21222c;
  534. --theme-background-element: #44475a;
  535. --theme-border: #44475a;
  536. --theme-border-active: #bd93f9;
  537. --theme-border-subtle: #191a21;
  538. --theme-diff-added: #50fa7b;
  539. --theme-diff-removed: #ff5555;
  540. --theme-diff-context: #6272a4;
  541. --theme-diff-hunk-header: #6272a4;
  542. --theme-diff-highlight-added: #50fa7b;
  543. --theme-diff-highlight-removed: #ff5555;
  544. --theme-diff-added-bg: #1a3a1a;
  545. --theme-diff-removed-bg: #3a1a1a;
  546. --theme-diff-context-bg: #21222c;
  547. --theme-diff-line-number: #44475a;
  548. --theme-diff-added-line-number-bg: #1a3a1a;
  549. --theme-diff-removed-line-number-bg: #3a1a1a;
  550. --theme-markdown-text: #f8f8f2;
  551. --theme-markdown-heading: #bd93f9;
  552. --theme-markdown-link: #8be9fd;
  553. --theme-markdown-link-text: #ff79c6;
  554. --theme-markdown-code: #50fa7b;
  555. --theme-markdown-block-quote: #6272a4;
  556. --theme-markdown-emph: #f1fa8c;
  557. --theme-markdown-strong: #ffb86c;
  558. --theme-markdown-horizontal-rule: #6272a4;
  559. --theme-markdown-list-item: #bd93f9;
  560. --theme-markdown-list-enumeration: #8be9fd;
  561. --theme-markdown-image: #8be9fd;
  562. --theme-markdown-image-text: #ff79c6;
  563. --theme-markdown-code-block: #f8f8f2;
  564. --theme-syntax-comment: #6272a4;
  565. --theme-syntax-keyword: #ff79c6;
  566. --theme-syntax-function: #50fa7b;
  567. --theme-syntax-variable: #f8f8f2;
  568. --theme-syntax-string: #f1fa8c;
  569. --theme-syntax-number: #bd93f9;
  570. --theme-syntax-type: #8be9fd;
  571. --theme-syntax-operator: #ff79c6;
  572. --theme-syntax-punctuation: #f8f8f2;
  573. }
  574. [data-theme="everforest"][data-dark="false"] {
  575. --theme-primary: #8da101;
  576. --theme-secondary: #3a94c5;
  577. --theme-accent: #df69ba;
  578. --theme-error: #f85552;
  579. --theme-warning: #f57d26;
  580. --theme-success: #8da101;
  581. --theme-info: #35a77c;
  582. --theme-text: #5c6a72;
  583. --theme-text-muted: #a6b0a0;
  584. --theme-background: #fdf6e3;
  585. --theme-background-panel: #efebd4;
  586. --theme-background-element: #f4f0d9;
  587. --theme-border: #939f91;
  588. --theme-border-active: #829181;
  589. --theme-border-subtle: #a6b0a0;
  590. --theme-diff-added: #1e725c;
  591. --theme-diff-removed: #c53b53;
  592. --theme-diff-context: #7086b5;
  593. --theme-diff-hunk-header: #7086b5;
  594. --theme-diff-highlight-added: #4db380;
  595. --theme-diff-highlight-removed: #f52a65;
  596. --theme-diff-added-bg: #d5e5d5;
  597. --theme-diff-removed-bg: #f7d8db;
  598. --theme-diff-context-bg: #efebd4;
  599. --theme-diff-line-number: #f4f0d9;
  600. --theme-diff-added-line-number-bg: #c5d5c5;
  601. --theme-diff-removed-line-number-bg: #e7c8cb;
  602. --theme-markdown-text: #5c6a72;
  603. --theme-markdown-heading: #df69ba;
  604. --theme-markdown-link: #8da101;
  605. --theme-markdown-link-text: #35a77c;
  606. --theme-markdown-code: #8da101;
  607. --theme-markdown-block-quote: #dfa000;
  608. --theme-markdown-emph: #dfa000;
  609. --theme-markdown-strong: #f57d26;
  610. --theme-markdown-horizontal-rule: #a6b0a0;
  611. --theme-markdown-list-item: #8da101;
  612. --theme-markdown-list-enumeration: #35a77c;
  613. --theme-markdown-image: #8da101;
  614. --theme-markdown-image-text: #35a77c;
  615. --theme-markdown-code-block: #5c6a72;
  616. --theme-syntax-comment: #a6b0a0;
  617. --theme-syntax-keyword: #df69ba;
  618. --theme-syntax-function: #8da101;
  619. --theme-syntax-variable: #f85552;
  620. --theme-syntax-string: #8da101;
  621. --theme-syntax-number: #f57d26;
  622. --theme-syntax-type: #dfa000;
  623. --theme-syntax-operator: #35a77c;
  624. --theme-syntax-punctuation: #5c6a72;
  625. }
  626. [data-theme="everforest"][data-dark="true"] {
  627. --theme-primary: #a7c080;
  628. --theme-secondary: #7fbbb3;
  629. --theme-accent: #d699b6;
  630. --theme-error: #e67e80;
  631. --theme-warning: #e69875;
  632. --theme-success: #a7c080;
  633. --theme-info: #83c092;
  634. --theme-text: #d3c6aa;
  635. --theme-text-muted: #7a8478;
  636. --theme-background: #2d353b;
  637. --theme-background-panel: #333c43;
  638. --theme-background-element: #343f44;
  639. --theme-border: #859289;
  640. --theme-border-active: #9da9a0;
  641. --theme-border-subtle: #7a8478;
  642. --theme-diff-added: #4fd6be;
  643. --theme-diff-removed: #c53b53;
  644. --theme-diff-context: #828bb8;
  645. --theme-diff-hunk-header: #828bb8;
  646. --theme-diff-highlight-added: #b8db87;
  647. --theme-diff-highlight-removed: #e26a75;
  648. --theme-diff-added-bg: #20303b;
  649. --theme-diff-removed-bg: #37222c;
  650. --theme-diff-context-bg: #333c43;
  651. --theme-diff-line-number: #343f44;
  652. --theme-diff-added-line-number-bg: #1b2b34;
  653. --theme-diff-removed-line-number-bg: #2d1f26;
  654. --theme-markdown-text: #d3c6aa;
  655. --theme-markdown-heading: #d699b6;
  656. --theme-markdown-link: #a7c080;
  657. --theme-markdown-link-text: #83c092;
  658. --theme-markdown-code: #a7c080;
  659. --theme-markdown-block-quote: #dbbc7f;
  660. --theme-markdown-emph: #dbbc7f;
  661. --theme-markdown-strong: #e69875;
  662. --theme-markdown-horizontal-rule: #7a8478;
  663. --theme-markdown-list-item: #a7c080;
  664. --theme-markdown-list-enumeration: #83c092;
  665. --theme-markdown-image: #a7c080;
  666. --theme-markdown-image-text: #83c092;
  667. --theme-markdown-code-block: #d3c6aa;
  668. --theme-syntax-comment: #7a8478;
  669. --theme-syntax-keyword: #d699b6;
  670. --theme-syntax-function: #a7c080;
  671. --theme-syntax-variable: #e67e80;
  672. --theme-syntax-string: #a7c080;
  673. --theme-syntax-number: #e69875;
  674. --theme-syntax-type: #dbbc7f;
  675. --theme-syntax-operator: #83c092;
  676. --theme-syntax-punctuation: #d3c6aa;
  677. }
  678. [data-theme="github"][data-dark="false"] {
  679. --theme-primary: #0969da;
  680. --theme-secondary: #8250df;
  681. --theme-accent: #1b7c83;
  682. --theme-error: #cf222e;
  683. --theme-warning: #9a6700;
  684. --theme-success: #1a7f37;
  685. --theme-info: #bc4c00;
  686. --theme-text: #24292f;
  687. --theme-text-muted: #57606a;
  688. --theme-background: #ffffff;
  689. --theme-background-panel: #f6f8fa;
  690. --theme-background-element: #f0f3f6;
  691. --theme-border: #d0d7de;
  692. --theme-border-active: #0969da;
  693. --theme-border-subtle: #d8dee4;
  694. --theme-diff-added: #1a7f37;
  695. --theme-diff-removed: #cf222e;
  696. --theme-diff-context: #57606a;
  697. --theme-diff-hunk-header: #0969da;
  698. --theme-diff-highlight-added: #1a7f37;
  699. --theme-diff-highlight-removed: #cf222e;
  700. --theme-diff-added-bg: #dafbe1;
  701. --theme-diff-removed-bg: #ffebe9;
  702. --theme-diff-context-bg: #f6f8fa;
  703. --theme-diff-line-number: #afb8c1;
  704. --theme-diff-added-line-number-bg: #dafbe1;
  705. --theme-diff-removed-line-number-bg: #ffebe9;
  706. --theme-markdown-text: #24292f;
  707. --theme-markdown-heading: #0969da;
  708. --theme-markdown-link: #0969da;
  709. --theme-markdown-link-text: #1b7c83;
  710. --theme-markdown-code: #bf3989;
  711. --theme-markdown-block-quote: #57606a;
  712. --theme-markdown-emph: #9a6700;
  713. --theme-markdown-strong: #bc4c00;
  714. --theme-markdown-horizontal-rule: #d0d7de;
  715. --theme-markdown-list-item: #0969da;
  716. --theme-markdown-list-enumeration: #1b7c83;
  717. --theme-markdown-image: #0969da;
  718. --theme-markdown-image-text: #1b7c83;
  719. --theme-markdown-code-block: #24292f;
  720. --theme-syntax-comment: #57606a;
  721. --theme-syntax-keyword: #cf222e;
  722. --theme-syntax-function: #8250df;
  723. --theme-syntax-variable: #bc4c00;
  724. --theme-syntax-string: #0969da;
  725. --theme-syntax-number: #1b7c83;
  726. --theme-syntax-type: #bc4c00;
  727. --theme-syntax-operator: #cf222e;
  728. --theme-syntax-punctuation: #24292f;
  729. }
  730. [data-theme="github"][data-dark="true"] {
  731. --theme-primary: #58a6ff;
  732. --theme-secondary: #bc8cff;
  733. --theme-accent: #39c5cf;
  734. --theme-error: #f85149;
  735. --theme-warning: #e3b341;
  736. --theme-success: #3fb950;
  737. --theme-info: #d29922;
  738. --theme-text: #c9d1d9;
  739. --theme-text-muted: #8b949e;
  740. --theme-background: #0d1117;
  741. --theme-background-panel: #010409;
  742. --theme-background-element: #161b22;
  743. --theme-border: #30363d;
  744. --theme-border-active: #58a6ff;
  745. --theme-border-subtle: #21262d;
  746. --theme-diff-added: #3fb950;
  747. --theme-diff-removed: #f85149;
  748. --theme-diff-context: #8b949e;
  749. --theme-diff-hunk-header: #58a6ff;
  750. --theme-diff-highlight-added: #3fb950;
  751. --theme-diff-highlight-removed: #f85149;
  752. --theme-diff-added-bg: #033a16;
  753. --theme-diff-removed-bg: #67060c;
  754. --theme-diff-context-bg: #010409;
  755. --theme-diff-line-number: #484f58;
  756. --theme-diff-added-line-number-bg: #033a16;
  757. --theme-diff-removed-line-number-bg: #67060c;
  758. --theme-markdown-text: #c9d1d9;
  759. --theme-markdown-heading: #58a6ff;
  760. --theme-markdown-link: #58a6ff;
  761. --theme-markdown-link-text: #39c5cf;
  762. --theme-markdown-code: #ff7b72;
  763. --theme-markdown-block-quote: #8b949e;
  764. --theme-markdown-emph: #e3b341;
  765. --theme-markdown-strong: #d29922;
  766. --theme-markdown-horizontal-rule: #30363d;
  767. --theme-markdown-list-item: #58a6ff;
  768. --theme-markdown-list-enumeration: #39c5cf;
  769. --theme-markdown-image: #58a6ff;
  770. --theme-markdown-image-text: #39c5cf;
  771. --theme-markdown-code-block: #c9d1d9;
  772. --theme-syntax-comment: #8b949e;
  773. --theme-syntax-keyword: #ff7b72;
  774. --theme-syntax-function: #bc8cff;
  775. --theme-syntax-variable: #d29922;
  776. --theme-syntax-string: #39c5cf;
  777. --theme-syntax-number: #58a6ff;
  778. --theme-syntax-type: #d29922;
  779. --theme-syntax-operator: #ff7b72;
  780. --theme-syntax-punctuation: #c9d1d9;
  781. }
  782. [data-theme="gruvbox"][data-dark="false"] {
  783. --theme-primary: #076678;
  784. --theme-secondary: #8f3f71;
  785. --theme-accent: #427b58;
  786. --theme-error: #9d0006;
  787. --theme-warning: #af3a03;
  788. --theme-success: #79740e;
  789. --theme-info: #b57614;
  790. --theme-text: #3c3836;
  791. --theme-text-muted: #7c6f64;
  792. --theme-background: #fbf1c7;
  793. --theme-background-panel: #ebdbb2;
  794. --theme-background-element: #d5c4a1;
  795. --theme-border: #bdae93;
  796. --theme-border-active: #3c3836;
  797. --theme-border-subtle: #d5c4a1;
  798. --theme-diff-added: #79740e;
  799. --theme-diff-removed: #9d0006;
  800. --theme-diff-context: #7c6f64;
  801. --theme-diff-hunk-header: #427b58;
  802. --theme-diff-highlight-added: #79740e;
  803. --theme-diff-highlight-removed: #9d0006;
  804. --theme-diff-added-bg: #e2e0b5;
  805. --theme-diff-removed-bg: #e9d8d5;
  806. --theme-diff-context-bg: #ebdbb2;
  807. --theme-diff-line-number: #bdae93;
  808. --theme-diff-added-line-number-bg: #d4d2a9;
  809. --theme-diff-removed-line-number-bg: #d8cbc8;
  810. --theme-markdown-text: #3c3836;
  811. --theme-markdown-heading: #076678;
  812. --theme-markdown-link: #427b58;
  813. --theme-markdown-link-text: #79740e;
  814. --theme-markdown-code: #b57614;
  815. --theme-markdown-block-quote: #7c6f64;
  816. --theme-markdown-emph: #8f3f71;
  817. --theme-markdown-strong: #af3a03;
  818. --theme-markdown-horizontal-rule: #7c6f64;
  819. --theme-markdown-list-item: #076678;
  820. --theme-markdown-list-enumeration: #427b58;
  821. --theme-markdown-image: #427b58;
  822. --theme-markdown-image-text: #79740e;
  823. --theme-markdown-code-block: #3c3836;
  824. --theme-syntax-comment: #7c6f64;
  825. --theme-syntax-keyword: #9d0006;
  826. --theme-syntax-function: #79740e;
  827. --theme-syntax-variable: #076678;
  828. --theme-syntax-string: #b57614;
  829. --theme-syntax-number: #8f3f71;
  830. --theme-syntax-type: #427b58;
  831. --theme-syntax-operator: #af3a03;
  832. --theme-syntax-punctuation: #3c3836;
  833. }
  834. [data-theme="gruvbox"][data-dark="true"] {
  835. --theme-primary: #83a598;
  836. --theme-secondary: #d3869b;
  837. --theme-accent: #8ec07c;
  838. --theme-error: #fb4934;
  839. --theme-warning: #fe8019;
  840. --theme-success: #b8bb26;
  841. --theme-info: #fabd2f;
  842. --theme-text: #ebdbb2;
  843. --theme-text-muted: #928374;
  844. --theme-background: #282828;
  845. --theme-background-panel: #3c3836;
  846. --theme-background-element: #504945;
  847. --theme-border: #665c54;
  848. --theme-border-active: #ebdbb2;
  849. --theme-border-subtle: #504945;
  850. --theme-diff-added: #98971a;
  851. --theme-diff-removed: #cc241d;
  852. --theme-diff-context: #928374;
  853. --theme-diff-hunk-header: #689d6a;
  854. --theme-diff-highlight-added: #b8bb26;
  855. --theme-diff-highlight-removed: #fb4934;
  856. --theme-diff-added-bg: #32302f;
  857. --theme-diff-removed-bg: #322929;
  858. --theme-diff-context-bg: #3c3836;
  859. --theme-diff-line-number: #665c54;
  860. --theme-diff-added-line-number-bg: #2a2827;
  861. --theme-diff-removed-line-number-bg: #2a2222;
  862. --theme-markdown-text: #ebdbb2;
  863. --theme-markdown-heading: #83a598;
  864. --theme-markdown-link: #8ec07c;
  865. --theme-markdown-link-text: #b8bb26;
  866. --theme-markdown-code: #fabd2f;
  867. --theme-markdown-block-quote: #928374;
  868. --theme-markdown-emph: #d3869b;
  869. --theme-markdown-strong: #fe8019;
  870. --theme-markdown-horizontal-rule: #928374;
  871. --theme-markdown-list-item: #83a598;
  872. --theme-markdown-list-enumeration: #8ec07c;
  873. --theme-markdown-image: #8ec07c;
  874. --theme-markdown-image-text: #b8bb26;
  875. --theme-markdown-code-block: #ebdbb2;
  876. --theme-syntax-comment: #928374;
  877. --theme-syntax-keyword: #fb4934;
  878. --theme-syntax-function: #b8bb26;
  879. --theme-syntax-variable: #83a598;
  880. --theme-syntax-string: #fabd2f;
  881. --theme-syntax-number: #d3869b;
  882. --theme-syntax-type: #8ec07c;
  883. --theme-syntax-operator: #fe8019;
  884. --theme-syntax-punctuation: #ebdbb2;
  885. }
  886. [data-theme="kanagawa"][data-dark="false"] {
  887. --theme-primary: #2d4f67;
  888. --theme-secondary: #957fb8;
  889. --theme-accent: #d27e99;
  890. --theme-error: #e82424;
  891. --theme-warning: #d7a657;
  892. --theme-success: #98bb6c;
  893. --theme-info: #76946a;
  894. --theme-text: #54433a;
  895. --theme-text-muted: #9e9389;
  896. --theme-background: #f2e9de;
  897. --theme-background-panel: #eae4d7;
  898. --theme-background-element: #e3dcd2;
  899. --theme-border: #d4cbbf;
  900. --theme-border-active: #c38d9d;
  901. --theme-border-subtle: #dcd4c9;
  902. --theme-diff-added: #98bb6c;
  903. --theme-diff-removed: #e82424;
  904. --theme-diff-context: #9e9389;
  905. --theme-diff-hunk-header: #2d4f67;
  906. --theme-diff-highlight-added: #89af5b;
  907. --theme-diff-highlight-removed: #d61f1f;
  908. --theme-diff-added-bg: #eaf3e4;
  909. --theme-diff-removed-bg: #fbe6e6;
  910. --theme-diff-context-bg: #eae4d7;
  911. --theme-diff-line-number: #c7beb4;
  912. --theme-diff-added-line-number-bg: #dde8d6;
  913. --theme-diff-removed-line-number-bg: #f2dada;
  914. --theme-markdown-text: #54433a;
  915. --theme-markdown-heading: #957fb8;
  916. --theme-markdown-link: #2d4f67;
  917. --theme-markdown-link-text: #76946a;
  918. --theme-markdown-code: #98bb6c;
  919. --theme-markdown-block-quote: #9e9389;
  920. --theme-markdown-emph: #c38d9d;
  921. --theme-markdown-strong: #d7a657;
  922. --theme-markdown-horizontal-rule: #9e9389;
  923. --theme-markdown-list-item: #2d4f67;
  924. --theme-markdown-list-enumeration: #76946a;
  925. --theme-markdown-image: #2d4f67;
  926. --theme-markdown-image-text: #76946a;
  927. --theme-markdown-code-block: #54433a;
  928. --theme-syntax-comment: #9e9389;
  929. --theme-syntax-keyword: #957fb8;
  930. --theme-syntax-function: #2d4f67;
  931. --theme-syntax-variable: #54433a;
  932. --theme-syntax-string: #98bb6c;
  933. --theme-syntax-number: #d7a657;
  934. --theme-syntax-type: #c38d9d;
  935. --theme-syntax-operator: #d27e99;
  936. --theme-syntax-punctuation: #54433a;
  937. }
  938. [data-theme="kanagawa"][data-dark="true"] {
  939. --theme-primary: #7e9cd8;
  940. --theme-secondary: #957fb8;
  941. --theme-accent: #d27e99;
  942. --theme-error: #e82424;
  943. --theme-warning: #d7a657;
  944. --theme-success: #98bb6c;
  945. --theme-info: #76946a;
  946. --theme-text: #dcd7ba;
  947. --theme-text-muted: #727169;
  948. --theme-background: #1f1f28;
  949. --theme-background-panel: #2a2a37;
  950. --theme-background-element: #363646;
  951. --theme-border: #54546d;
  952. --theme-border-active: #c38d9d;
  953. --theme-border-subtle: #363646;
  954. --theme-diff-added: #98bb6c;
  955. --theme-diff-removed: #e82424;
  956. --theme-diff-context: #727169;
  957. --theme-diff-hunk-header: #2d4f67;
  958. --theme-diff-highlight-added: #a9d977;
  959. --theme-diff-highlight-removed: #f24a4a;
  960. --theme-diff-added-bg: #252e25;
  961. --theme-diff-removed-bg: #362020;
  962. --theme-diff-context-bg: #2a2a37;
  963. --theme-diff-line-number: #54546d;
  964. --theme-diff-added-line-number-bg: #202820;
  965. --theme-diff-removed-line-number-bg: #2d1c1c;
  966. --theme-markdown-text: #dcd7ba;
  967. --theme-markdown-heading: #957fb8;
  968. --theme-markdown-link: #7e9cd8;
  969. --theme-markdown-link-text: #76946a;
  970. --theme-markdown-code: #98bb6c;
  971. --theme-markdown-block-quote: #727169;
  972. --theme-markdown-emph: #c38d9d;
  973. --theme-markdown-strong: #d7a657;
  974. --theme-markdown-horizontal-rule: #727169;
  975. --theme-markdown-list-item: #7e9cd8;
  976. --theme-markdown-list-enumeration: #76946a;
  977. --theme-markdown-image: #7e9cd8;
  978. --theme-markdown-image-text: #76946a;
  979. --theme-markdown-code-block: #dcd7ba;
  980. --theme-syntax-comment: #727169;
  981. --theme-syntax-keyword: #957fb8;
  982. --theme-syntax-function: #7e9cd8;
  983. --theme-syntax-variable: #dcd7ba;
  984. --theme-syntax-string: #98bb6c;
  985. --theme-syntax-number: #d7a657;
  986. --theme-syntax-type: #c38d9d;
  987. --theme-syntax-operator: #d27e99;
  988. --theme-syntax-punctuation: #dcd7ba;
  989. }
  990. [data-theme="material"][data-dark="false"] {
  991. --theme-primary: #6182b8;
  992. --theme-secondary: #7c4dff;
  993. --theme-accent: #39adb5;
  994. --theme-error: #e53935;
  995. --theme-warning: #ffb300;
  996. --theme-success: #91b859;
  997. --theme-info: #f4511e;
  998. --theme-text: #263238;
  999. --theme-text-muted: #90a4ae;
  1000. --theme-background: #fafafa;
  1001. --theme-background-panel: #f5f5f5;
  1002. --theme-background-element: #e7e7e8;
  1003. --theme-border: #e0e0e0;
  1004. --theme-border-active: #6182b8;
  1005. --theme-border-subtle: #eeeeee;
  1006. --theme-diff-added: #91b859;
  1007. --theme-diff-removed: #e53935;
  1008. --theme-diff-context: #90a4ae;
  1009. --theme-diff-hunk-header: #39adb5;
  1010. --theme-diff-highlight-added: #91b859;
  1011. --theme-diff-highlight-removed: #e53935;
  1012. --theme-diff-added-bg: #e8f5e9;
  1013. --theme-diff-removed-bg: #ffebee;
  1014. --theme-diff-context-bg: #f5f5f5;
  1015. --theme-diff-line-number: #cfd8dc;
  1016. --theme-diff-added-line-number-bg: #e8f5e9;
  1017. --theme-diff-removed-line-number-bg: #ffebee;
  1018. --theme-markdown-text: #263238;
  1019. --theme-markdown-heading: #6182b8;
  1020. --theme-markdown-link: #39adb5;
  1021. --theme-markdown-link-text: #7c4dff;
  1022. --theme-markdown-code: #91b859;
  1023. --theme-markdown-block-quote: #90a4ae;
  1024. --theme-markdown-emph: #ffb300;
  1025. --theme-markdown-strong: #f4511e;
  1026. --theme-markdown-horizontal-rule: #e0e0e0;
  1027. --theme-markdown-list-item: #6182b8;
  1028. --theme-markdown-list-enumeration: #39adb5;
  1029. --theme-markdown-image: #39adb5;
  1030. --theme-markdown-image-text: #7c4dff;
  1031. --theme-markdown-code-block: #263238;
  1032. --theme-syntax-comment: #90a4ae;
  1033. --theme-syntax-keyword: #7c4dff;
  1034. --theme-syntax-function: #6182b8;
  1035. --theme-syntax-variable: #263238;
  1036. --theme-syntax-string: #91b859;
  1037. --theme-syntax-number: #f4511e;
  1038. --theme-syntax-type: #ffb300;
  1039. --theme-syntax-operator: #39adb5;
  1040. --theme-syntax-punctuation: #263238;
  1041. }
  1042. [data-theme="material"][data-dark="true"] {
  1043. --theme-primary: #82aaff;
  1044. --theme-secondary: #c792ea;
  1045. --theme-accent: #89ddff;
  1046. --theme-error: #f07178;
  1047. --theme-warning: #ffcb6b;
  1048. --theme-success: #c3e88d;
  1049. --theme-info: #ffcb6b;
  1050. --theme-text: #eeffff;
  1051. --theme-text-muted: #546e7a;
  1052. --theme-background: #263238;
  1053. --theme-background-panel: #1e272c;
  1054. --theme-background-element: #37474f;
  1055. --theme-border: #37474f;
  1056. --theme-border-active: #82aaff;
  1057. --theme-border-subtle: #1e272c;
  1058. --theme-diff-added: #c3e88d;
  1059. --theme-diff-removed: #f07178;
  1060. --theme-diff-context: #546e7a;
  1061. --theme-diff-hunk-header: #89ddff;
  1062. --theme-diff-highlight-added: #c3e88d;
  1063. --theme-diff-highlight-removed: #f07178;
  1064. --theme-diff-added-bg: #2e3c2b;
  1065. --theme-diff-removed-bg: #3c2b2b;
  1066. --theme-diff-context-bg: #1e272c;
  1067. --theme-diff-line-number: #37474f;
  1068. --theme-diff-added-line-number-bg: #2e3c2b;
  1069. --theme-diff-removed-line-number-bg: #3c2b2b;
  1070. --theme-markdown-text: #eeffff;
  1071. --theme-markdown-heading: #82aaff;
  1072. --theme-markdown-link: #89ddff;
  1073. --theme-markdown-link-text: #c792ea;
  1074. --theme-markdown-code: #c3e88d;
  1075. --theme-markdown-block-quote: #546e7a;
  1076. --theme-markdown-emph: #ffcb6b;
  1077. --theme-markdown-strong: #ffcb6b;
  1078. --theme-markdown-horizontal-rule: #37474f;
  1079. --theme-markdown-list-item: #82aaff;
  1080. --theme-markdown-list-enumeration: #89ddff;
  1081. --theme-markdown-image: #89ddff;
  1082. --theme-markdown-image-text: #c792ea;
  1083. --theme-markdown-code-block: #eeffff;
  1084. --theme-syntax-comment: #546e7a;
  1085. --theme-syntax-keyword: #c792ea;
  1086. --theme-syntax-function: #82aaff;
  1087. --theme-syntax-variable: #eeffff;
  1088. --theme-syntax-string: #c3e88d;
  1089. --theme-syntax-number: #ffcb6b;
  1090. --theme-syntax-type: #ffcb6b;
  1091. --theme-syntax-operator: #89ddff;
  1092. --theme-syntax-punctuation: #eeffff;
  1093. }
  1094. [data-theme="matrix"][data-dark="false"] {
  1095. --theme-primary: #1cc24b;
  1096. --theme-secondary: #24f6d9;
  1097. --theme-accent: #c770ff;
  1098. --theme-error: #ff4b4b;
  1099. --theme-warning: #e6ff57;
  1100. --theme-success: #1cc24b;
  1101. --theme-info: #30b3ff;
  1102. --theme-text: #203022;
  1103. --theme-text-muted: #748476;
  1104. --theme-background: #eef3ea;
  1105. --theme-background-panel: #e4ebe1;
  1106. --theme-background-element: #dae1d7;
  1107. --theme-border: #748476;
  1108. --theme-border-active: #1cc24b;
  1109. --theme-border-subtle: #dae1d7;
  1110. --theme-diff-added: #1cc24b;
  1111. --theme-diff-removed: #ff4b4b;
  1112. --theme-diff-context: #748476;
  1113. --theme-diff-hunk-header: #30b3ff;
  1114. --theme-diff-highlight-added: #5dac7e;
  1115. --theme-diff-highlight-removed: #d53a3a;
  1116. --theme-diff-added-bg: #e0efde;
  1117. --theme-diff-removed-bg: #f9e5e5;
  1118. --theme-diff-context-bg: #e4ebe1;
  1119. --theme-diff-line-number: #748476;
  1120. --theme-diff-added-line-number-bg: #d6e7d2;
  1121. --theme-diff-removed-line-number-bg: #f2d2d2;
  1122. --theme-markdown-text: #203022;
  1123. --theme-markdown-heading: #24f6d9;
  1124. --theme-markdown-link: #30b3ff;
  1125. --theme-markdown-link-text: #24f6d9;
  1126. --theme-markdown-code: #1cc24b;
  1127. --theme-markdown-block-quote: #748476;
  1128. --theme-markdown-emph: #ffa83d;
  1129. --theme-markdown-strong: #e6ff57;
  1130. --theme-markdown-horizontal-rule: #748476;
  1131. --theme-markdown-list-item: #30b3ff;
  1132. --theme-markdown-list-enumeration: #24f6d9;
  1133. --theme-markdown-image: #30b3ff;
  1134. --theme-markdown-image-text: #24f6d9;
  1135. --theme-markdown-code-block: #203022;
  1136. --theme-syntax-comment: #748476;
  1137. --theme-syntax-keyword: #c770ff;
  1138. --theme-syntax-function: #30b3ff;
  1139. --theme-syntax-variable: #203022;
  1140. --theme-syntax-string: #1cc24b;
  1141. --theme-syntax-number: #ffa83d;
  1142. --theme-syntax-type: #e6ff57;
  1143. --theme-syntax-operator: #24f6d9;
  1144. --theme-syntax-punctuation: #203022;
  1145. }
  1146. [data-theme="matrix"][data-dark="true"] {
  1147. --theme-primary: #2eff6a;
  1148. --theme-secondary: #00efff;
  1149. --theme-accent: #c770ff;
  1150. --theme-error: #ff4b4b;
  1151. --theme-warning: #e6ff57;
  1152. --theme-success: #62ff94;
  1153. --theme-info: #30b3ff;
  1154. --theme-text: #62ff94;
  1155. --theme-text-muted: #8ca391;
  1156. --theme-background: #0a0e0a;
  1157. --theme-background-panel: #0e130d;
  1158. --theme-background-element: #141c12;
  1159. --theme-border: #1e2a1b;
  1160. --theme-border-active: #2eff6a;
  1161. --theme-border-subtle: #141c12;
  1162. --theme-diff-added: #1cc24b;
  1163. --theme-diff-removed: #ff4b4b;
  1164. --theme-diff-context: #8ca391;
  1165. --theme-diff-hunk-header: #30b3ff;
  1166. --theme-diff-highlight-added: #77ffaf;
  1167. --theme-diff-highlight-removed: #ff7171;
  1168. --theme-diff-added-bg: #132616;
  1169. --theme-diff-removed-bg: #261212;
  1170. --theme-diff-context-bg: #0e130d;
  1171. --theme-diff-line-number: #1e2a1b;
  1172. --theme-diff-added-line-number-bg: #0f1b11;
  1173. --theme-diff-removed-line-number-bg: #1b1414;
  1174. --theme-markdown-text: #62ff94;
  1175. --theme-markdown-heading: #00efff;
  1176. --theme-markdown-link: #30b3ff;
  1177. --theme-markdown-link-text: #24f6d9;
  1178. --theme-markdown-code: #1cc24b;
  1179. --theme-markdown-block-quote: #8ca391;
  1180. --theme-markdown-emph: #ffa83d;
  1181. --theme-markdown-strong: #e6ff57;
  1182. --theme-markdown-horizontal-rule: #8ca391;
  1183. --theme-markdown-list-item: #30b3ff;
  1184. --theme-markdown-list-enumeration: #24f6d9;
  1185. --theme-markdown-image: #30b3ff;
  1186. --theme-markdown-image-text: #24f6d9;
  1187. --theme-markdown-code-block: #62ff94;
  1188. --theme-syntax-comment: #8ca391;
  1189. --theme-syntax-keyword: #c770ff;
  1190. --theme-syntax-function: #30b3ff;
  1191. --theme-syntax-variable: #62ff94;
  1192. --theme-syntax-string: #1cc24b;
  1193. --theme-syntax-number: #ffa83d;
  1194. --theme-syntax-type: #e6ff57;
  1195. --theme-syntax-operator: #24f6d9;
  1196. --theme-syntax-punctuation: #62ff94;
  1197. }
  1198. [data-theme="monokai"][data-dark="false"] {
  1199. --theme-primary: #66d9ef;
  1200. --theme-secondary: #ae81ff;
  1201. --theme-accent: #a6e22e;
  1202. --theme-error: #f92672;
  1203. --theme-warning: #fd971f;
  1204. --theme-success: #a6e22e;
  1205. --theme-info: #fd971f;
  1206. --theme-text: #272822;
  1207. --theme-text-muted: #75715e;
  1208. --theme-background: #fafafa;
  1209. --theme-background-panel: #f0f0f0;
  1210. --theme-background-element: #e0e0e0;
  1211. --theme-border: #d0d0d0;
  1212. --theme-border-active: #66d9ef;
  1213. --theme-border-subtle: #e8e8e8;
  1214. --theme-diff-added: #a6e22e;
  1215. --theme-diff-removed: #f92672;
  1216. --theme-diff-context: #75715e;
  1217. --theme-diff-hunk-header: #75715e;
  1218. --theme-diff-highlight-added: #a6e22e;
  1219. --theme-diff-highlight-removed: #f92672;
  1220. --theme-diff-added-bg: #e0ffe0;
  1221. --theme-diff-removed-bg: #ffe0e0;
  1222. --theme-diff-context-bg: #f0f0f0;
  1223. --theme-diff-line-number: #d0d0d0;
  1224. --theme-diff-added-line-number-bg: #e0ffe0;
  1225. --theme-diff-removed-line-number-bg: #ffe0e0;
  1226. --theme-markdown-text: #272822;
  1227. --theme-markdown-heading: #f92672;
  1228. --theme-markdown-link: #66d9ef;
  1229. --theme-markdown-link-text: #ae81ff;
  1230. --theme-markdown-code: #a6e22e;
  1231. --theme-markdown-block-quote: #75715e;
  1232. --theme-markdown-emph: #fd971f;
  1233. --theme-markdown-strong: #fd971f;
  1234. --theme-markdown-horizontal-rule: #75715e;
  1235. --theme-markdown-list-item: #66d9ef;
  1236. --theme-markdown-list-enumeration: #ae81ff;
  1237. --theme-markdown-image: #66d9ef;
  1238. --theme-markdown-image-text: #ae81ff;
  1239. --theme-markdown-code-block: #272822;
  1240. --theme-syntax-comment: #75715e;
  1241. --theme-syntax-keyword: #f92672;
  1242. --theme-syntax-function: #a6e22e;
  1243. --theme-syntax-variable: #272822;
  1244. --theme-syntax-string: #fd971f;
  1245. --theme-syntax-number: #ae81ff;
  1246. --theme-syntax-type: #66d9ef;
  1247. --theme-syntax-operator: #f92672;
  1248. --theme-syntax-punctuation: #272822;
  1249. }
  1250. [data-theme="monokai"][data-dark="true"] {
  1251. --theme-primary: #66d9ef;
  1252. --theme-secondary: #ae81ff;
  1253. --theme-accent: #a6e22e;
  1254. --theme-error: #f92672;
  1255. --theme-warning: #e6db74;
  1256. --theme-success: #a6e22e;
  1257. --theme-info: #fd971f;
  1258. --theme-text: #f8f8f2;
  1259. --theme-text-muted: #75715e;
  1260. --theme-background: #272822;
  1261. --theme-background-panel: #1e1f1c;
  1262. --theme-background-element: #3e3d32;
  1263. --theme-border: #3e3d32;
  1264. --theme-border-active: #66d9ef;
  1265. --theme-border-subtle: #1e1f1c;
  1266. --theme-diff-added: #a6e22e;
  1267. --theme-diff-removed: #f92672;
  1268. --theme-diff-context: #75715e;
  1269. --theme-diff-hunk-header: #75715e;
  1270. --theme-diff-highlight-added: #a6e22e;
  1271. --theme-diff-highlight-removed: #f92672;
  1272. --theme-diff-added-bg: #1a3a1a;
  1273. --theme-diff-removed-bg: #3a1a1a;
  1274. --theme-diff-context-bg: #1e1f1c;
  1275. --theme-diff-line-number: #3e3d32;
  1276. --theme-diff-added-line-number-bg: #1a3a1a;
  1277. --theme-diff-removed-line-number-bg: #3a1a1a;
  1278. --theme-markdown-text: #f8f8f2;
  1279. --theme-markdown-heading: #f92672;
  1280. --theme-markdown-link: #66d9ef;
  1281. --theme-markdown-link-text: #ae81ff;
  1282. --theme-markdown-code: #a6e22e;
  1283. --theme-markdown-block-quote: #75715e;
  1284. --theme-markdown-emph: #e6db74;
  1285. --theme-markdown-strong: #fd971f;
  1286. --theme-markdown-horizontal-rule: #75715e;
  1287. --theme-markdown-list-item: #66d9ef;
  1288. --theme-markdown-list-enumeration: #ae81ff;
  1289. --theme-markdown-image: #66d9ef;
  1290. --theme-markdown-image-text: #ae81ff;
  1291. --theme-markdown-code-block: #f8f8f2;
  1292. --theme-syntax-comment: #75715e;
  1293. --theme-syntax-keyword: #f92672;
  1294. --theme-syntax-function: #a6e22e;
  1295. --theme-syntax-variable: #f8f8f2;
  1296. --theme-syntax-string: #e6db74;
  1297. --theme-syntax-number: #ae81ff;
  1298. --theme-syntax-type: #66d9ef;
  1299. --theme-syntax-operator: #f92672;
  1300. --theme-syntax-punctuation: #f8f8f2;
  1301. }
  1302. [data-theme="nord"][data-dark="false"] {
  1303. --theme-primary: #5e81ac;
  1304. --theme-secondary: #81a1c1;
  1305. --theme-accent: #8fbcbb;
  1306. --theme-error: #bf616a;
  1307. --theme-warning: #d08770;
  1308. --theme-success: #a3be8c;
  1309. --theme-info: #5e81ac;
  1310. --theme-text: #2e3440;
  1311. --theme-text-muted: #3b4252;
  1312. --theme-background: #eceff4;
  1313. --theme-background-panel: #e5e9f0;
  1314. --theme-background-element: #d8dee9;
  1315. --theme-border: #4c566a;
  1316. --theme-border-active: #434c5e;
  1317. --theme-border-subtle: #4c566a;
  1318. --theme-diff-added: #a3be8c;
  1319. --theme-diff-removed: #bf616a;
  1320. --theme-diff-context: #4c566a;
  1321. --theme-diff-hunk-header: #4c566a;
  1322. --theme-diff-highlight-added: #a3be8c;
  1323. --theme-diff-highlight-removed: #bf616a;
  1324. --theme-diff-added-bg: #e5e9f0;
  1325. --theme-diff-removed-bg: #e5e9f0;
  1326. --theme-diff-context-bg: #e5e9f0;
  1327. --theme-diff-line-number: #d8dee9;
  1328. --theme-diff-added-line-number-bg: #e5e9f0;
  1329. --theme-diff-removed-line-number-bg: #e5e9f0;
  1330. --theme-markdown-text: #2e3440;
  1331. --theme-markdown-heading: #5e81ac;
  1332. --theme-markdown-link: #81a1c1;
  1333. --theme-markdown-link-text: #8fbcbb;
  1334. --theme-markdown-code: #a3be8c;
  1335. --theme-markdown-block-quote: #4c566a;
  1336. --theme-markdown-emph: #d08770;
  1337. --theme-markdown-strong: #ebcb8b;
  1338. --theme-markdown-horizontal-rule: #4c566a;
  1339. --theme-markdown-list-item: #5e81ac;
  1340. --theme-markdown-list-enumeration: #8fbcbb;
  1341. --theme-markdown-image: #81a1c1;
  1342. --theme-markdown-image-text: #8fbcbb;
  1343. --theme-markdown-code-block: #2e3440;
  1344. --theme-syntax-comment: #4c566a;
  1345. --theme-syntax-keyword: #81a1c1;
  1346. --theme-syntax-function: #88c0d0;
  1347. --theme-syntax-variable: #8fbcbb;
  1348. --theme-syntax-string: #a3be8c;
  1349. --theme-syntax-number: #b48ead;
  1350. --theme-syntax-type: #8fbcbb;
  1351. --theme-syntax-operator: #81a1c1;
  1352. --theme-syntax-punctuation: #2e3440;
  1353. }
  1354. [data-theme="nord"][data-dark="true"] {
  1355. --theme-primary: #88c0d0;
  1356. --theme-secondary: #81a1c1;
  1357. --theme-accent: #8fbcbb;
  1358. --theme-error: #bf616a;
  1359. --theme-warning: #d08770;
  1360. --theme-success: #a3be8c;
  1361. --theme-info: #88c0d0;
  1362. --theme-text: #eceff4;
  1363. --theme-text-muted: #8b95a7;
  1364. --theme-background: #2e3440;
  1365. --theme-background-panel: #3b4252;
  1366. --theme-background-element: #434c5e;
  1367. --theme-border: #434c5e;
  1368. --theme-border-active: #4c566a;
  1369. --theme-border-subtle: #434c5e;
  1370. --theme-diff-added: #a3be8c;
  1371. --theme-diff-removed: #bf616a;
  1372. --theme-diff-context: #8b95a7;
  1373. --theme-diff-hunk-header: #8b95a7;
  1374. --theme-diff-highlight-added: #a3be8c;
  1375. --theme-diff-highlight-removed: #bf616a;
  1376. --theme-diff-added-bg: #3b4252;
  1377. --theme-diff-removed-bg: #3b4252;
  1378. --theme-diff-context-bg: #3b4252;
  1379. --theme-diff-line-number: #434c5e;
  1380. --theme-diff-added-line-number-bg: #3b4252;
  1381. --theme-diff-removed-line-number-bg: #3b4252;
  1382. --theme-markdown-text: #d8dee9;
  1383. --theme-markdown-heading: #88c0d0;
  1384. --theme-markdown-link: #81a1c1;
  1385. --theme-markdown-link-text: #8fbcbb;
  1386. --theme-markdown-code: #a3be8c;
  1387. --theme-markdown-block-quote: #8b95a7;
  1388. --theme-markdown-emph: #d08770;
  1389. --theme-markdown-strong: #ebcb8b;
  1390. --theme-markdown-horizontal-rule: #8b95a7;
  1391. --theme-markdown-list-item: #88c0d0;
  1392. --theme-markdown-list-enumeration: #8fbcbb;
  1393. --theme-markdown-image: #81a1c1;
  1394. --theme-markdown-image-text: #8fbcbb;
  1395. --theme-markdown-code-block: #d8dee9;
  1396. --theme-syntax-comment: #8b95a7;
  1397. --theme-syntax-keyword: #81a1c1;
  1398. --theme-syntax-function: #88c0d0;
  1399. --theme-syntax-variable: #8fbcbb;
  1400. --theme-syntax-string: #a3be8c;
  1401. --theme-syntax-number: #b48ead;
  1402. --theme-syntax-type: #8fbcbb;
  1403. --theme-syntax-operator: #81a1c1;
  1404. --theme-syntax-punctuation: #d8dee9;
  1405. }
  1406. [data-theme="one-dark"][data-dark="false"] {
  1407. --theme-primary: #4078f2;
  1408. --theme-secondary: #a626a4;
  1409. --theme-accent: #0184bc;
  1410. --theme-error: #e45649;
  1411. --theme-warning: #c18401;
  1412. --theme-success: #50a14f;
  1413. --theme-info: #986801;
  1414. --theme-text: #383a42;
  1415. --theme-text-muted: #a0a1a7;
  1416. --theme-background: #fafafa;
  1417. --theme-background-panel: #f0f0f1;
  1418. --theme-background-element: #eaeaeb;
  1419. --theme-border: #d1d1d2;
  1420. --theme-border-active: #4078f2;
  1421. --theme-border-subtle: #e0e0e1;
  1422. --theme-diff-added: #50a14f;
  1423. --theme-diff-removed: #e45649;
  1424. --theme-diff-context: #a0a1a7;
  1425. --theme-diff-hunk-header: #0184bc;
  1426. --theme-diff-highlight-added: #489447;
  1427. --theme-diff-highlight-removed: #d65145;
  1428. --theme-diff-added-bg: #eafbe9;
  1429. --theme-diff-removed-bg: #fce9e8;
  1430. --theme-diff-context-bg: #f0f0f1;
  1431. --theme-diff-line-number: #c9c9ca;
  1432. --theme-diff-added-line-number-bg: #e1f3df;
  1433. --theme-diff-removed-line-number-bg: #f5e2e1;
  1434. --theme-markdown-text: #383a42;
  1435. --theme-markdown-heading: #a626a4;
  1436. --theme-markdown-link: #4078f2;
  1437. --theme-markdown-link-text: #0184bc;
  1438. --theme-markdown-code: #50a14f;
  1439. --theme-markdown-block-quote: #a0a1a7;
  1440. --theme-markdown-emph: #c18401;
  1441. --theme-markdown-strong: #986801;
  1442. --theme-markdown-horizontal-rule: #a0a1a7;
  1443. --theme-markdown-list-item: #4078f2;
  1444. --theme-markdown-list-enumeration: #0184bc;
  1445. --theme-markdown-image: #4078f2;
  1446. --theme-markdown-image-text: #0184bc;
  1447. --theme-markdown-code-block: #383a42;
  1448. --theme-syntax-comment: #a0a1a7;
  1449. --theme-syntax-keyword: #a626a4;
  1450. --theme-syntax-function: #4078f2;
  1451. --theme-syntax-variable: #e45649;
  1452. --theme-syntax-string: #50a14f;
  1453. --theme-syntax-number: #986801;
  1454. --theme-syntax-type: #c18401;
  1455. --theme-syntax-operator: #0184bc;
  1456. --theme-syntax-punctuation: #383a42;
  1457. }
  1458. [data-theme="one-dark"][data-dark="true"] {
  1459. --theme-primary: #61afef;
  1460. --theme-secondary: #c678dd;
  1461. --theme-accent: #56b6c2;
  1462. --theme-error: #e06c75;
  1463. --theme-warning: #e5c07b;
  1464. --theme-success: #98c379;
  1465. --theme-info: #d19a66;
  1466. --theme-text: #abb2bf;
  1467. --theme-text-muted: #5c6370;
  1468. --theme-background: #282c34;
  1469. --theme-background-panel: #21252b;
  1470. --theme-background-element: #353b45;
  1471. --theme-border: #393f4a;
  1472. --theme-border-active: #61afef;
  1473. --theme-border-subtle: #2c313a;
  1474. --theme-diff-added: #98c379;
  1475. --theme-diff-removed: #e06c75;
  1476. --theme-diff-context: #5c6370;
  1477. --theme-diff-hunk-header: #56b6c2;
  1478. --theme-diff-highlight-added: #aad482;
  1479. --theme-diff-highlight-removed: #e8828b;
  1480. --theme-diff-added-bg: #2c382b;
  1481. --theme-diff-removed-bg: #3a2d2f;
  1482. --theme-diff-context-bg: #21252b;
  1483. --theme-diff-line-number: #495162;
  1484. --theme-diff-added-line-number-bg: #283427;
  1485. --theme-diff-removed-line-number-bg: #36292b;
  1486. --theme-markdown-text: #abb2bf;
  1487. --theme-markdown-heading: #c678dd;
  1488. --theme-markdown-link: #61afef;
  1489. --theme-markdown-link-text: #56b6c2;
  1490. --theme-markdown-code: #98c379;
  1491. --theme-markdown-block-quote: #5c6370;
  1492. --theme-markdown-emph: #e5c07b;
  1493. --theme-markdown-strong: #d19a66;
  1494. --theme-markdown-horizontal-rule: #5c6370;
  1495. --theme-markdown-list-item: #61afef;
  1496. --theme-markdown-list-enumeration: #56b6c2;
  1497. --theme-markdown-image: #61afef;
  1498. --theme-markdown-image-text: #56b6c2;
  1499. --theme-markdown-code-block: #abb2bf;
  1500. --theme-syntax-comment: #5c6370;
  1501. --theme-syntax-keyword: #c678dd;
  1502. --theme-syntax-function: #61afef;
  1503. --theme-syntax-variable: #e06c75;
  1504. --theme-syntax-string: #98c379;
  1505. --theme-syntax-number: #d19a66;
  1506. --theme-syntax-type: #e5c07b;
  1507. --theme-syntax-operator: #56b6c2;
  1508. --theme-syntax-punctuation: #abb2bf;
  1509. }
  1510. [data-theme="opencode"][data-dark="false"] {
  1511. --theme-primary: #3b7dd8;
  1512. --theme-secondary: #7b5bb6;
  1513. --theme-accent: #d68c27;
  1514. --theme-error: #d1383d;
  1515. --theme-warning: #d68c27;
  1516. --theme-success: #3d9a57;
  1517. --theme-info: #318795;
  1518. --theme-text: #1a1a1a;
  1519. --theme-text-muted: #8a8a8a;
  1520. --theme-background: #ffffff;
  1521. --theme-background-panel: #fafafa;
  1522. --theme-background-element: #f5f5f5;
  1523. --theme-border: #b8b8b8;
  1524. --theme-border-active: #a0a0a0;
  1525. --theme-border-subtle: #d4d4d4;
  1526. --theme-diff-added: #1e725c;
  1527. --theme-diff-removed: #c53b53;
  1528. --theme-diff-context: #7086b5;
  1529. --theme-diff-hunk-header: #7086b5;
  1530. --theme-diff-highlight-added: #4db380;
  1531. --theme-diff-highlight-removed: #f52a65;
  1532. --theme-diff-added-bg: #d5e5d5;
  1533. --theme-diff-removed-bg: #f7d8db;
  1534. --theme-diff-context-bg: #fafafa;
  1535. --theme-diff-line-number: #f5f5f5;
  1536. --theme-diff-added-line-number-bg: #c5d5c5;
  1537. --theme-diff-removed-line-number-bg: #e7c8cb;
  1538. --theme-markdown-text: #1a1a1a;
  1539. --theme-markdown-heading: #d68c27;
  1540. --theme-markdown-link: #3b7dd8;
  1541. --theme-markdown-link-text: #318795;
  1542. --theme-markdown-code: #3d9a57;
  1543. --theme-markdown-block-quote: #b0851f;
  1544. --theme-markdown-emph: #b0851f;
  1545. --theme-markdown-strong: #d68c27;
  1546. --theme-markdown-horizontal-rule: #8a8a8a;
  1547. --theme-markdown-list-item: #3b7dd8;
  1548. --theme-markdown-list-enumeration: #318795;
  1549. --theme-markdown-image: #3b7dd8;
  1550. --theme-markdown-image-text: #318795;
  1551. --theme-markdown-code-block: #1a1a1a;
  1552. --theme-syntax-comment: #8a8a8a;
  1553. --theme-syntax-keyword: #d68c27;
  1554. --theme-syntax-function: #3b7dd8;
  1555. --theme-syntax-variable: #d1383d;
  1556. --theme-syntax-string: #3d9a57;
  1557. --theme-syntax-number: #d68c27;
  1558. --theme-syntax-type: #b0851f;
  1559. --theme-syntax-operator: #318795;
  1560. --theme-syntax-punctuation: #1a1a1a;
  1561. }
  1562. [data-theme="opencode"][data-dark="true"] {
  1563. --theme-primary: #fab283;
  1564. --theme-secondary: #5c9cf5;
  1565. --theme-accent: #9d7cd8;
  1566. --theme-error: #e06c75;
  1567. --theme-warning: #f5a742;
  1568. --theme-success: #7fd88f;
  1569. --theme-info: #56b6c2;
  1570. --theme-text: #eeeeee;
  1571. --theme-text-muted: #808080;
  1572. --theme-background: #0a0a0a;
  1573. --theme-background-panel: #141414;
  1574. --theme-background-element: #1e1e1e;
  1575. --theme-border: #484848;
  1576. --theme-border-active: #606060;
  1577. --theme-border-subtle: #3c3c3c;
  1578. --theme-diff-added: #4fd6be;
  1579. --theme-diff-removed: #c53b53;
  1580. --theme-diff-context: #828bb8;
  1581. --theme-diff-hunk-header: #828bb8;
  1582. --theme-diff-highlight-added: #b8db87;
  1583. --theme-diff-highlight-removed: #e26a75;
  1584. --theme-diff-added-bg: #20303b;
  1585. --theme-diff-removed-bg: #37222c;
  1586. --theme-diff-context-bg: #141414;
  1587. --theme-diff-line-number: #1e1e1e;
  1588. --theme-diff-added-line-number-bg: #1b2b34;
  1589. --theme-diff-removed-line-number-bg: #2d1f26;
  1590. --theme-markdown-text: #eeeeee;
  1591. --theme-markdown-heading: #9d7cd8;
  1592. --theme-markdown-link: #fab283;
  1593. --theme-markdown-link-text: #56b6c2;
  1594. --theme-markdown-code: #7fd88f;
  1595. --theme-markdown-block-quote: #e5c07b;
  1596. --theme-markdown-emph: #e5c07b;
  1597. --theme-markdown-strong: #f5a742;
  1598. --theme-markdown-horizontal-rule: #808080;
  1599. --theme-markdown-list-item: #fab283;
  1600. --theme-markdown-list-enumeration: #56b6c2;
  1601. --theme-markdown-image: #fab283;
  1602. --theme-markdown-image-text: #56b6c2;
  1603. --theme-markdown-code-block: #eeeeee;
  1604. --theme-syntax-comment: #808080;
  1605. --theme-syntax-keyword: #9d7cd8;
  1606. --theme-syntax-function: #fab283;
  1607. --theme-syntax-variable: #e06c75;
  1608. --theme-syntax-string: #7fd88f;
  1609. --theme-syntax-number: #f5a742;
  1610. --theme-syntax-type: #e5c07b;
  1611. --theme-syntax-operator: #56b6c2;
  1612. --theme-syntax-punctuation: #eeeeee;
  1613. }
  1614. [data-theme="palenight"][data-dark="false"] {
  1615. --theme-primary: #4976eb;
  1616. --theme-secondary: #a854f2;
  1617. --theme-accent: #00acc1;
  1618. --theme-error: #e53935;
  1619. --theme-warning: #ffb300;
  1620. --theme-success: #91b859;
  1621. --theme-info: #f4511e;
  1622. --theme-text: #292d3e;
  1623. --theme-text-muted: #8796b0;
  1624. --theme-background: #fafafa;
  1625. --theme-background-panel: #f5f5f5;
  1626. --theme-background-element: #e7e7e8;
  1627. --theme-border: #e0e0e0;
  1628. --theme-border-active: #4976eb;
  1629. --theme-border-subtle: #eeeeee;
  1630. --theme-diff-added: #91b859;
  1631. --theme-diff-removed: #e53935;
  1632. --theme-diff-context: #8796b0;
  1633. --theme-diff-hunk-header: #00acc1;
  1634. --theme-diff-highlight-added: #91b859;
  1635. --theme-diff-highlight-removed: #e53935;
  1636. --theme-diff-added-bg: #e8f5e9;
  1637. --theme-diff-removed-bg: #ffebee;
  1638. --theme-diff-context-bg: #f5f5f5;
  1639. --theme-diff-line-number: #cfd8dc;
  1640. --theme-diff-added-line-number-bg: #e8f5e9;
  1641. --theme-diff-removed-line-number-bg: #ffebee;
  1642. --theme-markdown-text: #292d3e;
  1643. --theme-markdown-heading: #a854f2;
  1644. --theme-markdown-link: #4976eb;
  1645. --theme-markdown-link-text: #00acc1;
  1646. --theme-markdown-code: #91b859;
  1647. --theme-markdown-block-quote: #8796b0;
  1648. --theme-markdown-emph: #ffb300;
  1649. --theme-markdown-strong: #f4511e;
  1650. --theme-markdown-horizontal-rule: #8796b0;
  1651. --theme-markdown-list-item: #4976eb;
  1652. --theme-markdown-list-enumeration: #00acc1;
  1653. --theme-markdown-image: #4976eb;
  1654. --theme-markdown-image-text: #00acc1;
  1655. --theme-markdown-code-block: #292d3e;
  1656. --theme-syntax-comment: #8796b0;
  1657. --theme-syntax-keyword: #a854f2;
  1658. --theme-syntax-function: #4976eb;
  1659. --theme-syntax-variable: #292d3e;
  1660. --theme-syntax-string: #91b859;
  1661. --theme-syntax-number: #f4511e;
  1662. --theme-syntax-type: #ffb300;
  1663. --theme-syntax-operator: #00acc1;
  1664. --theme-syntax-punctuation: #292d3e;
  1665. }
  1666. [data-theme="palenight"][data-dark="true"] {
  1667. --theme-primary: #82aaff;
  1668. --theme-secondary: #c792ea;
  1669. --theme-accent: #89ddff;
  1670. --theme-error: #f07178;
  1671. --theme-warning: #ffcb6b;
  1672. --theme-success: #c3e88d;
  1673. --theme-info: #f78c6c;
  1674. --theme-text: #a6accd;
  1675. --theme-text-muted: #676e95;
  1676. --theme-background: #292d3e;
  1677. --theme-background-panel: #1e2132;
  1678. --theme-background-element: #32364a;
  1679. --theme-border: #32364a;
  1680. --theme-border-active: #82aaff;
  1681. --theme-border-subtle: #1e2132;
  1682. --theme-diff-added: #c3e88d;
  1683. --theme-diff-removed: #f07178;
  1684. --theme-diff-context: #676e95;
  1685. --theme-diff-hunk-header: #89ddff;
  1686. --theme-diff-highlight-added: #c3e88d;
  1687. --theme-diff-highlight-removed: #f07178;
  1688. --theme-diff-added-bg: #2e3c2b;
  1689. --theme-diff-removed-bg: #3c2b2b;
  1690. --theme-diff-context-bg: #1e2132;
  1691. --theme-diff-line-number: #444760;
  1692. --theme-diff-added-line-number-bg: #2e3c2b;
  1693. --theme-diff-removed-line-number-bg: #3c2b2b;
  1694. --theme-markdown-text: #a6accd;
  1695. --theme-markdown-heading: #c792ea;
  1696. --theme-markdown-link: #82aaff;
  1697. --theme-markdown-link-text: #89ddff;
  1698. --theme-markdown-code: #c3e88d;
  1699. --theme-markdown-block-quote: #676e95;
  1700. --theme-markdown-emph: #ffcb6b;
  1701. --theme-markdown-strong: #f78c6c;
  1702. --theme-markdown-horizontal-rule: #676e95;
  1703. --theme-markdown-list-item: #82aaff;
  1704. --theme-markdown-list-enumeration: #89ddff;
  1705. --theme-markdown-image: #82aaff;
  1706. --theme-markdown-image-text: #89ddff;
  1707. --theme-markdown-code-block: #a6accd;
  1708. --theme-syntax-comment: #676e95;
  1709. --theme-syntax-keyword: #c792ea;
  1710. --theme-syntax-function: #82aaff;
  1711. --theme-syntax-variable: #a6accd;
  1712. --theme-syntax-string: #c3e88d;
  1713. --theme-syntax-number: #f78c6c;
  1714. --theme-syntax-type: #ffcb6b;
  1715. --theme-syntax-operator: #89ddff;
  1716. --theme-syntax-punctuation: #a6accd;
  1717. }
  1718. [data-theme="rosepine"][data-dark="false"] {
  1719. --theme-primary: #31748f;
  1720. --theme-secondary: #907aa9;
  1721. --theme-accent: #d7827e;
  1722. --theme-error: #b4637a;
  1723. --theme-warning: #ea9d34;
  1724. --theme-success: #286983;
  1725. --theme-info: #56949f;
  1726. --theme-text: #575279;
  1727. --theme-text-muted: #9893a5;
  1728. --theme-background: #faf4ed;
  1729. --theme-background-panel: #fffaf3;
  1730. --theme-background-element: #f2e9e1;
  1731. --theme-border: #dfdad9;
  1732. --theme-border-active: #31748f;
  1733. --theme-border-subtle: #f4ede8;
  1734. --theme-diff-added: #286983;
  1735. --theme-diff-removed: #b4637a;
  1736. --theme-diff-context: #9893a5;
  1737. --theme-diff-hunk-header: #907aa9;
  1738. --theme-diff-highlight-added: #286983;
  1739. --theme-diff-highlight-removed: #b4637a;
  1740. --theme-diff-added-bg: #e5f2f3;
  1741. --theme-diff-removed-bg: #fce5e8;
  1742. --theme-diff-context-bg: #fffaf3;
  1743. --theme-diff-line-number: #9893a5;
  1744. --theme-diff-added-line-number-bg: #e5f2f3;
  1745. --theme-diff-removed-line-number-bg: #fce5e8;
  1746. --theme-markdown-text: #575279;
  1747. --theme-markdown-heading: #907aa9;
  1748. --theme-markdown-link: #31748f;
  1749. --theme-markdown-link-text: #d7827e;
  1750. --theme-markdown-code: #286983;
  1751. --theme-markdown-block-quote: #9893a5;
  1752. --theme-markdown-emph: #ea9d34;
  1753. --theme-markdown-strong: #b4637a;
  1754. --theme-markdown-horizontal-rule: #dfdad9;
  1755. --theme-markdown-list-item: #31748f;
  1756. --theme-markdown-list-enumeration: #d7827e;
  1757. --theme-markdown-image: #31748f;
  1758. --theme-markdown-image-text: #d7827e;
  1759. --theme-markdown-code-block: #575279;
  1760. --theme-syntax-comment: #9893a5;
  1761. --theme-syntax-keyword: #286983;
  1762. --theme-syntax-function: #d7827e;
  1763. --theme-syntax-variable: #575279;
  1764. --theme-syntax-string: #ea9d34;
  1765. --theme-syntax-number: #907aa9;
  1766. --theme-syntax-type: #56949f;
  1767. --theme-syntax-operator: #797593;
  1768. --theme-syntax-punctuation: #797593;
  1769. }
  1770. [data-theme="rosepine"][data-dark="true"] {
  1771. --theme-primary: #9ccfd8;
  1772. --theme-secondary: #c4a7e7;
  1773. --theme-accent: #ebbcba;
  1774. --theme-error: #eb6f92;
  1775. --theme-warning: #f6c177;
  1776. --theme-success: #31748f;
  1777. --theme-info: #9ccfd8;
  1778. --theme-text: #e0def4;
  1779. --theme-text-muted: #6e6a86;
  1780. --theme-background: #191724;
  1781. --theme-background-panel: #1f1d2e;
  1782. --theme-background-element: #26233a;
  1783. --theme-border: #403d52;
  1784. --theme-border-active: #9ccfd8;
  1785. --theme-border-subtle: #21202e;
  1786. --theme-diff-added: #31748f;
  1787. --theme-diff-removed: #eb6f92;
  1788. --theme-diff-context: #6e6a86;
  1789. --theme-diff-hunk-header: #c4a7e7;
  1790. --theme-diff-highlight-added: #31748f;
  1791. --theme-diff-highlight-removed: #eb6f92;
  1792. --theme-diff-added-bg: #1f2d3a;
  1793. --theme-diff-removed-bg: #3a1f2d;
  1794. --theme-diff-context-bg: #1f1d2e;
  1795. --theme-diff-line-number: #6e6a86;
  1796. --theme-diff-added-line-number-bg: #1f2d3a;
  1797. --theme-diff-removed-line-number-bg: #3a1f2d;
  1798. --theme-markdown-text: #e0def4;
  1799. --theme-markdown-heading: #c4a7e7;
  1800. --theme-markdown-link: #9ccfd8;
  1801. --theme-markdown-link-text: #ebbcba;
  1802. --theme-markdown-code: #31748f;
  1803. --theme-markdown-block-quote: #6e6a86;
  1804. --theme-markdown-emph: #f6c177;
  1805. --theme-markdown-strong: #eb6f92;
  1806. --theme-markdown-horizontal-rule: #403d52;
  1807. --theme-markdown-list-item: #9ccfd8;
  1808. --theme-markdown-list-enumeration: #ebbcba;
  1809. --theme-markdown-image: #9ccfd8;
  1810. --theme-markdown-image-text: #ebbcba;
  1811. --theme-markdown-code-block: #e0def4;
  1812. --theme-syntax-comment: #6e6a86;
  1813. --theme-syntax-keyword: #31748f;
  1814. --theme-syntax-function: #ebbcba;
  1815. --theme-syntax-variable: #e0def4;
  1816. --theme-syntax-string: #f6c177;
  1817. --theme-syntax-number: #c4a7e7;
  1818. --theme-syntax-type: #9ccfd8;
  1819. --theme-syntax-operator: #908caa;
  1820. --theme-syntax-punctuation: #908caa;
  1821. }
  1822. [data-theme="solarized"][data-dark="false"] {
  1823. --theme-primary: #268bd2;
  1824. --theme-secondary: #6c71c4;
  1825. --theme-accent: #2aa198;
  1826. --theme-error: #dc322f;
  1827. --theme-warning: #b58900;
  1828. --theme-success: #859900;
  1829. --theme-info: #cb4b16;
  1830. --theme-text: #657b83;
  1831. --theme-text-muted: #93a1a1;
  1832. --theme-background: #fdf6e3;
  1833. --theme-background-panel: #eee8d5;
  1834. --theme-background-element: #eee8d5;
  1835. --theme-border: #eee8d5;
  1836. --theme-border-active: #93a1a1;
  1837. --theme-border-subtle: #eee8d5;
  1838. --theme-diff-added: #859900;
  1839. --theme-diff-removed: #dc322f;
  1840. --theme-diff-context: #93a1a1;
  1841. --theme-diff-hunk-header: #93a1a1;
  1842. --theme-diff-highlight-added: #859900;
  1843. --theme-diff-highlight-removed: #dc322f;
  1844. --theme-diff-added-bg: #eee8d5;
  1845. --theme-diff-removed-bg: #eee8d5;
  1846. --theme-diff-context-bg: #eee8d5;
  1847. --theme-diff-line-number: #93a1a1;
  1848. --theme-diff-added-line-number-bg: #eee8d5;
  1849. --theme-diff-removed-line-number-bg: #eee8d5;
  1850. --theme-markdown-text: #657b83;
  1851. --theme-markdown-heading: #268bd2;
  1852. --theme-markdown-link: #2aa198;
  1853. --theme-markdown-link-text: #6c71c4;
  1854. --theme-markdown-code: #859900;
  1855. --theme-markdown-block-quote: #93a1a1;
  1856. --theme-markdown-emph: #b58900;
  1857. --theme-markdown-strong: #cb4b16;
  1858. --theme-markdown-horizontal-rule: #93a1a1;
  1859. --theme-markdown-list-item: #268bd2;
  1860. --theme-markdown-list-enumeration: #2aa198;
  1861. --theme-markdown-image: #2aa198;
  1862. --theme-markdown-image-text: #6c71c4;
  1863. --theme-markdown-code-block: #657b83;
  1864. --theme-syntax-comment: #93a1a1;
  1865. --theme-syntax-keyword: #859900;
  1866. --theme-syntax-function: #268bd2;
  1867. --theme-syntax-variable: #2aa198;
  1868. --theme-syntax-string: #2aa198;
  1869. --theme-syntax-number: #d33682;
  1870. --theme-syntax-type: #b58900;
  1871. --theme-syntax-operator: #859900;
  1872. --theme-syntax-punctuation: #657b83;
  1873. }
  1874. [data-theme="solarized"][data-dark="true"] {
  1875. --theme-primary: #268bd2;
  1876. --theme-secondary: #6c71c4;
  1877. --theme-accent: #2aa198;
  1878. --theme-error: #dc322f;
  1879. --theme-warning: #b58900;
  1880. --theme-success: #859900;
  1881. --theme-info: #cb4b16;
  1882. --theme-text: #839496;
  1883. --theme-text-muted: #586e75;
  1884. --theme-background: #002b36;
  1885. --theme-background-panel: #073642;
  1886. --theme-background-element: #073642;
  1887. --theme-border: #073642;
  1888. --theme-border-active: #586e75;
  1889. --theme-border-subtle: #073642;
  1890. --theme-diff-added: #859900;
  1891. --theme-diff-removed: #dc322f;
  1892. --theme-diff-context: #586e75;
  1893. --theme-diff-hunk-header: #586e75;
  1894. --theme-diff-highlight-added: #859900;
  1895. --theme-diff-highlight-removed: #dc322f;
  1896. --theme-diff-added-bg: #073642;
  1897. --theme-diff-removed-bg: #073642;
  1898. --theme-diff-context-bg: #073642;
  1899. --theme-diff-line-number: #586e75;
  1900. --theme-diff-added-line-number-bg: #073642;
  1901. --theme-diff-removed-line-number-bg: #073642;
  1902. --theme-markdown-text: #839496;
  1903. --theme-markdown-heading: #268bd2;
  1904. --theme-markdown-link: #2aa198;
  1905. --theme-markdown-link-text: #6c71c4;
  1906. --theme-markdown-code: #859900;
  1907. --theme-markdown-block-quote: #586e75;
  1908. --theme-markdown-emph: #b58900;
  1909. --theme-markdown-strong: #cb4b16;
  1910. --theme-markdown-horizontal-rule: #586e75;
  1911. --theme-markdown-list-item: #268bd2;
  1912. --theme-markdown-list-enumeration: #2aa198;
  1913. --theme-markdown-image: #2aa198;
  1914. --theme-markdown-image-text: #6c71c4;
  1915. --theme-markdown-code-block: #839496;
  1916. --theme-syntax-comment: #586e75;
  1917. --theme-syntax-keyword: #859900;
  1918. --theme-syntax-function: #268bd2;
  1919. --theme-syntax-variable: #2aa198;
  1920. --theme-syntax-string: #2aa198;
  1921. --theme-syntax-number: #d33682;
  1922. --theme-syntax-type: #b58900;
  1923. --theme-syntax-operator: #859900;
  1924. --theme-syntax-punctuation: #839496;
  1925. }
  1926. [data-theme="synthwave84"][data-dark="false"] {
  1927. --theme-primary: #00bcd4;
  1928. --theme-secondary: #e91e63;
  1929. --theme-accent: #9c27b0;
  1930. --theme-error: #f44336;
  1931. --theme-warning: #ff9800;
  1932. --theme-success: #4caf50;
  1933. --theme-info: #ff5722;
  1934. --theme-text: #262335;
  1935. --theme-text-muted: #5c5c8a;
  1936. --theme-background: #fafafa;
  1937. --theme-background-panel: #f5f5f5;
  1938. --theme-background-element: #eeeeee;
  1939. --theme-border: #e0e0e0;
  1940. --theme-border-active: #00bcd4;
  1941. --theme-border-subtle: #f0f0f0;
  1942. --theme-diff-added: #4caf50;
  1943. --theme-diff-removed: #f44336;
  1944. --theme-diff-context: #5c5c8a;
  1945. --theme-diff-hunk-header: #9c27b0;
  1946. --theme-diff-highlight-added: #4caf50;
  1947. --theme-diff-highlight-removed: #f44336;
  1948. --theme-diff-added-bg: #e8f5e9;
  1949. --theme-diff-removed-bg: #ffebee;
  1950. --theme-diff-context-bg: #f5f5f5;
  1951. --theme-diff-line-number: #b0b0b0;
  1952. --theme-diff-added-line-number-bg: #e8f5e9;
  1953. --theme-diff-removed-line-number-bg: #ffebee;
  1954. --theme-markdown-text: #262335;
  1955. --theme-markdown-heading: #e91e63;
  1956. --theme-markdown-link: #00bcd4;
  1957. --theme-markdown-link-text: #9c27b0;
  1958. --theme-markdown-code: #4caf50;
  1959. --theme-markdown-block-quote: #5c5c8a;
  1960. --theme-markdown-emph: #ff9800;
  1961. --theme-markdown-strong: #ff5722;
  1962. --theme-markdown-horizontal-rule: #e0e0e0;
  1963. --theme-markdown-list-item: #00bcd4;
  1964. --theme-markdown-list-enumeration: #9c27b0;
  1965. --theme-markdown-image: #00bcd4;
  1966. --theme-markdown-image-text: #9c27b0;
  1967. --theme-markdown-code-block: #262335;
  1968. --theme-syntax-comment: #5c5c8a;
  1969. --theme-syntax-keyword: #e91e63;
  1970. --theme-syntax-function: #ff5722;
  1971. --theme-syntax-variable: #262335;
  1972. --theme-syntax-string: #ff9800;
  1973. --theme-syntax-number: #9c27b0;
  1974. --theme-syntax-type: #00bcd4;
  1975. --theme-syntax-operator: #e91e63;
  1976. --theme-syntax-punctuation: #262335;
  1977. }
  1978. [data-theme="synthwave84"][data-dark="true"] {
  1979. --theme-primary: #36f9f6;
  1980. --theme-secondary: #ff7edb;
  1981. --theme-accent: #b084eb;
  1982. --theme-error: #fe4450;
  1983. --theme-warning: #fede5d;
  1984. --theme-success: #72f1b8;
  1985. --theme-info: #ff8b39;
  1986. --theme-text: #ffffff;
  1987. --theme-text-muted: #848bbd;
  1988. --theme-background: #262335;
  1989. --theme-background-panel: #1e1a29;
  1990. --theme-background-element: #2a2139;
  1991. --theme-border: #495495;
  1992. --theme-border-active: #36f9f6;
  1993. --theme-border-subtle: #241b2f;
  1994. --theme-diff-added: #72f1b8;
  1995. --theme-diff-removed: #fe4450;
  1996. --theme-diff-context: #848bbd;
  1997. --theme-diff-hunk-header: #b084eb;
  1998. --theme-diff-highlight-added: #97f1d8;
  1999. --theme-diff-highlight-removed: #ff5e5b;
  2000. --theme-diff-added-bg: #1a3a2a;
  2001. --theme-diff-removed-bg: #3a1a2a;
  2002. --theme-diff-context-bg: #1e1a29;
  2003. --theme-diff-line-number: #495495;
  2004. --theme-diff-added-line-number-bg: #1a3a2a;
  2005. --theme-diff-removed-line-number-bg: #3a1a2a;
  2006. --theme-markdown-text: #ffffff;
  2007. --theme-markdown-heading: #ff7edb;
  2008. --theme-markdown-link: #36f9f6;
  2009. --theme-markdown-link-text: #b084eb;
  2010. --theme-markdown-code: #72f1b8;
  2011. --theme-markdown-block-quote: #848bbd;
  2012. --theme-markdown-emph: #fede5d;
  2013. --theme-markdown-strong: #ff8b39;
  2014. --theme-markdown-horizontal-rule: #495495;
  2015. --theme-markdown-list-item: #36f9f6;
  2016. --theme-markdown-list-enumeration: #b084eb;
  2017. --theme-markdown-image: #36f9f6;
  2018. --theme-markdown-image-text: #b084eb;
  2019. --theme-markdown-code-block: #ffffff;
  2020. --theme-syntax-comment: #848bbd;
  2021. --theme-syntax-keyword: #ff7edb;
  2022. --theme-syntax-function: #ff8b39;
  2023. --theme-syntax-variable: #ffffff;
  2024. --theme-syntax-string: #fede5d;
  2025. --theme-syntax-number: #b084eb;
  2026. --theme-syntax-type: #36f9f6;
  2027. --theme-syntax-operator: #ff7edb;
  2028. --theme-syntax-punctuation: #ffffff;
  2029. }
  2030. [data-theme="tokyonight"][data-dark="false"] {
  2031. --theme-primary: #2e7de9;
  2032. --theme-secondary: #9854f1;
  2033. --theme-accent: #b15c00;
  2034. --theme-error: #f52a65;
  2035. --theme-warning: #b15c00;
  2036. --theme-success: #587539;
  2037. --theme-info: #2e7de9;
  2038. --theme-text: #3760bf;
  2039. --theme-text-muted: #8990a3;
  2040. --theme-background: #e1e2e7;
  2041. --theme-background-panel: #d5d6db;
  2042. --theme-background-element: #c8c9ce;
  2043. --theme-border: #737a8c;
  2044. --theme-border-active: #5a607d;
  2045. --theme-border-subtle: #9699a8;
  2046. --theme-diff-added: #1e725c;
  2047. --theme-diff-removed: #c53b53;
  2048. --theme-diff-context: #7086b5;
  2049. --theme-diff-hunk-header: #7086b5;
  2050. --theme-diff-highlight-added: #4db380;
  2051. --theme-diff-highlight-removed: #f52a65;
  2052. --theme-diff-added-bg: #d5e5d5;
  2053. --theme-diff-removed-bg: #f7d8db;
  2054. --theme-diff-context-bg: #d5d6db;
  2055. --theme-diff-line-number: #c8c9ce;
  2056. --theme-diff-added-line-number-bg: #c5d5c5;
  2057. --theme-diff-removed-line-number-bg: #e7c8cb;
  2058. --theme-markdown-text: #3760bf;
  2059. --theme-markdown-heading: #9854f1;
  2060. --theme-markdown-link: #2e7de9;
  2061. --theme-markdown-link-text: #007197;
  2062. --theme-markdown-code: #587539;
  2063. --theme-markdown-block-quote: #8c6c3e;
  2064. --theme-markdown-emph: #8c6c3e;
  2065. --theme-markdown-strong: #b15c00;
  2066. --theme-markdown-horizontal-rule: #8990a3;
  2067. --theme-markdown-list-item: #2e7de9;
  2068. --theme-markdown-list-enumeration: #007197;
  2069. --theme-markdown-image: #2e7de9;
  2070. --theme-markdown-image-text: #007197;
  2071. --theme-markdown-code-block: #3760bf;
  2072. --theme-syntax-comment: #8990a3;
  2073. --theme-syntax-keyword: #9854f1;
  2074. --theme-syntax-function: #2e7de9;
  2075. --theme-syntax-variable: #f52a65;
  2076. --theme-syntax-string: #587539;
  2077. --theme-syntax-number: #b15c00;
  2078. --theme-syntax-type: #8c6c3e;
  2079. --theme-syntax-operator: #007197;
  2080. --theme-syntax-punctuation: #3760bf;
  2081. }
  2082. [data-theme="tokyonight"][data-dark="true"] {
  2083. --theme-primary: #82aaff;
  2084. --theme-secondary: #c099ff;
  2085. --theme-accent: #ff966c;
  2086. --theme-error: #ff757f;
  2087. --theme-warning: #ff966c;
  2088. --theme-success: #c3e88d;
  2089. --theme-info: #82aaff;
  2090. --theme-text: #c8d3f5;
  2091. --theme-text-muted: #828bb8;
  2092. --theme-background: #1a1b26;
  2093. --theme-background-panel: #1e2030;
  2094. --theme-background-element: #222436;
  2095. --theme-border: #737aa2;
  2096. --theme-border-active: #9099b2;
  2097. --theme-border-subtle: #545c7e;
  2098. --theme-diff-added: #4fd6be;
  2099. --theme-diff-removed: #c53b53;
  2100. --theme-diff-context: #828bb8;
  2101. --theme-diff-hunk-header: #828bb8;
  2102. --theme-diff-highlight-added: #b8db87;
  2103. --theme-diff-highlight-removed: #e26a75;
  2104. --theme-diff-added-bg: #20303b;
  2105. --theme-diff-removed-bg: #37222c;
  2106. --theme-diff-context-bg: #1e2030;
  2107. --theme-diff-line-number: #222436;
  2108. --theme-diff-added-line-number-bg: #1b2b34;
  2109. --theme-diff-removed-line-number-bg: #2d1f26;
  2110. --theme-markdown-text: #c8d3f5;
  2111. --theme-markdown-heading: #c099ff;
  2112. --theme-markdown-link: #82aaff;
  2113. --theme-markdown-link-text: #86e1fc;
  2114. --theme-markdown-code: #c3e88d;
  2115. --theme-markdown-block-quote: #ffc777;
  2116. --theme-markdown-emph: #ffc777;
  2117. --theme-markdown-strong: #ff966c;
  2118. --theme-markdown-horizontal-rule: #828bb8;
  2119. --theme-markdown-list-item: #82aaff;
  2120. --theme-markdown-list-enumeration: #86e1fc;
  2121. --theme-markdown-image: #82aaff;
  2122. --theme-markdown-image-text: #86e1fc;
  2123. --theme-markdown-code-block: #c8d3f5;
  2124. --theme-syntax-comment: #828bb8;
  2125. --theme-syntax-keyword: #c099ff;
  2126. --theme-syntax-function: #82aaff;
  2127. --theme-syntax-variable: #ff757f;
  2128. --theme-syntax-string: #c3e88d;
  2129. --theme-syntax-number: #ff966c;
  2130. --theme-syntax-type: #ffc777;
  2131. --theme-syntax-operator: #86e1fc;
  2132. --theme-syntax-punctuation: #c8d3f5;
  2133. }
  2134. [data-theme="vesper"][data-dark="false"] {
  2135. --theme-primary: #ffc799;
  2136. --theme-secondary: #99ffe4;
  2137. --theme-accent: #ffc799;
  2138. --theme-error: #ff8080;
  2139. --theme-warning: #ffc799;
  2140. --theme-success: #99ffe4;
  2141. --theme-info: #ffc799;
  2142. --theme-text: #101010;
  2143. --theme-text-muted: #a0a0a0;
  2144. --theme-background: #fff;
  2145. --theme-background-panel: #f0f0f0;
  2146. --theme-background-element: #e0e0e0;
  2147. --theme-border: #d0d0d0;
  2148. --theme-border-active: #ffc799;
  2149. --theme-border-subtle: #e8e8e8;
  2150. --theme-diff-added: #99ffe4;
  2151. --theme-diff-removed: #ff8080;
  2152. --theme-diff-context: #a0a0a0;
  2153. --theme-diff-hunk-header: #a0a0a0;
  2154. --theme-diff-highlight-added: #99ffe4;
  2155. --theme-diff-highlight-removed: #ff8080;
  2156. --theme-diff-added-bg: #e8f5e8;
  2157. --theme-diff-removed-bg: #f5e8e8;
  2158. --theme-diff-context-bg: #f8f8f8;
  2159. --theme-diff-line-number: #808080;
  2160. --theme-diff-added-line-number-bg: #e8f5e8;
  2161. --theme-diff-removed-line-number-bg: #f5e8e8;
  2162. --theme-markdown-text: #101010;
  2163. --theme-markdown-heading: #ffc799;
  2164. --theme-markdown-link: #ffc799;
  2165. --theme-markdown-link-text: #a0a0a0;
  2166. --theme-markdown-code: #a0a0a0;
  2167. --theme-markdown-block-quote: #101010;
  2168. --theme-markdown-emph: #101010;
  2169. --theme-markdown-strong: #101010;
  2170. --theme-markdown-horizontal-rule: #65737e;
  2171. --theme-markdown-list-item: #101010;
  2172. --theme-markdown-list-enumeration: #101010;
  2173. --theme-markdown-image: #ffc799;
  2174. --theme-markdown-image-text: #a0a0a0;
  2175. --theme-markdown-code-block: #101010;
  2176. --theme-syntax-comment: #8b8b8b94;
  2177. --theme-syntax-keyword: #a0a0a0;
  2178. --theme-syntax-function: #ffc799;
  2179. --theme-syntax-variable: #101010;
  2180. --theme-syntax-string: #99ffe4;
  2181. --theme-syntax-number: #ffc799;
  2182. --theme-syntax-type: #ffc799;
  2183. --theme-syntax-operator: #a0a0a0;
  2184. --theme-syntax-punctuation: #101010;
  2185. }
  2186. [data-theme="vesper"][data-dark="true"] {
  2187. --theme-primary: #ffc799;
  2188. --theme-secondary: #99ffe4;
  2189. --theme-accent: #ffc799;
  2190. --theme-error: #ff8080;
  2191. --theme-warning: #ffc799;
  2192. --theme-success: #99ffe4;
  2193. --theme-info: #ffc799;
  2194. --theme-text: #fff;
  2195. --theme-text-muted: #a0a0a0;
  2196. --theme-background: #101010;
  2197. --theme-background-panel: #101010;
  2198. --theme-background-element: #101010;
  2199. --theme-border: #282828;
  2200. --theme-border-active: #ffc799;
  2201. --theme-border-subtle: #1c1c1c;
  2202. --theme-diff-added: #99ffe4;
  2203. --theme-diff-removed: #ff8080;
  2204. --theme-diff-context: #a0a0a0;
  2205. --theme-diff-hunk-header: #a0a0a0;
  2206. --theme-diff-highlight-added: #99ffe4;
  2207. --theme-diff-highlight-removed: #ff8080;
  2208. --theme-diff-added-bg: #0d2818;
  2209. --theme-diff-removed-bg: #281a1a;
  2210. --theme-diff-context-bg: #101010;
  2211. --theme-diff-line-number: #505050;
  2212. --theme-diff-added-line-number-bg: #0d2818;
  2213. --theme-diff-removed-line-number-bg: #281a1a;
  2214. --theme-markdown-text: #fff;
  2215. --theme-markdown-heading: #ffc799;
  2216. --theme-markdown-link: #ffc799;
  2217. --theme-markdown-link-text: #a0a0a0;
  2218. --theme-markdown-code: #a0a0a0;
  2219. --theme-markdown-block-quote: #fff;
  2220. --theme-markdown-emph: #fff;
  2221. --theme-markdown-strong: #fff;
  2222. --theme-markdown-horizontal-rule: #65737e;
  2223. --theme-markdown-list-item: #fff;
  2224. --theme-markdown-list-enumeration: #fff;
  2225. --theme-markdown-image: #ffc799;
  2226. --theme-markdown-image-text: #a0a0a0;
  2227. --theme-markdown-code-block: #fff;
  2228. --theme-syntax-comment: #8b8b8b94;
  2229. --theme-syntax-keyword: #a0a0a0;
  2230. --theme-syntax-function: #ffc799;
  2231. --theme-syntax-variable: #fff;
  2232. --theme-syntax-string: #99ffe4;
  2233. --theme-syntax-number: #ffc799;
  2234. --theme-syntax-type: #ffc799;
  2235. --theme-syntax-operator: #a0a0a0;
  2236. --theme-syntax-punctuation: #fff;
  2237. }
  2238. [data-theme="zenburn"][data-dark="false"] {
  2239. --theme-primary: #5f7f8f;
  2240. --theme-secondary: #8f5f8f;
  2241. --theme-accent: #5f8f8f;
  2242. --theme-error: #8f5f5f;
  2243. --theme-warning: #8f8f5f;
  2244. --theme-success: #5f8f5f;
  2245. --theme-info: #8f7f5f;
  2246. --theme-text: #3f3f3f;
  2247. --theme-text-muted: #6f6f6f;
  2248. --theme-background: #ffffef;
  2249. --theme-background-panel: #f5f5e5;
  2250. --theme-background-element: #ebebdb;
  2251. --theme-border: #d0d0c0;
  2252. --theme-border-active: #5f7f8f;
  2253. --theme-border-subtle: #e0e0d0;
  2254. --theme-diff-added: #5f8f5f;
  2255. --theme-diff-removed: #8f5f5f;
  2256. --theme-diff-context: #6f6f6f;
  2257. --theme-diff-hunk-header: #5f8f8f;
  2258. --theme-diff-highlight-added: #5f8f5f;
  2259. --theme-diff-highlight-removed: #8f5f5f;
  2260. --theme-diff-added-bg: #efffef;
  2261. --theme-diff-removed-bg: #ffefef;
  2262. --theme-diff-context-bg: #f5f5e5;
  2263. --theme-diff-line-number: #b0b0a0;
  2264. --theme-diff-added-line-number-bg: #efffef;
  2265. --theme-diff-removed-line-number-bg: #ffefef;
  2266. --theme-markdown-text: #3f3f3f;
  2267. --theme-markdown-heading: #8f8f5f;
  2268. --theme-markdown-link: #5f7f8f;
  2269. --theme-markdown-link-text: #5f8f8f;
  2270. --theme-markdown-code: #5f8f5f;
  2271. --theme-markdown-block-quote: #6f6f6f;
  2272. --theme-markdown-emph: #8f8f5f;
  2273. --theme-markdown-strong: #8f7f5f;
  2274. --theme-markdown-horizontal-rule: #6f6f6f;
  2275. --theme-markdown-list-item: #5f7f8f;
  2276. --theme-markdown-list-enumeration: #5f8f8f;
  2277. --theme-markdown-image: #5f7f8f;
  2278. --theme-markdown-image-text: #5f8f8f;
  2279. --theme-markdown-code-block: #3f3f3f;
  2280. --theme-syntax-comment: #5f7f5f;
  2281. --theme-syntax-keyword: #8f8f5f;
  2282. --theme-syntax-function: #5f7f8f;
  2283. --theme-syntax-variable: #3f3f3f;
  2284. --theme-syntax-string: #8f5f5f;
  2285. --theme-syntax-number: #5f8f5f;
  2286. --theme-syntax-type: #5f8f8f;
  2287. --theme-syntax-operator: #8f8f5f;
  2288. --theme-syntax-punctuation: #3f3f3f;
  2289. }
  2290. [data-theme="zenburn"][data-dark="true"] {
  2291. --theme-primary: #8cd0d3;
  2292. --theme-secondary: #dc8cc3;
  2293. --theme-accent: #93e0e3;
  2294. --theme-error: #cc9393;
  2295. --theme-warning: #f0dfaf;
  2296. --theme-success: #7f9f7f;
  2297. --theme-info: #dfaf8f;
  2298. --theme-text: #dcdccc;
  2299. --theme-text-muted: #9f9f9f;
  2300. --theme-background: #3f3f3f;
  2301. --theme-background-panel: #4f4f4f;
  2302. --theme-background-element: #5f5f5f;
  2303. --theme-border: #5f5f5f;
  2304. --theme-border-active: #8cd0d3;
  2305. --theme-border-subtle: #4f4f4f;
  2306. --theme-diff-added: #7f9f7f;
  2307. --theme-diff-removed: #cc9393;
  2308. --theme-diff-context: #9f9f9f;
  2309. --theme-diff-hunk-header: #93e0e3;
  2310. --theme-diff-highlight-added: #8fb28f;
  2311. --theme-diff-highlight-removed: #dca3a3;
  2312. --theme-diff-added-bg: #4f5f4f;
  2313. --theme-diff-removed-bg: #5f4f4f;
  2314. --theme-diff-context-bg: #4f4f4f;
  2315. --theme-diff-line-number: #6f6f6f;
  2316. --theme-diff-added-line-number-bg: #4f5f4f;
  2317. --theme-diff-removed-line-number-bg: #5f4f4f;
  2318. --theme-markdown-text: #dcdccc;
  2319. --theme-markdown-heading: #f0dfaf;
  2320. --theme-markdown-link: #8cd0d3;
  2321. --theme-markdown-link-text: #93e0e3;
  2322. --theme-markdown-code: #7f9f7f;
  2323. --theme-markdown-block-quote: #9f9f9f;
  2324. --theme-markdown-emph: #e0cf9f;
  2325. --theme-markdown-strong: #dfaf8f;
  2326. --theme-markdown-horizontal-rule: #9f9f9f;
  2327. --theme-markdown-list-item: #8cd0d3;
  2328. --theme-markdown-list-enumeration: #93e0e3;
  2329. --theme-markdown-image: #8cd0d3;
  2330. --theme-markdown-image-text: #93e0e3;
  2331. --theme-markdown-code-block: #dcdccc;
  2332. --theme-syntax-comment: #7f9f7f;
  2333. --theme-syntax-keyword: #f0dfaf;
  2334. --theme-syntax-function: #8cd0d3;
  2335. --theme-syntax-variable: #dcdccc;
  2336. --theme-syntax-string: #cc9393;
  2337. --theme-syntax-number: #8fb28f;
  2338. --theme-syntax-type: #93e0e3;
  2339. --theme-syntax-operator: #f0dfaf;
  2340. --theme-syntax-punctuation: #dcdccc;
  2341. }