| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- /* Auto-generated theme CSS - Do not edit manually */
- :root {
- --theme-primary: #3b7dd8;
- --theme-secondary: #7b5bb6;
- --theme-accent: #d68c27;
- --theme-error: #d1383d;
- --theme-warning: #d68c27;
- --theme-success: #3d9a57;
- --theme-info: #318795;
- --theme-text: #1a1a1a;
- --theme-text-muted: #8a8a8a;
- --theme-background: #ffffff;
- --theme-background-panel: #fafafa;
- --theme-background-element: #f5f5f5;
- --theme-border: #b8b8b8;
- --theme-border-active: #a0a0a0;
- --theme-border-subtle: #d4d4d4;
- --theme-diff-added: #1e725c;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #7086b5;
- --theme-diff-hunk-header: #7086b5;
- --theme-diff-highlight-added: #4db380;
- --theme-diff-highlight-removed: #f52a65;
- --theme-diff-added-bg: #d5e5d5;
- --theme-diff-removed-bg: #f7d8db;
- --theme-diff-context-bg: #fafafa;
- --theme-diff-line-number: #f5f5f5;
- --theme-diff-added-line-number-bg: #c5d5c5;
- --theme-diff-removed-line-number-bg: #e7c8cb;
- --theme-markdown-text: #1a1a1a;
- --theme-markdown-heading: #d68c27;
- --theme-markdown-link: #3b7dd8;
- --theme-markdown-link-text: #318795;
- --theme-markdown-code: #3d9a57;
- --theme-markdown-block-quote: #b0851f;
- --theme-markdown-emph: #b0851f;
- --theme-markdown-strong: #d68c27;
- --theme-markdown-horizontal-rule: #8a8a8a;
- --theme-markdown-list-item: #3b7dd8;
- --theme-markdown-list-enumeration: #318795;
- --theme-markdown-image: #3b7dd8;
- --theme-markdown-image-text: #318795;
- --theme-markdown-code-block: #1a1a1a;
- --theme-syntax-comment: #8a8a8a;
- --theme-syntax-keyword: #d68c27;
- --theme-syntax-function: #3b7dd8;
- --theme-syntax-variable: #d1383d;
- --theme-syntax-string: #3d9a57;
- --theme-syntax-number: #d68c27;
- --theme-syntax-type: #b0851f;
- --theme-syntax-operator: #318795;
- --theme-syntax-punctuation: #1a1a1a;
- }
- [data-theme="aura"][data-dark="false"] {
- --theme-primary: #a277ff;
- --theme-secondary: #f694ff;
- --theme-accent: #a277ff;
- --theme-error: #ff6767;
- --theme-warning: #ffca85;
- --theme-success: #61ffca;
- --theme-info: #a277ff;
- --theme-text: #edecee;
- --theme-text-muted: #6d6d6d;
- --theme-background: #0f0f0f;
- --theme-background-panel: #15141b;
- --theme-background-element: #15141b;
- --theme-border: #2d2d2d;
- --theme-border-active: #6d6d6d;
- --theme-border-subtle: #2d2d2d;
- --theme-diff-added: #61ffca;
- --theme-diff-removed: #ff6767;
- --theme-diff-context: #6d6d6d;
- --theme-diff-hunk-header: #6d6d6d;
- --theme-diff-highlight-added: #61ffca;
- --theme-diff-highlight-removed: #ff6767;
- --theme-diff-added-bg: #354933;
- --theme-diff-removed-bg: #3f191a;
- --theme-diff-context-bg: #15141b;
- --theme-diff-line-number: #2d2d2d;
- --theme-diff-added-line-number-bg: #162620;
- --theme-diff-removed-line-number-bg: #26161a;
- --theme-markdown-text: #edecee;
- --theme-markdown-heading: #a277ff;
- --theme-markdown-link: #f694ff;
- --theme-markdown-link-text: #a277ff;
- --theme-markdown-code: #61ffca;
- --theme-markdown-block-quote: #6d6d6d;
- --theme-markdown-emph: #ffca85;
- --theme-markdown-strong: #a277ff;
- --theme-markdown-horizontal-rule: #6d6d6d;
- --theme-markdown-list-item: #a277ff;
- --theme-markdown-list-enumeration: #a277ff;
- --theme-markdown-image: #f694ff;
- --theme-markdown-image-text: #a277ff;
- --theme-markdown-code-block: #edecee;
- --theme-syntax-comment: #6d6d6d;
- --theme-syntax-keyword: #f694ff;
- --theme-syntax-function: #a277ff;
- --theme-syntax-variable: #a277ff;
- --theme-syntax-string: #61ffca;
- --theme-syntax-number: #9dff65;
- --theme-syntax-type: #a277ff;
- --theme-syntax-operator: #f694ff;
- --theme-syntax-punctuation: #edecee;
- }
- [data-theme="aura"][data-dark="true"] {
- --theme-primary: #a277ff;
- --theme-secondary: #f694ff;
- --theme-accent: #a277ff;
- --theme-error: #ff6767;
- --theme-warning: #ffca85;
- --theme-success: #61ffca;
- --theme-info: #a277ff;
- --theme-text: #edecee;
- --theme-text-muted: #6d6d6d;
- --theme-background: #0f0f0f;
- --theme-background-panel: #15141b;
- --theme-background-element: #15141b;
- --theme-border: #2d2d2d;
- --theme-border-active: #6d6d6d;
- --theme-border-subtle: #2d2d2d;
- --theme-diff-added: #61ffca;
- --theme-diff-removed: #ff6767;
- --theme-diff-context: #6d6d6d;
- --theme-diff-hunk-header: #6d6d6d;
- --theme-diff-highlight-added: #61ffca;
- --theme-diff-highlight-removed: #ff6767;
- --theme-diff-added-bg: #354933;
- --theme-diff-removed-bg: #3f191a;
- --theme-diff-context-bg: #15141b;
- --theme-diff-line-number: #2d2d2d;
- --theme-diff-added-line-number-bg: #162620;
- --theme-diff-removed-line-number-bg: #26161a;
- --theme-markdown-text: #edecee;
- --theme-markdown-heading: #a277ff;
- --theme-markdown-link: #f694ff;
- --theme-markdown-link-text: #a277ff;
- --theme-markdown-code: #61ffca;
- --theme-markdown-block-quote: #6d6d6d;
- --theme-markdown-emph: #ffca85;
- --theme-markdown-strong: #a277ff;
- --theme-markdown-horizontal-rule: #6d6d6d;
- --theme-markdown-list-item: #a277ff;
- --theme-markdown-list-enumeration: #a277ff;
- --theme-markdown-image: #f694ff;
- --theme-markdown-image-text: #a277ff;
- --theme-markdown-code-block: #edecee;
- --theme-syntax-comment: #6d6d6d;
- --theme-syntax-keyword: #f694ff;
- --theme-syntax-function: #a277ff;
- --theme-syntax-variable: #a277ff;
- --theme-syntax-string: #61ffca;
- --theme-syntax-number: #9dff65;
- --theme-syntax-type: #a277ff;
- --theme-syntax-operator: #f694ff;
- --theme-syntax-punctuation: #edecee;
- }
- [data-theme="ayu"][data-dark="false"] {
- --theme-primary: #59c2ff;
- --theme-secondary: #d2a6ff;
- --theme-accent: #e6b450;
- --theme-error: #d95757;
- --theme-warning: #e6b673;
- --theme-success: #7fd962;
- --theme-info: #39bae6;
- --theme-text: #bfbdb6;
- --theme-text-muted: #565b66;
- --theme-background: #0b0e14;
- --theme-background-panel: #0f131a;
- --theme-background-element: #0d1017;
- --theme-border: #6c7380;
- --theme-border-active: #6c7380;
- --theme-border-subtle: #11151c;
- --theme-diff-added: #7fd962;
- --theme-diff-removed: #f26d78;
- --theme-diff-context: #acb6bf;
- --theme-diff-hunk-header: #acb6bf;
- --theme-diff-highlight-added: #aad94c;
- --theme-diff-highlight-removed: #f07178;
- --theme-diff-added-bg: #20303b;
- --theme-diff-removed-bg: #37222c;
- --theme-diff-context-bg: #0f131a;
- --theme-diff-line-number: #6c7380;
- --theme-diff-added-line-number-bg: #1b2b34;
- --theme-diff-removed-line-number-bg: #2d1f26;
- --theme-markdown-text: #bfbdb6;
- --theme-markdown-heading: #d2a6ff;
- --theme-markdown-link: #59c2ff;
- --theme-markdown-link-text: #39bae6;
- --theme-markdown-code: #aad94c;
- --theme-markdown-block-quote: #e6b673;
- --theme-markdown-emph: #e6b673;
- --theme-markdown-strong: #ffb454;
- --theme-markdown-horizontal-rule: #565b66;
- --theme-markdown-list-item: #59c2ff;
- --theme-markdown-list-enumeration: #39bae6;
- --theme-markdown-image: #59c2ff;
- --theme-markdown-image-text: #39bae6;
- --theme-markdown-code-block: #bfbdb6;
- --theme-syntax-comment: #acb6bf;
- --theme-syntax-keyword: #ff8f40;
- --theme-syntax-function: #ffb454;
- --theme-syntax-variable: #59c2ff;
- --theme-syntax-string: #aad94c;
- --theme-syntax-number: #d2a6ff;
- --theme-syntax-type: #e6b673;
- --theme-syntax-operator: #f29668;
- --theme-syntax-punctuation: #bfbdb6;
- }
- [data-theme="ayu"][data-dark="true"] {
- --theme-primary: #59c2ff;
- --theme-secondary: #d2a6ff;
- --theme-accent: #e6b450;
- --theme-error: #d95757;
- --theme-warning: #e6b673;
- --theme-success: #7fd962;
- --theme-info: #39bae6;
- --theme-text: #bfbdb6;
- --theme-text-muted: #565b66;
- --theme-background: #0b0e14;
- --theme-background-panel: #0f131a;
- --theme-background-element: #0d1017;
- --theme-border: #6c7380;
- --theme-border-active: #6c7380;
- --theme-border-subtle: #11151c;
- --theme-diff-added: #7fd962;
- --theme-diff-removed: #f26d78;
- --theme-diff-context: #acb6bf;
- --theme-diff-hunk-header: #acb6bf;
- --theme-diff-highlight-added: #aad94c;
- --theme-diff-highlight-removed: #f07178;
- --theme-diff-added-bg: #20303b;
- --theme-diff-removed-bg: #37222c;
- --theme-diff-context-bg: #0f131a;
- --theme-diff-line-number: #6c7380;
- --theme-diff-added-line-number-bg: #1b2b34;
- --theme-diff-removed-line-number-bg: #2d1f26;
- --theme-markdown-text: #bfbdb6;
- --theme-markdown-heading: #d2a6ff;
- --theme-markdown-link: #59c2ff;
- --theme-markdown-link-text: #39bae6;
- --theme-markdown-code: #aad94c;
- --theme-markdown-block-quote: #e6b673;
- --theme-markdown-emph: #e6b673;
- --theme-markdown-strong: #ffb454;
- --theme-markdown-horizontal-rule: #565b66;
- --theme-markdown-list-item: #59c2ff;
- --theme-markdown-list-enumeration: #39bae6;
- --theme-markdown-image: #59c2ff;
- --theme-markdown-image-text: #39bae6;
- --theme-markdown-code-block: #bfbdb6;
- --theme-syntax-comment: #acb6bf;
- --theme-syntax-keyword: #ff8f40;
- --theme-syntax-function: #ffb454;
- --theme-syntax-variable: #59c2ff;
- --theme-syntax-string: #aad94c;
- --theme-syntax-number: #d2a6ff;
- --theme-syntax-type: #e6b673;
- --theme-syntax-operator: #f29668;
- --theme-syntax-punctuation: #bfbdb6;
- }
- [data-theme="catppuccin"][data-dark="false"] {
- --theme-primary: #1e66f5;
- --theme-secondary: #8839ef;
- --theme-accent: #ea76cb;
- --theme-error: #d20f39;
- --theme-warning: #df8e1d;
- --theme-success: #40a02b;
- --theme-info: #179299;
- --theme-text: #4c4f69;
- --theme-text-muted: #5c5f77;
- --theme-background: #eff1f5;
- --theme-background-panel: #e6e9ef;
- --theme-background-element: #dce0e8;
- --theme-border: #ccd0da;
- --theme-border-active: #bcc0cc;
- --theme-border-subtle: #acb0be;
- --theme-diff-added: #40a02b;
- --theme-diff-removed: #d20f39;
- --theme-diff-context: #7c7f93;
- --theme-diff-hunk-header: #fe640b;
- --theme-diff-highlight-added: #40a02b;
- --theme-diff-highlight-removed: #d20f39;
- --theme-diff-added-bg: #d6f0d9;
- --theme-diff-removed-bg: #f6dfe2;
- --theme-diff-context-bg: #e6e9ef;
- --theme-diff-line-number: #bcc0cc;
- --theme-diff-added-line-number-bg: #c9e3cb;
- --theme-diff-removed-line-number-bg: #e9d3d6;
- --theme-markdown-text: #4c4f69;
- --theme-markdown-heading: #8839ef;
- --theme-markdown-link: #1e66f5;
- --theme-markdown-link-text: #04a5e5;
- --theme-markdown-code: #40a02b;
- --theme-markdown-block-quote: #df8e1d;
- --theme-markdown-emph: #df8e1d;
- --theme-markdown-strong: #fe640b;
- --theme-markdown-horizontal-rule: #6c6f85;
- --theme-markdown-list-item: #1e66f5;
- --theme-markdown-list-enumeration: #04a5e5;
- --theme-markdown-image: #1e66f5;
- --theme-markdown-image-text: #04a5e5;
- --theme-markdown-code-block: #4c4f69;
- --theme-syntax-comment: #7c7f93;
- --theme-syntax-keyword: #8839ef;
- --theme-syntax-function: #1e66f5;
- --theme-syntax-variable: #d20f39;
- --theme-syntax-string: #40a02b;
- --theme-syntax-number: #fe640b;
- --theme-syntax-type: #df8e1d;
- --theme-syntax-operator: #04a5e5;
- --theme-syntax-punctuation: #4c4f69;
- }
- [data-theme="catppuccin"][data-dark="true"] {
- --theme-primary: #89b4fa;
- --theme-secondary: #cba6f7;
- --theme-accent: #f5c2e7;
- --theme-error: #f38ba8;
- --theme-warning: #f9e2af;
- --theme-success: #a6e3a1;
- --theme-info: #94e2d5;
- --theme-text: #cdd6f4;
- --theme-text-muted: #bac2de;
- --theme-background: #1e1e2e;
- --theme-background-panel: #181825;
- --theme-background-element: #11111b;
- --theme-border: #313244;
- --theme-border-active: #45475a;
- --theme-border-subtle: #585b70;
- --theme-diff-added: #a6e3a1;
- --theme-diff-removed: #f38ba8;
- --theme-diff-context: #9399b2;
- --theme-diff-hunk-header: #fab387;
- --theme-diff-highlight-added: #a6e3a1;
- --theme-diff-highlight-removed: #f38ba8;
- --theme-diff-added-bg: #24312b;
- --theme-diff-removed-bg: #3c2a32;
- --theme-diff-context-bg: #181825;
- --theme-diff-line-number: #45475a;
- --theme-diff-added-line-number-bg: #1e2a25;
- --theme-diff-removed-line-number-bg: #32232a;
- --theme-markdown-text: #cdd6f4;
- --theme-markdown-heading: #cba6f7;
- --theme-markdown-link: #89b4fa;
- --theme-markdown-link-text: #89dceb;
- --theme-markdown-code: #a6e3a1;
- --theme-markdown-block-quote: #f9e2af;
- --theme-markdown-emph: #f9e2af;
- --theme-markdown-strong: #fab387;
- --theme-markdown-horizontal-rule: #a6adc8;
- --theme-markdown-list-item: #89b4fa;
- --theme-markdown-list-enumeration: #89dceb;
- --theme-markdown-image: #89b4fa;
- --theme-markdown-image-text: #89dceb;
- --theme-markdown-code-block: #cdd6f4;
- --theme-syntax-comment: #9399b2;
- --theme-syntax-keyword: #cba6f7;
- --theme-syntax-function: #89b4fa;
- --theme-syntax-variable: #f38ba8;
- --theme-syntax-string: #a6e3a1;
- --theme-syntax-number: #fab387;
- --theme-syntax-type: #f9e2af;
- --theme-syntax-operator: #89dceb;
- --theme-syntax-punctuation: #cdd6f4;
- }
- [data-theme="cobalt2"][data-dark="false"] {
- --theme-primary: #0066cc;
- --theme-secondary: #7c4dff;
- --theme-accent: #00acc1;
- --theme-error: #e91e63;
- --theme-warning: #ff9800;
- --theme-success: #4caf50;
- --theme-info: #ff5722;
- --theme-text: #193549;
- --theme-text-muted: #5c6b7d;
- --theme-background: #ffffff;
- --theme-background-panel: #f5f7fa;
- --theme-background-element: #e8ecf1;
- --theme-border: #d3dae3;
- --theme-border-active: #0066cc;
- --theme-border-subtle: #e8ecf1;
- --theme-diff-added: #4caf50;
- --theme-diff-removed: #e91e63;
- --theme-diff-context: #5c6b7d;
- --theme-diff-hunk-header: #00acc1;
- --theme-diff-highlight-added: #4caf50;
- --theme-diff-highlight-removed: #e91e63;
- --theme-diff-added-bg: #e8f5e9;
- --theme-diff-removed-bg: #ffebee;
- --theme-diff-context-bg: #f5f7fa;
- --theme-diff-line-number: #b0bec5;
- --theme-diff-added-line-number-bg: #e8f5e9;
- --theme-diff-removed-line-number-bg: #ffebee;
- --theme-markdown-text: #193549;
- --theme-markdown-heading: #ff9800;
- --theme-markdown-link: #0066cc;
- --theme-markdown-link-text: #00acc1;
- --theme-markdown-code: #4caf50;
- --theme-markdown-block-quote: #5c6b7d;
- --theme-markdown-emph: #ff5722;
- --theme-markdown-strong: #e91e63;
- --theme-markdown-horizontal-rule: #d3dae3;
- --theme-markdown-list-item: #0066cc;
- --theme-markdown-list-enumeration: #00acc1;
- --theme-markdown-image: #0066cc;
- --theme-markdown-image-text: #00acc1;
- --theme-markdown-code-block: #193549;
- --theme-syntax-comment: #5c6b7d;
- --theme-syntax-keyword: #ff5722;
- --theme-syntax-function: #ff9800;
- --theme-syntax-variable: #193549;
- --theme-syntax-string: #4caf50;
- --theme-syntax-number: #e91e63;
- --theme-syntax-type: #00acc1;
- --theme-syntax-operator: #ff5722;
- --theme-syntax-punctuation: #193549;
- }
- [data-theme="cobalt2"][data-dark="true"] {
- --theme-primary: #0088ff;
- --theme-secondary: #9a5feb;
- --theme-accent: #2affdf;
- --theme-error: #ff0088;
- --theme-warning: #ffc600;
- --theme-success: #9eff80;
- --theme-info: #ff9d00;
- --theme-text: #ffffff;
- --theme-text-muted: #adb7c9;
- --theme-background: #193549;
- --theme-background-panel: #122738;
- --theme-background-element: #1f4662;
- --theme-border: #1f4662;
- --theme-border-active: #0088ff;
- --theme-border-subtle: #0e1e2e;
- --theme-diff-added: #9eff80;
- --theme-diff-removed: #ff0088;
- --theme-diff-context: #adb7c9;
- --theme-diff-hunk-header: #2affdf;
- --theme-diff-highlight-added: #b9ff9f;
- --theme-diff-highlight-removed: #ff5fb3;
- --theme-diff-added-bg: #1a3a2a;
- --theme-diff-removed-bg: #3a1a2a;
- --theme-diff-context-bg: #122738;
- --theme-diff-line-number: #2d5a7b;
- --theme-diff-added-line-number-bg: #1a3a2a;
- --theme-diff-removed-line-number-bg: #3a1a2a;
- --theme-markdown-text: #ffffff;
- --theme-markdown-heading: #ffc600;
- --theme-markdown-link: #0088ff;
- --theme-markdown-link-text: #2affdf;
- --theme-markdown-code: #9eff80;
- --theme-markdown-block-quote: #adb7c9;
- --theme-markdown-emph: #ff9d00;
- --theme-markdown-strong: #ff628c;
- --theme-markdown-horizontal-rule: #2d5a7b;
- --theme-markdown-list-item: #0088ff;
- --theme-markdown-list-enumeration: #2affdf;
- --theme-markdown-image: #0088ff;
- --theme-markdown-image-text: #2affdf;
- --theme-markdown-code-block: #ffffff;
- --theme-syntax-comment: #0088ff;
- --theme-syntax-keyword: #ff9d00;
- --theme-syntax-function: #ffc600;
- --theme-syntax-variable: #ffffff;
- --theme-syntax-string: #9eff80;
- --theme-syntax-number: #ff628c;
- --theme-syntax-type: #2affdf;
- --theme-syntax-operator: #ff9d00;
- --theme-syntax-punctuation: #ffffff;
- }
- [data-theme="dracula"][data-dark="false"] {
- --theme-primary: #bd93f9;
- --theme-secondary: #ff79c6;
- --theme-accent: #8be9fd;
- --theme-error: #ff5555;
- --theme-warning: #f1fa8c;
- --theme-success: #50fa7b;
- --theme-info: #ffb86c;
- --theme-text: #282a36;
- --theme-text-muted: #6272a4;
- --theme-background: #f8f8f2;
- --theme-background-panel: #e8e8e2;
- --theme-background-element: #d8d8d2;
- --theme-border: #c8c8c2;
- --theme-border-active: #bd93f9;
- --theme-border-subtle: #e0e0e0;
- --theme-diff-added: #50fa7b;
- --theme-diff-removed: #ff5555;
- --theme-diff-context: #6272a4;
- --theme-diff-hunk-header: #6272a4;
- --theme-diff-highlight-added: #50fa7b;
- --theme-diff-highlight-removed: #ff5555;
- --theme-diff-added-bg: #e0ffe0;
- --theme-diff-removed-bg: #ffe0e0;
- --theme-diff-context-bg: #e8e8e2;
- --theme-diff-line-number: #c8c8c2;
- --theme-diff-added-line-number-bg: #e0ffe0;
- --theme-diff-removed-line-number-bg: #ffe0e0;
- --theme-markdown-text: #282a36;
- --theme-markdown-heading: #bd93f9;
- --theme-markdown-link: #8be9fd;
- --theme-markdown-link-text: #ff79c6;
- --theme-markdown-code: #50fa7b;
- --theme-markdown-block-quote: #6272a4;
- --theme-markdown-emph: #f1fa8c;
- --theme-markdown-strong: #ffb86c;
- --theme-markdown-horizontal-rule: #6272a4;
- --theme-markdown-list-item: #bd93f9;
- --theme-markdown-list-enumeration: #8be9fd;
- --theme-markdown-image: #8be9fd;
- --theme-markdown-image-text: #ff79c6;
- --theme-markdown-code-block: #282a36;
- --theme-syntax-comment: #6272a4;
- --theme-syntax-keyword: #ff79c6;
- --theme-syntax-function: #50fa7b;
- --theme-syntax-variable: #282a36;
- --theme-syntax-string: #f1fa8c;
- --theme-syntax-number: #bd93f9;
- --theme-syntax-type: #8be9fd;
- --theme-syntax-operator: #ff79c6;
- --theme-syntax-punctuation: #282a36;
- }
- [data-theme="dracula"][data-dark="true"] {
- --theme-primary: #bd93f9;
- --theme-secondary: #ff79c6;
- --theme-accent: #8be9fd;
- --theme-error: #ff5555;
- --theme-warning: #f1fa8c;
- --theme-success: #50fa7b;
- --theme-info: #ffb86c;
- --theme-text: #f8f8f2;
- --theme-text-muted: #6272a4;
- --theme-background: #282a36;
- --theme-background-panel: #21222c;
- --theme-background-element: #44475a;
- --theme-border: #44475a;
- --theme-border-active: #bd93f9;
- --theme-border-subtle: #191a21;
- --theme-diff-added: #50fa7b;
- --theme-diff-removed: #ff5555;
- --theme-diff-context: #6272a4;
- --theme-diff-hunk-header: #6272a4;
- --theme-diff-highlight-added: #50fa7b;
- --theme-diff-highlight-removed: #ff5555;
- --theme-diff-added-bg: #1a3a1a;
- --theme-diff-removed-bg: #3a1a1a;
- --theme-diff-context-bg: #21222c;
- --theme-diff-line-number: #44475a;
- --theme-diff-added-line-number-bg: #1a3a1a;
- --theme-diff-removed-line-number-bg: #3a1a1a;
- --theme-markdown-text: #f8f8f2;
- --theme-markdown-heading: #bd93f9;
- --theme-markdown-link: #8be9fd;
- --theme-markdown-link-text: #ff79c6;
- --theme-markdown-code: #50fa7b;
- --theme-markdown-block-quote: #6272a4;
- --theme-markdown-emph: #f1fa8c;
- --theme-markdown-strong: #ffb86c;
- --theme-markdown-horizontal-rule: #6272a4;
- --theme-markdown-list-item: #bd93f9;
- --theme-markdown-list-enumeration: #8be9fd;
- --theme-markdown-image: #8be9fd;
- --theme-markdown-image-text: #ff79c6;
- --theme-markdown-code-block: #f8f8f2;
- --theme-syntax-comment: #6272a4;
- --theme-syntax-keyword: #ff79c6;
- --theme-syntax-function: #50fa7b;
- --theme-syntax-variable: #f8f8f2;
- --theme-syntax-string: #f1fa8c;
- --theme-syntax-number: #bd93f9;
- --theme-syntax-type: #8be9fd;
- --theme-syntax-operator: #ff79c6;
- --theme-syntax-punctuation: #f8f8f2;
- }
- [data-theme="everforest"][data-dark="false"] {
- --theme-primary: #8da101;
- --theme-secondary: #3a94c5;
- --theme-accent: #df69ba;
- --theme-error: #f85552;
- --theme-warning: #f57d26;
- --theme-success: #8da101;
- --theme-info: #35a77c;
- --theme-text: #5c6a72;
- --theme-text-muted: #a6b0a0;
- --theme-background: #fdf6e3;
- --theme-background-panel: #efebd4;
- --theme-background-element: #f4f0d9;
- --theme-border: #939f91;
- --theme-border-active: #829181;
- --theme-border-subtle: #a6b0a0;
- --theme-diff-added: #1e725c;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #7086b5;
- --theme-diff-hunk-header: #7086b5;
- --theme-diff-highlight-added: #4db380;
- --theme-diff-highlight-removed: #f52a65;
- --theme-diff-added-bg: #d5e5d5;
- --theme-diff-removed-bg: #f7d8db;
- --theme-diff-context-bg: #efebd4;
- --theme-diff-line-number: #f4f0d9;
- --theme-diff-added-line-number-bg: #c5d5c5;
- --theme-diff-removed-line-number-bg: #e7c8cb;
- --theme-markdown-text: #5c6a72;
- --theme-markdown-heading: #df69ba;
- --theme-markdown-link: #8da101;
- --theme-markdown-link-text: #35a77c;
- --theme-markdown-code: #8da101;
- --theme-markdown-block-quote: #dfa000;
- --theme-markdown-emph: #dfa000;
- --theme-markdown-strong: #f57d26;
- --theme-markdown-horizontal-rule: #a6b0a0;
- --theme-markdown-list-item: #8da101;
- --theme-markdown-list-enumeration: #35a77c;
- --theme-markdown-image: #8da101;
- --theme-markdown-image-text: #35a77c;
- --theme-markdown-code-block: #5c6a72;
- --theme-syntax-comment: #a6b0a0;
- --theme-syntax-keyword: #df69ba;
- --theme-syntax-function: #8da101;
- --theme-syntax-variable: #f85552;
- --theme-syntax-string: #8da101;
- --theme-syntax-number: #f57d26;
- --theme-syntax-type: #dfa000;
- --theme-syntax-operator: #35a77c;
- --theme-syntax-punctuation: #5c6a72;
- }
- [data-theme="everforest"][data-dark="true"] {
- --theme-primary: #a7c080;
- --theme-secondary: #7fbbb3;
- --theme-accent: #d699b6;
- --theme-error: #e67e80;
- --theme-warning: #e69875;
- --theme-success: #a7c080;
- --theme-info: #83c092;
- --theme-text: #d3c6aa;
- --theme-text-muted: #7a8478;
- --theme-background: #2d353b;
- --theme-background-panel: #333c43;
- --theme-background-element: #343f44;
- --theme-border: #859289;
- --theme-border-active: #9da9a0;
- --theme-border-subtle: #7a8478;
- --theme-diff-added: #4fd6be;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #828bb8;
- --theme-diff-hunk-header: #828bb8;
- --theme-diff-highlight-added: #b8db87;
- --theme-diff-highlight-removed: #e26a75;
- --theme-diff-added-bg: #20303b;
- --theme-diff-removed-bg: #37222c;
- --theme-diff-context-bg: #333c43;
- --theme-diff-line-number: #343f44;
- --theme-diff-added-line-number-bg: #1b2b34;
- --theme-diff-removed-line-number-bg: #2d1f26;
- --theme-markdown-text: #d3c6aa;
- --theme-markdown-heading: #d699b6;
- --theme-markdown-link: #a7c080;
- --theme-markdown-link-text: #83c092;
- --theme-markdown-code: #a7c080;
- --theme-markdown-block-quote: #dbbc7f;
- --theme-markdown-emph: #dbbc7f;
- --theme-markdown-strong: #e69875;
- --theme-markdown-horizontal-rule: #7a8478;
- --theme-markdown-list-item: #a7c080;
- --theme-markdown-list-enumeration: #83c092;
- --theme-markdown-image: #a7c080;
- --theme-markdown-image-text: #83c092;
- --theme-markdown-code-block: #d3c6aa;
- --theme-syntax-comment: #7a8478;
- --theme-syntax-keyword: #d699b6;
- --theme-syntax-function: #a7c080;
- --theme-syntax-variable: #e67e80;
- --theme-syntax-string: #a7c080;
- --theme-syntax-number: #e69875;
- --theme-syntax-type: #dbbc7f;
- --theme-syntax-operator: #83c092;
- --theme-syntax-punctuation: #d3c6aa;
- }
- [data-theme="github"][data-dark="false"] {
- --theme-primary: #0969da;
- --theme-secondary: #8250df;
- --theme-accent: #1b7c83;
- --theme-error: #cf222e;
- --theme-warning: #9a6700;
- --theme-success: #1a7f37;
- --theme-info: #bc4c00;
- --theme-text: #24292f;
- --theme-text-muted: #57606a;
- --theme-background: #ffffff;
- --theme-background-panel: #f6f8fa;
- --theme-background-element: #f0f3f6;
- --theme-border: #d0d7de;
- --theme-border-active: #0969da;
- --theme-border-subtle: #d8dee4;
- --theme-diff-added: #1a7f37;
- --theme-diff-removed: #cf222e;
- --theme-diff-context: #57606a;
- --theme-diff-hunk-header: #0969da;
- --theme-diff-highlight-added: #1a7f37;
- --theme-diff-highlight-removed: #cf222e;
- --theme-diff-added-bg: #dafbe1;
- --theme-diff-removed-bg: #ffebe9;
- --theme-diff-context-bg: #f6f8fa;
- --theme-diff-line-number: #afb8c1;
- --theme-diff-added-line-number-bg: #dafbe1;
- --theme-diff-removed-line-number-bg: #ffebe9;
- --theme-markdown-text: #24292f;
- --theme-markdown-heading: #0969da;
- --theme-markdown-link: #0969da;
- --theme-markdown-link-text: #1b7c83;
- --theme-markdown-code: #bf3989;
- --theme-markdown-block-quote: #57606a;
- --theme-markdown-emph: #9a6700;
- --theme-markdown-strong: #bc4c00;
- --theme-markdown-horizontal-rule: #d0d7de;
- --theme-markdown-list-item: #0969da;
- --theme-markdown-list-enumeration: #1b7c83;
- --theme-markdown-image: #0969da;
- --theme-markdown-image-text: #1b7c83;
- --theme-markdown-code-block: #24292f;
- --theme-syntax-comment: #57606a;
- --theme-syntax-keyword: #cf222e;
- --theme-syntax-function: #8250df;
- --theme-syntax-variable: #bc4c00;
- --theme-syntax-string: #0969da;
- --theme-syntax-number: #1b7c83;
- --theme-syntax-type: #bc4c00;
- --theme-syntax-operator: #cf222e;
- --theme-syntax-punctuation: #24292f;
- }
- [data-theme="github"][data-dark="true"] {
- --theme-primary: #58a6ff;
- --theme-secondary: #bc8cff;
- --theme-accent: #39c5cf;
- --theme-error: #f85149;
- --theme-warning: #e3b341;
- --theme-success: #3fb950;
- --theme-info: #d29922;
- --theme-text: #c9d1d9;
- --theme-text-muted: #8b949e;
- --theme-background: #0d1117;
- --theme-background-panel: #010409;
- --theme-background-element: #161b22;
- --theme-border: #30363d;
- --theme-border-active: #58a6ff;
- --theme-border-subtle: #21262d;
- --theme-diff-added: #3fb950;
- --theme-diff-removed: #f85149;
- --theme-diff-context: #8b949e;
- --theme-diff-hunk-header: #58a6ff;
- --theme-diff-highlight-added: #3fb950;
- --theme-diff-highlight-removed: #f85149;
- --theme-diff-added-bg: #033a16;
- --theme-diff-removed-bg: #67060c;
- --theme-diff-context-bg: #010409;
- --theme-diff-line-number: #484f58;
- --theme-diff-added-line-number-bg: #033a16;
- --theme-diff-removed-line-number-bg: #67060c;
- --theme-markdown-text: #c9d1d9;
- --theme-markdown-heading: #58a6ff;
- --theme-markdown-link: #58a6ff;
- --theme-markdown-link-text: #39c5cf;
- --theme-markdown-code: #ff7b72;
- --theme-markdown-block-quote: #8b949e;
- --theme-markdown-emph: #e3b341;
- --theme-markdown-strong: #d29922;
- --theme-markdown-horizontal-rule: #30363d;
- --theme-markdown-list-item: #58a6ff;
- --theme-markdown-list-enumeration: #39c5cf;
- --theme-markdown-image: #58a6ff;
- --theme-markdown-image-text: #39c5cf;
- --theme-markdown-code-block: #c9d1d9;
- --theme-syntax-comment: #8b949e;
- --theme-syntax-keyword: #ff7b72;
- --theme-syntax-function: #bc8cff;
- --theme-syntax-variable: #d29922;
- --theme-syntax-string: #39c5cf;
- --theme-syntax-number: #58a6ff;
- --theme-syntax-type: #d29922;
- --theme-syntax-operator: #ff7b72;
- --theme-syntax-punctuation: #c9d1d9;
- }
- [data-theme="gruvbox"][data-dark="false"] {
- --theme-primary: #076678;
- --theme-secondary: #8f3f71;
- --theme-accent: #427b58;
- --theme-error: #9d0006;
- --theme-warning: #af3a03;
- --theme-success: #79740e;
- --theme-info: #b57614;
- --theme-text: #3c3836;
- --theme-text-muted: #7c6f64;
- --theme-background: #fbf1c7;
- --theme-background-panel: #ebdbb2;
- --theme-background-element: #d5c4a1;
- --theme-border: #bdae93;
- --theme-border-active: #3c3836;
- --theme-border-subtle: #d5c4a1;
- --theme-diff-added: #79740e;
- --theme-diff-removed: #9d0006;
- --theme-diff-context: #7c6f64;
- --theme-diff-hunk-header: #427b58;
- --theme-diff-highlight-added: #79740e;
- --theme-diff-highlight-removed: #9d0006;
- --theme-diff-added-bg: #e2e0b5;
- --theme-diff-removed-bg: #e9d8d5;
- --theme-diff-context-bg: #ebdbb2;
- --theme-diff-line-number: #bdae93;
- --theme-diff-added-line-number-bg: #d4d2a9;
- --theme-diff-removed-line-number-bg: #d8cbc8;
- --theme-markdown-text: #3c3836;
- --theme-markdown-heading: #076678;
- --theme-markdown-link: #427b58;
- --theme-markdown-link-text: #79740e;
- --theme-markdown-code: #b57614;
- --theme-markdown-block-quote: #7c6f64;
- --theme-markdown-emph: #8f3f71;
- --theme-markdown-strong: #af3a03;
- --theme-markdown-horizontal-rule: #7c6f64;
- --theme-markdown-list-item: #076678;
- --theme-markdown-list-enumeration: #427b58;
- --theme-markdown-image: #427b58;
- --theme-markdown-image-text: #79740e;
- --theme-markdown-code-block: #3c3836;
- --theme-syntax-comment: #7c6f64;
- --theme-syntax-keyword: #9d0006;
- --theme-syntax-function: #79740e;
- --theme-syntax-variable: #076678;
- --theme-syntax-string: #b57614;
- --theme-syntax-number: #8f3f71;
- --theme-syntax-type: #427b58;
- --theme-syntax-operator: #af3a03;
- --theme-syntax-punctuation: #3c3836;
- }
- [data-theme="gruvbox"][data-dark="true"] {
- --theme-primary: #83a598;
- --theme-secondary: #d3869b;
- --theme-accent: #8ec07c;
- --theme-error: #fb4934;
- --theme-warning: #fe8019;
- --theme-success: #b8bb26;
- --theme-info: #fabd2f;
- --theme-text: #ebdbb2;
- --theme-text-muted: #928374;
- --theme-background: #282828;
- --theme-background-panel: #3c3836;
- --theme-background-element: #504945;
- --theme-border: #665c54;
- --theme-border-active: #ebdbb2;
- --theme-border-subtle: #504945;
- --theme-diff-added: #98971a;
- --theme-diff-removed: #cc241d;
- --theme-diff-context: #928374;
- --theme-diff-hunk-header: #689d6a;
- --theme-diff-highlight-added: #b8bb26;
- --theme-diff-highlight-removed: #fb4934;
- --theme-diff-added-bg: #32302f;
- --theme-diff-removed-bg: #322929;
- --theme-diff-context-bg: #3c3836;
- --theme-diff-line-number: #665c54;
- --theme-diff-added-line-number-bg: #2a2827;
- --theme-diff-removed-line-number-bg: #2a2222;
- --theme-markdown-text: #ebdbb2;
- --theme-markdown-heading: #83a598;
- --theme-markdown-link: #8ec07c;
- --theme-markdown-link-text: #b8bb26;
- --theme-markdown-code: #fabd2f;
- --theme-markdown-block-quote: #928374;
- --theme-markdown-emph: #d3869b;
- --theme-markdown-strong: #fe8019;
- --theme-markdown-horizontal-rule: #928374;
- --theme-markdown-list-item: #83a598;
- --theme-markdown-list-enumeration: #8ec07c;
- --theme-markdown-image: #8ec07c;
- --theme-markdown-image-text: #b8bb26;
- --theme-markdown-code-block: #ebdbb2;
- --theme-syntax-comment: #928374;
- --theme-syntax-keyword: #fb4934;
- --theme-syntax-function: #b8bb26;
- --theme-syntax-variable: #83a598;
- --theme-syntax-string: #fabd2f;
- --theme-syntax-number: #d3869b;
- --theme-syntax-type: #8ec07c;
- --theme-syntax-operator: #fe8019;
- --theme-syntax-punctuation: #ebdbb2;
- }
- [data-theme="kanagawa"][data-dark="false"] {
- --theme-primary: #2d4f67;
- --theme-secondary: #957fb8;
- --theme-accent: #d27e99;
- --theme-error: #e82424;
- --theme-warning: #d7a657;
- --theme-success: #98bb6c;
- --theme-info: #76946a;
- --theme-text: #54433a;
- --theme-text-muted: #9e9389;
- --theme-background: #f2e9de;
- --theme-background-panel: #eae4d7;
- --theme-background-element: #e3dcd2;
- --theme-border: #d4cbbf;
- --theme-border-active: #c38d9d;
- --theme-border-subtle: #dcd4c9;
- --theme-diff-added: #98bb6c;
- --theme-diff-removed: #e82424;
- --theme-diff-context: #9e9389;
- --theme-diff-hunk-header: #2d4f67;
- --theme-diff-highlight-added: #89af5b;
- --theme-diff-highlight-removed: #d61f1f;
- --theme-diff-added-bg: #eaf3e4;
- --theme-diff-removed-bg: #fbe6e6;
- --theme-diff-context-bg: #eae4d7;
- --theme-diff-line-number: #c7beb4;
- --theme-diff-added-line-number-bg: #dde8d6;
- --theme-diff-removed-line-number-bg: #f2dada;
- --theme-markdown-text: #54433a;
- --theme-markdown-heading: #957fb8;
- --theme-markdown-link: #2d4f67;
- --theme-markdown-link-text: #76946a;
- --theme-markdown-code: #98bb6c;
- --theme-markdown-block-quote: #9e9389;
- --theme-markdown-emph: #c38d9d;
- --theme-markdown-strong: #d7a657;
- --theme-markdown-horizontal-rule: #9e9389;
- --theme-markdown-list-item: #2d4f67;
- --theme-markdown-list-enumeration: #76946a;
- --theme-markdown-image: #2d4f67;
- --theme-markdown-image-text: #76946a;
- --theme-markdown-code-block: #54433a;
- --theme-syntax-comment: #9e9389;
- --theme-syntax-keyword: #957fb8;
- --theme-syntax-function: #2d4f67;
- --theme-syntax-variable: #54433a;
- --theme-syntax-string: #98bb6c;
- --theme-syntax-number: #d7a657;
- --theme-syntax-type: #c38d9d;
- --theme-syntax-operator: #d27e99;
- --theme-syntax-punctuation: #54433a;
- }
- [data-theme="kanagawa"][data-dark="true"] {
- --theme-primary: #7e9cd8;
- --theme-secondary: #957fb8;
- --theme-accent: #d27e99;
- --theme-error: #e82424;
- --theme-warning: #d7a657;
- --theme-success: #98bb6c;
- --theme-info: #76946a;
- --theme-text: #dcd7ba;
- --theme-text-muted: #727169;
- --theme-background: #1f1f28;
- --theme-background-panel: #2a2a37;
- --theme-background-element: #363646;
- --theme-border: #54546d;
- --theme-border-active: #c38d9d;
- --theme-border-subtle: #363646;
- --theme-diff-added: #98bb6c;
- --theme-diff-removed: #e82424;
- --theme-diff-context: #727169;
- --theme-diff-hunk-header: #2d4f67;
- --theme-diff-highlight-added: #a9d977;
- --theme-diff-highlight-removed: #f24a4a;
- --theme-diff-added-bg: #252e25;
- --theme-diff-removed-bg: #362020;
- --theme-diff-context-bg: #2a2a37;
- --theme-diff-line-number: #54546d;
- --theme-diff-added-line-number-bg: #202820;
- --theme-diff-removed-line-number-bg: #2d1c1c;
- --theme-markdown-text: #dcd7ba;
- --theme-markdown-heading: #957fb8;
- --theme-markdown-link: #7e9cd8;
- --theme-markdown-link-text: #76946a;
- --theme-markdown-code: #98bb6c;
- --theme-markdown-block-quote: #727169;
- --theme-markdown-emph: #c38d9d;
- --theme-markdown-strong: #d7a657;
- --theme-markdown-horizontal-rule: #727169;
- --theme-markdown-list-item: #7e9cd8;
- --theme-markdown-list-enumeration: #76946a;
- --theme-markdown-image: #7e9cd8;
- --theme-markdown-image-text: #76946a;
- --theme-markdown-code-block: #dcd7ba;
- --theme-syntax-comment: #727169;
- --theme-syntax-keyword: #957fb8;
- --theme-syntax-function: #7e9cd8;
- --theme-syntax-variable: #dcd7ba;
- --theme-syntax-string: #98bb6c;
- --theme-syntax-number: #d7a657;
- --theme-syntax-type: #c38d9d;
- --theme-syntax-operator: #d27e99;
- --theme-syntax-punctuation: #dcd7ba;
- }
- [data-theme="material"][data-dark="false"] {
- --theme-primary: #6182b8;
- --theme-secondary: #7c4dff;
- --theme-accent: #39adb5;
- --theme-error: #e53935;
- --theme-warning: #ffb300;
- --theme-success: #91b859;
- --theme-info: #f4511e;
- --theme-text: #263238;
- --theme-text-muted: #90a4ae;
- --theme-background: #fafafa;
- --theme-background-panel: #f5f5f5;
- --theme-background-element: #e7e7e8;
- --theme-border: #e0e0e0;
- --theme-border-active: #6182b8;
- --theme-border-subtle: #eeeeee;
- --theme-diff-added: #91b859;
- --theme-diff-removed: #e53935;
- --theme-diff-context: #90a4ae;
- --theme-diff-hunk-header: #39adb5;
- --theme-diff-highlight-added: #91b859;
- --theme-diff-highlight-removed: #e53935;
- --theme-diff-added-bg: #e8f5e9;
- --theme-diff-removed-bg: #ffebee;
- --theme-diff-context-bg: #f5f5f5;
- --theme-diff-line-number: #cfd8dc;
- --theme-diff-added-line-number-bg: #e8f5e9;
- --theme-diff-removed-line-number-bg: #ffebee;
- --theme-markdown-text: #263238;
- --theme-markdown-heading: #6182b8;
- --theme-markdown-link: #39adb5;
- --theme-markdown-link-text: #7c4dff;
- --theme-markdown-code: #91b859;
- --theme-markdown-block-quote: #90a4ae;
- --theme-markdown-emph: #ffb300;
- --theme-markdown-strong: #f4511e;
- --theme-markdown-horizontal-rule: #e0e0e0;
- --theme-markdown-list-item: #6182b8;
- --theme-markdown-list-enumeration: #39adb5;
- --theme-markdown-image: #39adb5;
- --theme-markdown-image-text: #7c4dff;
- --theme-markdown-code-block: #263238;
- --theme-syntax-comment: #90a4ae;
- --theme-syntax-keyword: #7c4dff;
- --theme-syntax-function: #6182b8;
- --theme-syntax-variable: #263238;
- --theme-syntax-string: #91b859;
- --theme-syntax-number: #f4511e;
- --theme-syntax-type: #ffb300;
- --theme-syntax-operator: #39adb5;
- --theme-syntax-punctuation: #263238;
- }
- [data-theme="material"][data-dark="true"] {
- --theme-primary: #82aaff;
- --theme-secondary: #c792ea;
- --theme-accent: #89ddff;
- --theme-error: #f07178;
- --theme-warning: #ffcb6b;
- --theme-success: #c3e88d;
- --theme-info: #ffcb6b;
- --theme-text: #eeffff;
- --theme-text-muted: #546e7a;
- --theme-background: #263238;
- --theme-background-panel: #1e272c;
- --theme-background-element: #37474f;
- --theme-border: #37474f;
- --theme-border-active: #82aaff;
- --theme-border-subtle: #1e272c;
- --theme-diff-added: #c3e88d;
- --theme-diff-removed: #f07178;
- --theme-diff-context: #546e7a;
- --theme-diff-hunk-header: #89ddff;
- --theme-diff-highlight-added: #c3e88d;
- --theme-diff-highlight-removed: #f07178;
- --theme-diff-added-bg: #2e3c2b;
- --theme-diff-removed-bg: #3c2b2b;
- --theme-diff-context-bg: #1e272c;
- --theme-diff-line-number: #37474f;
- --theme-diff-added-line-number-bg: #2e3c2b;
- --theme-diff-removed-line-number-bg: #3c2b2b;
- --theme-markdown-text: #eeffff;
- --theme-markdown-heading: #82aaff;
- --theme-markdown-link: #89ddff;
- --theme-markdown-link-text: #c792ea;
- --theme-markdown-code: #c3e88d;
- --theme-markdown-block-quote: #546e7a;
- --theme-markdown-emph: #ffcb6b;
- --theme-markdown-strong: #ffcb6b;
- --theme-markdown-horizontal-rule: #37474f;
- --theme-markdown-list-item: #82aaff;
- --theme-markdown-list-enumeration: #89ddff;
- --theme-markdown-image: #89ddff;
- --theme-markdown-image-text: #c792ea;
- --theme-markdown-code-block: #eeffff;
- --theme-syntax-comment: #546e7a;
- --theme-syntax-keyword: #c792ea;
- --theme-syntax-function: #82aaff;
- --theme-syntax-variable: #eeffff;
- --theme-syntax-string: #c3e88d;
- --theme-syntax-number: #ffcb6b;
- --theme-syntax-type: #ffcb6b;
- --theme-syntax-operator: #89ddff;
- --theme-syntax-punctuation: #eeffff;
- }
- [data-theme="matrix"][data-dark="false"] {
- --theme-primary: #1cc24b;
- --theme-secondary: #24f6d9;
- --theme-accent: #c770ff;
- --theme-error: #ff4b4b;
- --theme-warning: #e6ff57;
- --theme-success: #1cc24b;
- --theme-info: #30b3ff;
- --theme-text: #203022;
- --theme-text-muted: #748476;
- --theme-background: #eef3ea;
- --theme-background-panel: #e4ebe1;
- --theme-background-element: #dae1d7;
- --theme-border: #748476;
- --theme-border-active: #1cc24b;
- --theme-border-subtle: #dae1d7;
- --theme-diff-added: #1cc24b;
- --theme-diff-removed: #ff4b4b;
- --theme-diff-context: #748476;
- --theme-diff-hunk-header: #30b3ff;
- --theme-diff-highlight-added: #5dac7e;
- --theme-diff-highlight-removed: #d53a3a;
- --theme-diff-added-bg: #e0efde;
- --theme-diff-removed-bg: #f9e5e5;
- --theme-diff-context-bg: #e4ebe1;
- --theme-diff-line-number: #748476;
- --theme-diff-added-line-number-bg: #d6e7d2;
- --theme-diff-removed-line-number-bg: #f2d2d2;
- --theme-markdown-text: #203022;
- --theme-markdown-heading: #24f6d9;
- --theme-markdown-link: #30b3ff;
- --theme-markdown-link-text: #24f6d9;
- --theme-markdown-code: #1cc24b;
- --theme-markdown-block-quote: #748476;
- --theme-markdown-emph: #ffa83d;
- --theme-markdown-strong: #e6ff57;
- --theme-markdown-horizontal-rule: #748476;
- --theme-markdown-list-item: #30b3ff;
- --theme-markdown-list-enumeration: #24f6d9;
- --theme-markdown-image: #30b3ff;
- --theme-markdown-image-text: #24f6d9;
- --theme-markdown-code-block: #203022;
- --theme-syntax-comment: #748476;
- --theme-syntax-keyword: #c770ff;
- --theme-syntax-function: #30b3ff;
- --theme-syntax-variable: #203022;
- --theme-syntax-string: #1cc24b;
- --theme-syntax-number: #ffa83d;
- --theme-syntax-type: #e6ff57;
- --theme-syntax-operator: #24f6d9;
- --theme-syntax-punctuation: #203022;
- }
- [data-theme="matrix"][data-dark="true"] {
- --theme-primary: #2eff6a;
- --theme-secondary: #00efff;
- --theme-accent: #c770ff;
- --theme-error: #ff4b4b;
- --theme-warning: #e6ff57;
- --theme-success: #62ff94;
- --theme-info: #30b3ff;
- --theme-text: #62ff94;
- --theme-text-muted: #8ca391;
- --theme-background: #0a0e0a;
- --theme-background-panel: #0e130d;
- --theme-background-element: #141c12;
- --theme-border: #1e2a1b;
- --theme-border-active: #2eff6a;
- --theme-border-subtle: #141c12;
- --theme-diff-added: #1cc24b;
- --theme-diff-removed: #ff4b4b;
- --theme-diff-context: #8ca391;
- --theme-diff-hunk-header: #30b3ff;
- --theme-diff-highlight-added: #77ffaf;
- --theme-diff-highlight-removed: #ff7171;
- --theme-diff-added-bg: #132616;
- --theme-diff-removed-bg: #261212;
- --theme-diff-context-bg: #0e130d;
- --theme-diff-line-number: #1e2a1b;
- --theme-diff-added-line-number-bg: #0f1b11;
- --theme-diff-removed-line-number-bg: #1b1414;
- --theme-markdown-text: #62ff94;
- --theme-markdown-heading: #00efff;
- --theme-markdown-link: #30b3ff;
- --theme-markdown-link-text: #24f6d9;
- --theme-markdown-code: #1cc24b;
- --theme-markdown-block-quote: #8ca391;
- --theme-markdown-emph: #ffa83d;
- --theme-markdown-strong: #e6ff57;
- --theme-markdown-horizontal-rule: #8ca391;
- --theme-markdown-list-item: #30b3ff;
- --theme-markdown-list-enumeration: #24f6d9;
- --theme-markdown-image: #30b3ff;
- --theme-markdown-image-text: #24f6d9;
- --theme-markdown-code-block: #62ff94;
- --theme-syntax-comment: #8ca391;
- --theme-syntax-keyword: #c770ff;
- --theme-syntax-function: #30b3ff;
- --theme-syntax-variable: #62ff94;
- --theme-syntax-string: #1cc24b;
- --theme-syntax-number: #ffa83d;
- --theme-syntax-type: #e6ff57;
- --theme-syntax-operator: #24f6d9;
- --theme-syntax-punctuation: #62ff94;
- }
- [data-theme="monokai"][data-dark="false"] {
- --theme-primary: #66d9ef;
- --theme-secondary: #ae81ff;
- --theme-accent: #a6e22e;
- --theme-error: #f92672;
- --theme-warning: #fd971f;
- --theme-success: #a6e22e;
- --theme-info: #fd971f;
- --theme-text: #272822;
- --theme-text-muted: #75715e;
- --theme-background: #fafafa;
- --theme-background-panel: #f0f0f0;
- --theme-background-element: #e0e0e0;
- --theme-border: #d0d0d0;
- --theme-border-active: #66d9ef;
- --theme-border-subtle: #e8e8e8;
- --theme-diff-added: #a6e22e;
- --theme-diff-removed: #f92672;
- --theme-diff-context: #75715e;
- --theme-diff-hunk-header: #75715e;
- --theme-diff-highlight-added: #a6e22e;
- --theme-diff-highlight-removed: #f92672;
- --theme-diff-added-bg: #e0ffe0;
- --theme-diff-removed-bg: #ffe0e0;
- --theme-diff-context-bg: #f0f0f0;
- --theme-diff-line-number: #d0d0d0;
- --theme-diff-added-line-number-bg: #e0ffe0;
- --theme-diff-removed-line-number-bg: #ffe0e0;
- --theme-markdown-text: #272822;
- --theme-markdown-heading: #f92672;
- --theme-markdown-link: #66d9ef;
- --theme-markdown-link-text: #ae81ff;
- --theme-markdown-code: #a6e22e;
- --theme-markdown-block-quote: #75715e;
- --theme-markdown-emph: #fd971f;
- --theme-markdown-strong: #fd971f;
- --theme-markdown-horizontal-rule: #75715e;
- --theme-markdown-list-item: #66d9ef;
- --theme-markdown-list-enumeration: #ae81ff;
- --theme-markdown-image: #66d9ef;
- --theme-markdown-image-text: #ae81ff;
- --theme-markdown-code-block: #272822;
- --theme-syntax-comment: #75715e;
- --theme-syntax-keyword: #f92672;
- --theme-syntax-function: #a6e22e;
- --theme-syntax-variable: #272822;
- --theme-syntax-string: #fd971f;
- --theme-syntax-number: #ae81ff;
- --theme-syntax-type: #66d9ef;
- --theme-syntax-operator: #f92672;
- --theme-syntax-punctuation: #272822;
- }
- [data-theme="monokai"][data-dark="true"] {
- --theme-primary: #66d9ef;
- --theme-secondary: #ae81ff;
- --theme-accent: #a6e22e;
- --theme-error: #f92672;
- --theme-warning: #e6db74;
- --theme-success: #a6e22e;
- --theme-info: #fd971f;
- --theme-text: #f8f8f2;
- --theme-text-muted: #75715e;
- --theme-background: #272822;
- --theme-background-panel: #1e1f1c;
- --theme-background-element: #3e3d32;
- --theme-border: #3e3d32;
- --theme-border-active: #66d9ef;
- --theme-border-subtle: #1e1f1c;
- --theme-diff-added: #a6e22e;
- --theme-diff-removed: #f92672;
- --theme-diff-context: #75715e;
- --theme-diff-hunk-header: #75715e;
- --theme-diff-highlight-added: #a6e22e;
- --theme-diff-highlight-removed: #f92672;
- --theme-diff-added-bg: #1a3a1a;
- --theme-diff-removed-bg: #3a1a1a;
- --theme-diff-context-bg: #1e1f1c;
- --theme-diff-line-number: #3e3d32;
- --theme-diff-added-line-number-bg: #1a3a1a;
- --theme-diff-removed-line-number-bg: #3a1a1a;
- --theme-markdown-text: #f8f8f2;
- --theme-markdown-heading: #f92672;
- --theme-markdown-link: #66d9ef;
- --theme-markdown-link-text: #ae81ff;
- --theme-markdown-code: #a6e22e;
- --theme-markdown-block-quote: #75715e;
- --theme-markdown-emph: #e6db74;
- --theme-markdown-strong: #fd971f;
- --theme-markdown-horizontal-rule: #75715e;
- --theme-markdown-list-item: #66d9ef;
- --theme-markdown-list-enumeration: #ae81ff;
- --theme-markdown-image: #66d9ef;
- --theme-markdown-image-text: #ae81ff;
- --theme-markdown-code-block: #f8f8f2;
- --theme-syntax-comment: #75715e;
- --theme-syntax-keyword: #f92672;
- --theme-syntax-function: #a6e22e;
- --theme-syntax-variable: #f8f8f2;
- --theme-syntax-string: #e6db74;
- --theme-syntax-number: #ae81ff;
- --theme-syntax-type: #66d9ef;
- --theme-syntax-operator: #f92672;
- --theme-syntax-punctuation: #f8f8f2;
- }
- [data-theme="nord"][data-dark="false"] {
- --theme-primary: #5e81ac;
- --theme-secondary: #81a1c1;
- --theme-accent: #8fbcbb;
- --theme-error: #bf616a;
- --theme-warning: #d08770;
- --theme-success: #a3be8c;
- --theme-info: #5e81ac;
- --theme-text: #2e3440;
- --theme-text-muted: #3b4252;
- --theme-background: #eceff4;
- --theme-background-panel: #e5e9f0;
- --theme-background-element: #d8dee9;
- --theme-border: #4c566a;
- --theme-border-active: #434c5e;
- --theme-border-subtle: #4c566a;
- --theme-diff-added: #a3be8c;
- --theme-diff-removed: #bf616a;
- --theme-diff-context: #4c566a;
- --theme-diff-hunk-header: #4c566a;
- --theme-diff-highlight-added: #a3be8c;
- --theme-diff-highlight-removed: #bf616a;
- --theme-diff-added-bg: #e5e9f0;
- --theme-diff-removed-bg: #e5e9f0;
- --theme-diff-context-bg: #e5e9f0;
- --theme-diff-line-number: #d8dee9;
- --theme-diff-added-line-number-bg: #e5e9f0;
- --theme-diff-removed-line-number-bg: #e5e9f0;
- --theme-markdown-text: #2e3440;
- --theme-markdown-heading: #5e81ac;
- --theme-markdown-link: #81a1c1;
- --theme-markdown-link-text: #8fbcbb;
- --theme-markdown-code: #a3be8c;
- --theme-markdown-block-quote: #4c566a;
- --theme-markdown-emph: #d08770;
- --theme-markdown-strong: #ebcb8b;
- --theme-markdown-horizontal-rule: #4c566a;
- --theme-markdown-list-item: #5e81ac;
- --theme-markdown-list-enumeration: #8fbcbb;
- --theme-markdown-image: #81a1c1;
- --theme-markdown-image-text: #8fbcbb;
- --theme-markdown-code-block: #2e3440;
- --theme-syntax-comment: #4c566a;
- --theme-syntax-keyword: #81a1c1;
- --theme-syntax-function: #88c0d0;
- --theme-syntax-variable: #8fbcbb;
- --theme-syntax-string: #a3be8c;
- --theme-syntax-number: #b48ead;
- --theme-syntax-type: #8fbcbb;
- --theme-syntax-operator: #81a1c1;
- --theme-syntax-punctuation: #2e3440;
- }
- [data-theme="nord"][data-dark="true"] {
- --theme-primary: #88c0d0;
- --theme-secondary: #81a1c1;
- --theme-accent: #8fbcbb;
- --theme-error: #bf616a;
- --theme-warning: #d08770;
- --theme-success: #a3be8c;
- --theme-info: #88c0d0;
- --theme-text: #eceff4;
- --theme-text-muted: #8b95a7;
- --theme-background: #2e3440;
- --theme-background-panel: #3b4252;
- --theme-background-element: #434c5e;
- --theme-border: #434c5e;
- --theme-border-active: #4c566a;
- --theme-border-subtle: #434c5e;
- --theme-diff-added: #a3be8c;
- --theme-diff-removed: #bf616a;
- --theme-diff-context: #8b95a7;
- --theme-diff-hunk-header: #8b95a7;
- --theme-diff-highlight-added: #a3be8c;
- --theme-diff-highlight-removed: #bf616a;
- --theme-diff-added-bg: #3b4252;
- --theme-diff-removed-bg: #3b4252;
- --theme-diff-context-bg: #3b4252;
- --theme-diff-line-number: #434c5e;
- --theme-diff-added-line-number-bg: #3b4252;
- --theme-diff-removed-line-number-bg: #3b4252;
- --theme-markdown-text: #d8dee9;
- --theme-markdown-heading: #88c0d0;
- --theme-markdown-link: #81a1c1;
- --theme-markdown-link-text: #8fbcbb;
- --theme-markdown-code: #a3be8c;
- --theme-markdown-block-quote: #8b95a7;
- --theme-markdown-emph: #d08770;
- --theme-markdown-strong: #ebcb8b;
- --theme-markdown-horizontal-rule: #8b95a7;
- --theme-markdown-list-item: #88c0d0;
- --theme-markdown-list-enumeration: #8fbcbb;
- --theme-markdown-image: #81a1c1;
- --theme-markdown-image-text: #8fbcbb;
- --theme-markdown-code-block: #d8dee9;
- --theme-syntax-comment: #8b95a7;
- --theme-syntax-keyword: #81a1c1;
- --theme-syntax-function: #88c0d0;
- --theme-syntax-variable: #8fbcbb;
- --theme-syntax-string: #a3be8c;
- --theme-syntax-number: #b48ead;
- --theme-syntax-type: #8fbcbb;
- --theme-syntax-operator: #81a1c1;
- --theme-syntax-punctuation: #d8dee9;
- }
- [data-theme="one-dark"][data-dark="false"] {
- --theme-primary: #4078f2;
- --theme-secondary: #a626a4;
- --theme-accent: #0184bc;
- --theme-error: #e45649;
- --theme-warning: #c18401;
- --theme-success: #50a14f;
- --theme-info: #986801;
- --theme-text: #383a42;
- --theme-text-muted: #a0a1a7;
- --theme-background: #fafafa;
- --theme-background-panel: #f0f0f1;
- --theme-background-element: #eaeaeb;
- --theme-border: #d1d1d2;
- --theme-border-active: #4078f2;
- --theme-border-subtle: #e0e0e1;
- --theme-diff-added: #50a14f;
- --theme-diff-removed: #e45649;
- --theme-diff-context: #a0a1a7;
- --theme-diff-hunk-header: #0184bc;
- --theme-diff-highlight-added: #489447;
- --theme-diff-highlight-removed: #d65145;
- --theme-diff-added-bg: #eafbe9;
- --theme-diff-removed-bg: #fce9e8;
- --theme-diff-context-bg: #f0f0f1;
- --theme-diff-line-number: #c9c9ca;
- --theme-diff-added-line-number-bg: #e1f3df;
- --theme-diff-removed-line-number-bg: #f5e2e1;
- --theme-markdown-text: #383a42;
- --theme-markdown-heading: #a626a4;
- --theme-markdown-link: #4078f2;
- --theme-markdown-link-text: #0184bc;
- --theme-markdown-code: #50a14f;
- --theme-markdown-block-quote: #a0a1a7;
- --theme-markdown-emph: #c18401;
- --theme-markdown-strong: #986801;
- --theme-markdown-horizontal-rule: #a0a1a7;
- --theme-markdown-list-item: #4078f2;
- --theme-markdown-list-enumeration: #0184bc;
- --theme-markdown-image: #4078f2;
- --theme-markdown-image-text: #0184bc;
- --theme-markdown-code-block: #383a42;
- --theme-syntax-comment: #a0a1a7;
- --theme-syntax-keyword: #a626a4;
- --theme-syntax-function: #4078f2;
- --theme-syntax-variable: #e45649;
- --theme-syntax-string: #50a14f;
- --theme-syntax-number: #986801;
- --theme-syntax-type: #c18401;
- --theme-syntax-operator: #0184bc;
- --theme-syntax-punctuation: #383a42;
- }
- [data-theme="one-dark"][data-dark="true"] {
- --theme-primary: #61afef;
- --theme-secondary: #c678dd;
- --theme-accent: #56b6c2;
- --theme-error: #e06c75;
- --theme-warning: #e5c07b;
- --theme-success: #98c379;
- --theme-info: #d19a66;
- --theme-text: #abb2bf;
- --theme-text-muted: #5c6370;
- --theme-background: #282c34;
- --theme-background-panel: #21252b;
- --theme-background-element: #353b45;
- --theme-border: #393f4a;
- --theme-border-active: #61afef;
- --theme-border-subtle: #2c313a;
- --theme-diff-added: #98c379;
- --theme-diff-removed: #e06c75;
- --theme-diff-context: #5c6370;
- --theme-diff-hunk-header: #56b6c2;
- --theme-diff-highlight-added: #aad482;
- --theme-diff-highlight-removed: #e8828b;
- --theme-diff-added-bg: #2c382b;
- --theme-diff-removed-bg: #3a2d2f;
- --theme-diff-context-bg: #21252b;
- --theme-diff-line-number: #495162;
- --theme-diff-added-line-number-bg: #283427;
- --theme-diff-removed-line-number-bg: #36292b;
- --theme-markdown-text: #abb2bf;
- --theme-markdown-heading: #c678dd;
- --theme-markdown-link: #61afef;
- --theme-markdown-link-text: #56b6c2;
- --theme-markdown-code: #98c379;
- --theme-markdown-block-quote: #5c6370;
- --theme-markdown-emph: #e5c07b;
- --theme-markdown-strong: #d19a66;
- --theme-markdown-horizontal-rule: #5c6370;
- --theme-markdown-list-item: #61afef;
- --theme-markdown-list-enumeration: #56b6c2;
- --theme-markdown-image: #61afef;
- --theme-markdown-image-text: #56b6c2;
- --theme-markdown-code-block: #abb2bf;
- --theme-syntax-comment: #5c6370;
- --theme-syntax-keyword: #c678dd;
- --theme-syntax-function: #61afef;
- --theme-syntax-variable: #e06c75;
- --theme-syntax-string: #98c379;
- --theme-syntax-number: #d19a66;
- --theme-syntax-type: #e5c07b;
- --theme-syntax-operator: #56b6c2;
- --theme-syntax-punctuation: #abb2bf;
- }
- [data-theme="opencode"][data-dark="false"] {
- --theme-primary: #3b7dd8;
- --theme-secondary: #7b5bb6;
- --theme-accent: #d68c27;
- --theme-error: #d1383d;
- --theme-warning: #d68c27;
- --theme-success: #3d9a57;
- --theme-info: #318795;
- --theme-text: #1a1a1a;
- --theme-text-muted: #8a8a8a;
- --theme-background: #ffffff;
- --theme-background-panel: #fafafa;
- --theme-background-element: #f5f5f5;
- --theme-border: #b8b8b8;
- --theme-border-active: #a0a0a0;
- --theme-border-subtle: #d4d4d4;
- --theme-diff-added: #1e725c;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #7086b5;
- --theme-diff-hunk-header: #7086b5;
- --theme-diff-highlight-added: #4db380;
- --theme-diff-highlight-removed: #f52a65;
- --theme-diff-added-bg: #d5e5d5;
- --theme-diff-removed-bg: #f7d8db;
- --theme-diff-context-bg: #fafafa;
- --theme-diff-line-number: #f5f5f5;
- --theme-diff-added-line-number-bg: #c5d5c5;
- --theme-diff-removed-line-number-bg: #e7c8cb;
- --theme-markdown-text: #1a1a1a;
- --theme-markdown-heading: #d68c27;
- --theme-markdown-link: #3b7dd8;
- --theme-markdown-link-text: #318795;
- --theme-markdown-code: #3d9a57;
- --theme-markdown-block-quote: #b0851f;
- --theme-markdown-emph: #b0851f;
- --theme-markdown-strong: #d68c27;
- --theme-markdown-horizontal-rule: #8a8a8a;
- --theme-markdown-list-item: #3b7dd8;
- --theme-markdown-list-enumeration: #318795;
- --theme-markdown-image: #3b7dd8;
- --theme-markdown-image-text: #318795;
- --theme-markdown-code-block: #1a1a1a;
- --theme-syntax-comment: #8a8a8a;
- --theme-syntax-keyword: #d68c27;
- --theme-syntax-function: #3b7dd8;
- --theme-syntax-variable: #d1383d;
- --theme-syntax-string: #3d9a57;
- --theme-syntax-number: #d68c27;
- --theme-syntax-type: #b0851f;
- --theme-syntax-operator: #318795;
- --theme-syntax-punctuation: #1a1a1a;
- }
- [data-theme="opencode"][data-dark="true"] {
- --theme-primary: #fab283;
- --theme-secondary: #5c9cf5;
- --theme-accent: #9d7cd8;
- --theme-error: #e06c75;
- --theme-warning: #f5a742;
- --theme-success: #7fd88f;
- --theme-info: #56b6c2;
- --theme-text: #eeeeee;
- --theme-text-muted: #808080;
- --theme-background: #0a0a0a;
- --theme-background-panel: #141414;
- --theme-background-element: #1e1e1e;
- --theme-border: #484848;
- --theme-border-active: #606060;
- --theme-border-subtle: #3c3c3c;
- --theme-diff-added: #4fd6be;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #828bb8;
- --theme-diff-hunk-header: #828bb8;
- --theme-diff-highlight-added: #b8db87;
- --theme-diff-highlight-removed: #e26a75;
- --theme-diff-added-bg: #20303b;
- --theme-diff-removed-bg: #37222c;
- --theme-diff-context-bg: #141414;
- --theme-diff-line-number: #1e1e1e;
- --theme-diff-added-line-number-bg: #1b2b34;
- --theme-diff-removed-line-number-bg: #2d1f26;
- --theme-markdown-text: #eeeeee;
- --theme-markdown-heading: #9d7cd8;
- --theme-markdown-link: #fab283;
- --theme-markdown-link-text: #56b6c2;
- --theme-markdown-code: #7fd88f;
- --theme-markdown-block-quote: #e5c07b;
- --theme-markdown-emph: #e5c07b;
- --theme-markdown-strong: #f5a742;
- --theme-markdown-horizontal-rule: #808080;
- --theme-markdown-list-item: #fab283;
- --theme-markdown-list-enumeration: #56b6c2;
- --theme-markdown-image: #fab283;
- --theme-markdown-image-text: #56b6c2;
- --theme-markdown-code-block: #eeeeee;
- --theme-syntax-comment: #808080;
- --theme-syntax-keyword: #9d7cd8;
- --theme-syntax-function: #fab283;
- --theme-syntax-variable: #e06c75;
- --theme-syntax-string: #7fd88f;
- --theme-syntax-number: #f5a742;
- --theme-syntax-type: #e5c07b;
- --theme-syntax-operator: #56b6c2;
- --theme-syntax-punctuation: #eeeeee;
- }
- [data-theme="palenight"][data-dark="false"] {
- --theme-primary: #4976eb;
- --theme-secondary: #a854f2;
- --theme-accent: #00acc1;
- --theme-error: #e53935;
- --theme-warning: #ffb300;
- --theme-success: #91b859;
- --theme-info: #f4511e;
- --theme-text: #292d3e;
- --theme-text-muted: #8796b0;
- --theme-background: #fafafa;
- --theme-background-panel: #f5f5f5;
- --theme-background-element: #e7e7e8;
- --theme-border: #e0e0e0;
- --theme-border-active: #4976eb;
- --theme-border-subtle: #eeeeee;
- --theme-diff-added: #91b859;
- --theme-diff-removed: #e53935;
- --theme-diff-context: #8796b0;
- --theme-diff-hunk-header: #00acc1;
- --theme-diff-highlight-added: #91b859;
- --theme-diff-highlight-removed: #e53935;
- --theme-diff-added-bg: #e8f5e9;
- --theme-diff-removed-bg: #ffebee;
- --theme-diff-context-bg: #f5f5f5;
- --theme-diff-line-number: #cfd8dc;
- --theme-diff-added-line-number-bg: #e8f5e9;
- --theme-diff-removed-line-number-bg: #ffebee;
- --theme-markdown-text: #292d3e;
- --theme-markdown-heading: #a854f2;
- --theme-markdown-link: #4976eb;
- --theme-markdown-link-text: #00acc1;
- --theme-markdown-code: #91b859;
- --theme-markdown-block-quote: #8796b0;
- --theme-markdown-emph: #ffb300;
- --theme-markdown-strong: #f4511e;
- --theme-markdown-horizontal-rule: #8796b0;
- --theme-markdown-list-item: #4976eb;
- --theme-markdown-list-enumeration: #00acc1;
- --theme-markdown-image: #4976eb;
- --theme-markdown-image-text: #00acc1;
- --theme-markdown-code-block: #292d3e;
- --theme-syntax-comment: #8796b0;
- --theme-syntax-keyword: #a854f2;
- --theme-syntax-function: #4976eb;
- --theme-syntax-variable: #292d3e;
- --theme-syntax-string: #91b859;
- --theme-syntax-number: #f4511e;
- --theme-syntax-type: #ffb300;
- --theme-syntax-operator: #00acc1;
- --theme-syntax-punctuation: #292d3e;
- }
- [data-theme="palenight"][data-dark="true"] {
- --theme-primary: #82aaff;
- --theme-secondary: #c792ea;
- --theme-accent: #89ddff;
- --theme-error: #f07178;
- --theme-warning: #ffcb6b;
- --theme-success: #c3e88d;
- --theme-info: #f78c6c;
- --theme-text: #a6accd;
- --theme-text-muted: #676e95;
- --theme-background: #292d3e;
- --theme-background-panel: #1e2132;
- --theme-background-element: #32364a;
- --theme-border: #32364a;
- --theme-border-active: #82aaff;
- --theme-border-subtle: #1e2132;
- --theme-diff-added: #c3e88d;
- --theme-diff-removed: #f07178;
- --theme-diff-context: #676e95;
- --theme-diff-hunk-header: #89ddff;
- --theme-diff-highlight-added: #c3e88d;
- --theme-diff-highlight-removed: #f07178;
- --theme-diff-added-bg: #2e3c2b;
- --theme-diff-removed-bg: #3c2b2b;
- --theme-diff-context-bg: #1e2132;
- --theme-diff-line-number: #444760;
- --theme-diff-added-line-number-bg: #2e3c2b;
- --theme-diff-removed-line-number-bg: #3c2b2b;
- --theme-markdown-text: #a6accd;
- --theme-markdown-heading: #c792ea;
- --theme-markdown-link: #82aaff;
- --theme-markdown-link-text: #89ddff;
- --theme-markdown-code: #c3e88d;
- --theme-markdown-block-quote: #676e95;
- --theme-markdown-emph: #ffcb6b;
- --theme-markdown-strong: #f78c6c;
- --theme-markdown-horizontal-rule: #676e95;
- --theme-markdown-list-item: #82aaff;
- --theme-markdown-list-enumeration: #89ddff;
- --theme-markdown-image: #82aaff;
- --theme-markdown-image-text: #89ddff;
- --theme-markdown-code-block: #a6accd;
- --theme-syntax-comment: #676e95;
- --theme-syntax-keyword: #c792ea;
- --theme-syntax-function: #82aaff;
- --theme-syntax-variable: #a6accd;
- --theme-syntax-string: #c3e88d;
- --theme-syntax-number: #f78c6c;
- --theme-syntax-type: #ffcb6b;
- --theme-syntax-operator: #89ddff;
- --theme-syntax-punctuation: #a6accd;
- }
- [data-theme="rosepine"][data-dark="false"] {
- --theme-primary: #31748f;
- --theme-secondary: #907aa9;
- --theme-accent: #d7827e;
- --theme-error: #b4637a;
- --theme-warning: #ea9d34;
- --theme-success: #286983;
- --theme-info: #56949f;
- --theme-text: #575279;
- --theme-text-muted: #9893a5;
- --theme-background: #faf4ed;
- --theme-background-panel: #fffaf3;
- --theme-background-element: #f2e9e1;
- --theme-border: #dfdad9;
- --theme-border-active: #31748f;
- --theme-border-subtle: #f4ede8;
- --theme-diff-added: #286983;
- --theme-diff-removed: #b4637a;
- --theme-diff-context: #9893a5;
- --theme-diff-hunk-header: #907aa9;
- --theme-diff-highlight-added: #286983;
- --theme-diff-highlight-removed: #b4637a;
- --theme-diff-added-bg: #e5f2f3;
- --theme-diff-removed-bg: #fce5e8;
- --theme-diff-context-bg: #fffaf3;
- --theme-diff-line-number: #9893a5;
- --theme-diff-added-line-number-bg: #e5f2f3;
- --theme-diff-removed-line-number-bg: #fce5e8;
- --theme-markdown-text: #575279;
- --theme-markdown-heading: #907aa9;
- --theme-markdown-link: #31748f;
- --theme-markdown-link-text: #d7827e;
- --theme-markdown-code: #286983;
- --theme-markdown-block-quote: #9893a5;
- --theme-markdown-emph: #ea9d34;
- --theme-markdown-strong: #b4637a;
- --theme-markdown-horizontal-rule: #dfdad9;
- --theme-markdown-list-item: #31748f;
- --theme-markdown-list-enumeration: #d7827e;
- --theme-markdown-image: #31748f;
- --theme-markdown-image-text: #d7827e;
- --theme-markdown-code-block: #575279;
- --theme-syntax-comment: #9893a5;
- --theme-syntax-keyword: #286983;
- --theme-syntax-function: #d7827e;
- --theme-syntax-variable: #575279;
- --theme-syntax-string: #ea9d34;
- --theme-syntax-number: #907aa9;
- --theme-syntax-type: #56949f;
- --theme-syntax-operator: #797593;
- --theme-syntax-punctuation: #797593;
- }
- [data-theme="rosepine"][data-dark="true"] {
- --theme-primary: #9ccfd8;
- --theme-secondary: #c4a7e7;
- --theme-accent: #ebbcba;
- --theme-error: #eb6f92;
- --theme-warning: #f6c177;
- --theme-success: #31748f;
- --theme-info: #9ccfd8;
- --theme-text: #e0def4;
- --theme-text-muted: #6e6a86;
- --theme-background: #191724;
- --theme-background-panel: #1f1d2e;
- --theme-background-element: #26233a;
- --theme-border: #403d52;
- --theme-border-active: #9ccfd8;
- --theme-border-subtle: #21202e;
- --theme-diff-added: #31748f;
- --theme-diff-removed: #eb6f92;
- --theme-diff-context: #6e6a86;
- --theme-diff-hunk-header: #c4a7e7;
- --theme-diff-highlight-added: #31748f;
- --theme-diff-highlight-removed: #eb6f92;
- --theme-diff-added-bg: #1f2d3a;
- --theme-diff-removed-bg: #3a1f2d;
- --theme-diff-context-bg: #1f1d2e;
- --theme-diff-line-number: #6e6a86;
- --theme-diff-added-line-number-bg: #1f2d3a;
- --theme-diff-removed-line-number-bg: #3a1f2d;
- --theme-markdown-text: #e0def4;
- --theme-markdown-heading: #c4a7e7;
- --theme-markdown-link: #9ccfd8;
- --theme-markdown-link-text: #ebbcba;
- --theme-markdown-code: #31748f;
- --theme-markdown-block-quote: #6e6a86;
- --theme-markdown-emph: #f6c177;
- --theme-markdown-strong: #eb6f92;
- --theme-markdown-horizontal-rule: #403d52;
- --theme-markdown-list-item: #9ccfd8;
- --theme-markdown-list-enumeration: #ebbcba;
- --theme-markdown-image: #9ccfd8;
- --theme-markdown-image-text: #ebbcba;
- --theme-markdown-code-block: #e0def4;
- --theme-syntax-comment: #6e6a86;
- --theme-syntax-keyword: #31748f;
- --theme-syntax-function: #ebbcba;
- --theme-syntax-variable: #e0def4;
- --theme-syntax-string: #f6c177;
- --theme-syntax-number: #c4a7e7;
- --theme-syntax-type: #9ccfd8;
- --theme-syntax-operator: #908caa;
- --theme-syntax-punctuation: #908caa;
- }
- [data-theme="solarized"][data-dark="false"] {
- --theme-primary: #268bd2;
- --theme-secondary: #6c71c4;
- --theme-accent: #2aa198;
- --theme-error: #dc322f;
- --theme-warning: #b58900;
- --theme-success: #859900;
- --theme-info: #cb4b16;
- --theme-text: #657b83;
- --theme-text-muted: #93a1a1;
- --theme-background: #fdf6e3;
- --theme-background-panel: #eee8d5;
- --theme-background-element: #eee8d5;
- --theme-border: #eee8d5;
- --theme-border-active: #93a1a1;
- --theme-border-subtle: #eee8d5;
- --theme-diff-added: #859900;
- --theme-diff-removed: #dc322f;
- --theme-diff-context: #93a1a1;
- --theme-diff-hunk-header: #93a1a1;
- --theme-diff-highlight-added: #859900;
- --theme-diff-highlight-removed: #dc322f;
- --theme-diff-added-bg: #eee8d5;
- --theme-diff-removed-bg: #eee8d5;
- --theme-diff-context-bg: #eee8d5;
- --theme-diff-line-number: #93a1a1;
- --theme-diff-added-line-number-bg: #eee8d5;
- --theme-diff-removed-line-number-bg: #eee8d5;
- --theme-markdown-text: #657b83;
- --theme-markdown-heading: #268bd2;
- --theme-markdown-link: #2aa198;
- --theme-markdown-link-text: #6c71c4;
- --theme-markdown-code: #859900;
- --theme-markdown-block-quote: #93a1a1;
- --theme-markdown-emph: #b58900;
- --theme-markdown-strong: #cb4b16;
- --theme-markdown-horizontal-rule: #93a1a1;
- --theme-markdown-list-item: #268bd2;
- --theme-markdown-list-enumeration: #2aa198;
- --theme-markdown-image: #2aa198;
- --theme-markdown-image-text: #6c71c4;
- --theme-markdown-code-block: #657b83;
- --theme-syntax-comment: #93a1a1;
- --theme-syntax-keyword: #859900;
- --theme-syntax-function: #268bd2;
- --theme-syntax-variable: #2aa198;
- --theme-syntax-string: #2aa198;
- --theme-syntax-number: #d33682;
- --theme-syntax-type: #b58900;
- --theme-syntax-operator: #859900;
- --theme-syntax-punctuation: #657b83;
- }
- [data-theme="solarized"][data-dark="true"] {
- --theme-primary: #268bd2;
- --theme-secondary: #6c71c4;
- --theme-accent: #2aa198;
- --theme-error: #dc322f;
- --theme-warning: #b58900;
- --theme-success: #859900;
- --theme-info: #cb4b16;
- --theme-text: #839496;
- --theme-text-muted: #586e75;
- --theme-background: #002b36;
- --theme-background-panel: #073642;
- --theme-background-element: #073642;
- --theme-border: #073642;
- --theme-border-active: #586e75;
- --theme-border-subtle: #073642;
- --theme-diff-added: #859900;
- --theme-diff-removed: #dc322f;
- --theme-diff-context: #586e75;
- --theme-diff-hunk-header: #586e75;
- --theme-diff-highlight-added: #859900;
- --theme-diff-highlight-removed: #dc322f;
- --theme-diff-added-bg: #073642;
- --theme-diff-removed-bg: #073642;
- --theme-diff-context-bg: #073642;
- --theme-diff-line-number: #586e75;
- --theme-diff-added-line-number-bg: #073642;
- --theme-diff-removed-line-number-bg: #073642;
- --theme-markdown-text: #839496;
- --theme-markdown-heading: #268bd2;
- --theme-markdown-link: #2aa198;
- --theme-markdown-link-text: #6c71c4;
- --theme-markdown-code: #859900;
- --theme-markdown-block-quote: #586e75;
- --theme-markdown-emph: #b58900;
- --theme-markdown-strong: #cb4b16;
- --theme-markdown-horizontal-rule: #586e75;
- --theme-markdown-list-item: #268bd2;
- --theme-markdown-list-enumeration: #2aa198;
- --theme-markdown-image: #2aa198;
- --theme-markdown-image-text: #6c71c4;
- --theme-markdown-code-block: #839496;
- --theme-syntax-comment: #586e75;
- --theme-syntax-keyword: #859900;
- --theme-syntax-function: #268bd2;
- --theme-syntax-variable: #2aa198;
- --theme-syntax-string: #2aa198;
- --theme-syntax-number: #d33682;
- --theme-syntax-type: #b58900;
- --theme-syntax-operator: #859900;
- --theme-syntax-punctuation: #839496;
- }
- [data-theme="synthwave84"][data-dark="false"] {
- --theme-primary: #00bcd4;
- --theme-secondary: #e91e63;
- --theme-accent: #9c27b0;
- --theme-error: #f44336;
- --theme-warning: #ff9800;
- --theme-success: #4caf50;
- --theme-info: #ff5722;
- --theme-text: #262335;
- --theme-text-muted: #5c5c8a;
- --theme-background: #fafafa;
- --theme-background-panel: #f5f5f5;
- --theme-background-element: #eeeeee;
- --theme-border: #e0e0e0;
- --theme-border-active: #00bcd4;
- --theme-border-subtle: #f0f0f0;
- --theme-diff-added: #4caf50;
- --theme-diff-removed: #f44336;
- --theme-diff-context: #5c5c8a;
- --theme-diff-hunk-header: #9c27b0;
- --theme-diff-highlight-added: #4caf50;
- --theme-diff-highlight-removed: #f44336;
- --theme-diff-added-bg: #e8f5e9;
- --theme-diff-removed-bg: #ffebee;
- --theme-diff-context-bg: #f5f5f5;
- --theme-diff-line-number: #b0b0b0;
- --theme-diff-added-line-number-bg: #e8f5e9;
- --theme-diff-removed-line-number-bg: #ffebee;
- --theme-markdown-text: #262335;
- --theme-markdown-heading: #e91e63;
- --theme-markdown-link: #00bcd4;
- --theme-markdown-link-text: #9c27b0;
- --theme-markdown-code: #4caf50;
- --theme-markdown-block-quote: #5c5c8a;
- --theme-markdown-emph: #ff9800;
- --theme-markdown-strong: #ff5722;
- --theme-markdown-horizontal-rule: #e0e0e0;
- --theme-markdown-list-item: #00bcd4;
- --theme-markdown-list-enumeration: #9c27b0;
- --theme-markdown-image: #00bcd4;
- --theme-markdown-image-text: #9c27b0;
- --theme-markdown-code-block: #262335;
- --theme-syntax-comment: #5c5c8a;
- --theme-syntax-keyword: #e91e63;
- --theme-syntax-function: #ff5722;
- --theme-syntax-variable: #262335;
- --theme-syntax-string: #ff9800;
- --theme-syntax-number: #9c27b0;
- --theme-syntax-type: #00bcd4;
- --theme-syntax-operator: #e91e63;
- --theme-syntax-punctuation: #262335;
- }
- [data-theme="synthwave84"][data-dark="true"] {
- --theme-primary: #36f9f6;
- --theme-secondary: #ff7edb;
- --theme-accent: #b084eb;
- --theme-error: #fe4450;
- --theme-warning: #fede5d;
- --theme-success: #72f1b8;
- --theme-info: #ff8b39;
- --theme-text: #ffffff;
- --theme-text-muted: #848bbd;
- --theme-background: #262335;
- --theme-background-panel: #1e1a29;
- --theme-background-element: #2a2139;
- --theme-border: #495495;
- --theme-border-active: #36f9f6;
- --theme-border-subtle: #241b2f;
- --theme-diff-added: #72f1b8;
- --theme-diff-removed: #fe4450;
- --theme-diff-context: #848bbd;
- --theme-diff-hunk-header: #b084eb;
- --theme-diff-highlight-added: #97f1d8;
- --theme-diff-highlight-removed: #ff5e5b;
- --theme-diff-added-bg: #1a3a2a;
- --theme-diff-removed-bg: #3a1a2a;
- --theme-diff-context-bg: #1e1a29;
- --theme-diff-line-number: #495495;
- --theme-diff-added-line-number-bg: #1a3a2a;
- --theme-diff-removed-line-number-bg: #3a1a2a;
- --theme-markdown-text: #ffffff;
- --theme-markdown-heading: #ff7edb;
- --theme-markdown-link: #36f9f6;
- --theme-markdown-link-text: #b084eb;
- --theme-markdown-code: #72f1b8;
- --theme-markdown-block-quote: #848bbd;
- --theme-markdown-emph: #fede5d;
- --theme-markdown-strong: #ff8b39;
- --theme-markdown-horizontal-rule: #495495;
- --theme-markdown-list-item: #36f9f6;
- --theme-markdown-list-enumeration: #b084eb;
- --theme-markdown-image: #36f9f6;
- --theme-markdown-image-text: #b084eb;
- --theme-markdown-code-block: #ffffff;
- --theme-syntax-comment: #848bbd;
- --theme-syntax-keyword: #ff7edb;
- --theme-syntax-function: #ff8b39;
- --theme-syntax-variable: #ffffff;
- --theme-syntax-string: #fede5d;
- --theme-syntax-number: #b084eb;
- --theme-syntax-type: #36f9f6;
- --theme-syntax-operator: #ff7edb;
- --theme-syntax-punctuation: #ffffff;
- }
- [data-theme="tokyonight"][data-dark="false"] {
- --theme-primary: #2e7de9;
- --theme-secondary: #9854f1;
- --theme-accent: #b15c00;
- --theme-error: #f52a65;
- --theme-warning: #b15c00;
- --theme-success: #587539;
- --theme-info: #2e7de9;
- --theme-text: #3760bf;
- --theme-text-muted: #8990a3;
- --theme-background: #e1e2e7;
- --theme-background-panel: #d5d6db;
- --theme-background-element: #c8c9ce;
- --theme-border: #737a8c;
- --theme-border-active: #5a607d;
- --theme-border-subtle: #9699a8;
- --theme-diff-added: #1e725c;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #7086b5;
- --theme-diff-hunk-header: #7086b5;
- --theme-diff-highlight-added: #4db380;
- --theme-diff-highlight-removed: #f52a65;
- --theme-diff-added-bg: #d5e5d5;
- --theme-diff-removed-bg: #f7d8db;
- --theme-diff-context-bg: #d5d6db;
- --theme-diff-line-number: #c8c9ce;
- --theme-diff-added-line-number-bg: #c5d5c5;
- --theme-diff-removed-line-number-bg: #e7c8cb;
- --theme-markdown-text: #3760bf;
- --theme-markdown-heading: #9854f1;
- --theme-markdown-link: #2e7de9;
- --theme-markdown-link-text: #007197;
- --theme-markdown-code: #587539;
- --theme-markdown-block-quote: #8c6c3e;
- --theme-markdown-emph: #8c6c3e;
- --theme-markdown-strong: #b15c00;
- --theme-markdown-horizontal-rule: #8990a3;
- --theme-markdown-list-item: #2e7de9;
- --theme-markdown-list-enumeration: #007197;
- --theme-markdown-image: #2e7de9;
- --theme-markdown-image-text: #007197;
- --theme-markdown-code-block: #3760bf;
- --theme-syntax-comment: #8990a3;
- --theme-syntax-keyword: #9854f1;
- --theme-syntax-function: #2e7de9;
- --theme-syntax-variable: #f52a65;
- --theme-syntax-string: #587539;
- --theme-syntax-number: #b15c00;
- --theme-syntax-type: #8c6c3e;
- --theme-syntax-operator: #007197;
- --theme-syntax-punctuation: #3760bf;
- }
- [data-theme="tokyonight"][data-dark="true"] {
- --theme-primary: #82aaff;
- --theme-secondary: #c099ff;
- --theme-accent: #ff966c;
- --theme-error: #ff757f;
- --theme-warning: #ff966c;
- --theme-success: #c3e88d;
- --theme-info: #82aaff;
- --theme-text: #c8d3f5;
- --theme-text-muted: #828bb8;
- --theme-background: #1a1b26;
- --theme-background-panel: #1e2030;
- --theme-background-element: #222436;
- --theme-border: #737aa2;
- --theme-border-active: #9099b2;
- --theme-border-subtle: #545c7e;
- --theme-diff-added: #4fd6be;
- --theme-diff-removed: #c53b53;
- --theme-diff-context: #828bb8;
- --theme-diff-hunk-header: #828bb8;
- --theme-diff-highlight-added: #b8db87;
- --theme-diff-highlight-removed: #e26a75;
- --theme-diff-added-bg: #20303b;
- --theme-diff-removed-bg: #37222c;
- --theme-diff-context-bg: #1e2030;
- --theme-diff-line-number: #222436;
- --theme-diff-added-line-number-bg: #1b2b34;
- --theme-diff-removed-line-number-bg: #2d1f26;
- --theme-markdown-text: #c8d3f5;
- --theme-markdown-heading: #c099ff;
- --theme-markdown-link: #82aaff;
- --theme-markdown-link-text: #86e1fc;
- --theme-markdown-code: #c3e88d;
- --theme-markdown-block-quote: #ffc777;
- --theme-markdown-emph: #ffc777;
- --theme-markdown-strong: #ff966c;
- --theme-markdown-horizontal-rule: #828bb8;
- --theme-markdown-list-item: #82aaff;
- --theme-markdown-list-enumeration: #86e1fc;
- --theme-markdown-image: #82aaff;
- --theme-markdown-image-text: #86e1fc;
- --theme-markdown-code-block: #c8d3f5;
- --theme-syntax-comment: #828bb8;
- --theme-syntax-keyword: #c099ff;
- --theme-syntax-function: #82aaff;
- --theme-syntax-variable: #ff757f;
- --theme-syntax-string: #c3e88d;
- --theme-syntax-number: #ff966c;
- --theme-syntax-type: #ffc777;
- --theme-syntax-operator: #86e1fc;
- --theme-syntax-punctuation: #c8d3f5;
- }
- [data-theme="vesper"][data-dark="false"] {
- --theme-primary: #ffc799;
- --theme-secondary: #99ffe4;
- --theme-accent: #ffc799;
- --theme-error: #ff8080;
- --theme-warning: #ffc799;
- --theme-success: #99ffe4;
- --theme-info: #ffc799;
- --theme-text: #101010;
- --theme-text-muted: #a0a0a0;
- --theme-background: #fff;
- --theme-background-panel: #f0f0f0;
- --theme-background-element: #e0e0e0;
- --theme-border: #d0d0d0;
- --theme-border-active: #ffc799;
- --theme-border-subtle: #e8e8e8;
- --theme-diff-added: #99ffe4;
- --theme-diff-removed: #ff8080;
- --theme-diff-context: #a0a0a0;
- --theme-diff-hunk-header: #a0a0a0;
- --theme-diff-highlight-added: #99ffe4;
- --theme-diff-highlight-removed: #ff8080;
- --theme-diff-added-bg: #e8f5e8;
- --theme-diff-removed-bg: #f5e8e8;
- --theme-diff-context-bg: #f8f8f8;
- --theme-diff-line-number: #808080;
- --theme-diff-added-line-number-bg: #e8f5e8;
- --theme-diff-removed-line-number-bg: #f5e8e8;
- --theme-markdown-text: #101010;
- --theme-markdown-heading: #ffc799;
- --theme-markdown-link: #ffc799;
- --theme-markdown-link-text: #a0a0a0;
- --theme-markdown-code: #a0a0a0;
- --theme-markdown-block-quote: #101010;
- --theme-markdown-emph: #101010;
- --theme-markdown-strong: #101010;
- --theme-markdown-horizontal-rule: #65737e;
- --theme-markdown-list-item: #101010;
- --theme-markdown-list-enumeration: #101010;
- --theme-markdown-image: #ffc799;
- --theme-markdown-image-text: #a0a0a0;
- --theme-markdown-code-block: #101010;
- --theme-syntax-comment: #8b8b8b94;
- --theme-syntax-keyword: #a0a0a0;
- --theme-syntax-function: #ffc799;
- --theme-syntax-variable: #101010;
- --theme-syntax-string: #99ffe4;
- --theme-syntax-number: #ffc799;
- --theme-syntax-type: #ffc799;
- --theme-syntax-operator: #a0a0a0;
- --theme-syntax-punctuation: #101010;
- }
- [data-theme="vesper"][data-dark="true"] {
- --theme-primary: #ffc799;
- --theme-secondary: #99ffe4;
- --theme-accent: #ffc799;
- --theme-error: #ff8080;
- --theme-warning: #ffc799;
- --theme-success: #99ffe4;
- --theme-info: #ffc799;
- --theme-text: #fff;
- --theme-text-muted: #a0a0a0;
- --theme-background: #101010;
- --theme-background-panel: #101010;
- --theme-background-element: #101010;
- --theme-border: #282828;
- --theme-border-active: #ffc799;
- --theme-border-subtle: #1c1c1c;
- --theme-diff-added: #99ffe4;
- --theme-diff-removed: #ff8080;
- --theme-diff-context: #a0a0a0;
- --theme-diff-hunk-header: #a0a0a0;
- --theme-diff-highlight-added: #99ffe4;
- --theme-diff-highlight-removed: #ff8080;
- --theme-diff-added-bg: #0d2818;
- --theme-diff-removed-bg: #281a1a;
- --theme-diff-context-bg: #101010;
- --theme-diff-line-number: #505050;
- --theme-diff-added-line-number-bg: #0d2818;
- --theme-diff-removed-line-number-bg: #281a1a;
- --theme-markdown-text: #fff;
- --theme-markdown-heading: #ffc799;
- --theme-markdown-link: #ffc799;
- --theme-markdown-link-text: #a0a0a0;
- --theme-markdown-code: #a0a0a0;
- --theme-markdown-block-quote: #fff;
- --theme-markdown-emph: #fff;
- --theme-markdown-strong: #fff;
- --theme-markdown-horizontal-rule: #65737e;
- --theme-markdown-list-item: #fff;
- --theme-markdown-list-enumeration: #fff;
- --theme-markdown-image: #ffc799;
- --theme-markdown-image-text: #a0a0a0;
- --theme-markdown-code-block: #fff;
- --theme-syntax-comment: #8b8b8b94;
- --theme-syntax-keyword: #a0a0a0;
- --theme-syntax-function: #ffc799;
- --theme-syntax-variable: #fff;
- --theme-syntax-string: #99ffe4;
- --theme-syntax-number: #ffc799;
- --theme-syntax-type: #ffc799;
- --theme-syntax-operator: #a0a0a0;
- --theme-syntax-punctuation: #fff;
- }
- [data-theme="zenburn"][data-dark="false"] {
- --theme-primary: #5f7f8f;
- --theme-secondary: #8f5f8f;
- --theme-accent: #5f8f8f;
- --theme-error: #8f5f5f;
- --theme-warning: #8f8f5f;
- --theme-success: #5f8f5f;
- --theme-info: #8f7f5f;
- --theme-text: #3f3f3f;
- --theme-text-muted: #6f6f6f;
- --theme-background: #ffffef;
- --theme-background-panel: #f5f5e5;
- --theme-background-element: #ebebdb;
- --theme-border: #d0d0c0;
- --theme-border-active: #5f7f8f;
- --theme-border-subtle: #e0e0d0;
- --theme-diff-added: #5f8f5f;
- --theme-diff-removed: #8f5f5f;
- --theme-diff-context: #6f6f6f;
- --theme-diff-hunk-header: #5f8f8f;
- --theme-diff-highlight-added: #5f8f5f;
- --theme-diff-highlight-removed: #8f5f5f;
- --theme-diff-added-bg: #efffef;
- --theme-diff-removed-bg: #ffefef;
- --theme-diff-context-bg: #f5f5e5;
- --theme-diff-line-number: #b0b0a0;
- --theme-diff-added-line-number-bg: #efffef;
- --theme-diff-removed-line-number-bg: #ffefef;
- --theme-markdown-text: #3f3f3f;
- --theme-markdown-heading: #8f8f5f;
- --theme-markdown-link: #5f7f8f;
- --theme-markdown-link-text: #5f8f8f;
- --theme-markdown-code: #5f8f5f;
- --theme-markdown-block-quote: #6f6f6f;
- --theme-markdown-emph: #8f8f5f;
- --theme-markdown-strong: #8f7f5f;
- --theme-markdown-horizontal-rule: #6f6f6f;
- --theme-markdown-list-item: #5f7f8f;
- --theme-markdown-list-enumeration: #5f8f8f;
- --theme-markdown-image: #5f7f8f;
- --theme-markdown-image-text: #5f8f8f;
- --theme-markdown-code-block: #3f3f3f;
- --theme-syntax-comment: #5f7f5f;
- --theme-syntax-keyword: #8f8f5f;
- --theme-syntax-function: #5f7f8f;
- --theme-syntax-variable: #3f3f3f;
- --theme-syntax-string: #8f5f5f;
- --theme-syntax-number: #5f8f5f;
- --theme-syntax-type: #5f8f8f;
- --theme-syntax-operator: #8f8f5f;
- --theme-syntax-punctuation: #3f3f3f;
- }
- [data-theme="zenburn"][data-dark="true"] {
- --theme-primary: #8cd0d3;
- --theme-secondary: #dc8cc3;
- --theme-accent: #93e0e3;
- --theme-error: #cc9393;
- --theme-warning: #f0dfaf;
- --theme-success: #7f9f7f;
- --theme-info: #dfaf8f;
- --theme-text: #dcdccc;
- --theme-text-muted: #9f9f9f;
- --theme-background: #3f3f3f;
- --theme-background-panel: #4f4f4f;
- --theme-background-element: #5f5f5f;
- --theme-border: #5f5f5f;
- --theme-border-active: #8cd0d3;
- --theme-border-subtle: #4f4f4f;
- --theme-diff-added: #7f9f7f;
- --theme-diff-removed: #cc9393;
- --theme-diff-context: #9f9f9f;
- --theme-diff-hunk-header: #93e0e3;
- --theme-diff-highlight-added: #8fb28f;
- --theme-diff-highlight-removed: #dca3a3;
- --theme-diff-added-bg: #4f5f4f;
- --theme-diff-removed-bg: #5f4f4f;
- --theme-diff-context-bg: #4f4f4f;
- --theme-diff-line-number: #6f6f6f;
- --theme-diff-added-line-number-bg: #4f5f4f;
- --theme-diff-removed-line-number-bg: #5f4f4f;
- --theme-markdown-text: #dcdccc;
- --theme-markdown-heading: #f0dfaf;
- --theme-markdown-link: #8cd0d3;
- --theme-markdown-link-text: #93e0e3;
- --theme-markdown-code: #7f9f7f;
- --theme-markdown-block-quote: #9f9f9f;
- --theme-markdown-emph: #e0cf9f;
- --theme-markdown-strong: #dfaf8f;
- --theme-markdown-horizontal-rule: #9f9f9f;
- --theme-markdown-list-item: #8cd0d3;
- --theme-markdown-list-enumeration: #93e0e3;
- --theme-markdown-image: #8cd0d3;
- --theme-markdown-image-text: #93e0e3;
- --theme-markdown-code-block: #dcdccc;
- --theme-syntax-comment: #7f9f7f;
- --theme-syntax-keyword: #f0dfaf;
- --theme-syntax-function: #8cd0d3;
- --theme-syntax-variable: #dcdccc;
- --theme-syntax-string: #cc9393;
- --theme-syntax-number: #8fb28f;
- --theme-syntax-type: #93e0e3;
- --theme-syntax-operator: #f0dfaf;
- --theme-syntax-punctuation: #dcdccc;
- }
|