monacopilot 0.8.21 → 0.8.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,13 +1,13 @@
1
- var P={llama:"llama3-70b-8192"},b="llama",I="https://api.groq.com/openai/v1/chat/completions";var D=(e,o)=>{let t={...o};for(let n in e)typeof e[n]=="object"&&!Array.isArray(e[n])?o[n]&&typeof o[n]=="object"&&!Array.isArray(o[n])?t[n]=D(e[n],o[n]):t[n]={...e[n]}:t[n]=e[n];return t},V=e=>!e||e.length===0?"":e.length===1?e[0]:`${e.slice(0,-1).join(", ")} and ${e.slice(-1)}`;var B="<<CURSOR>>",O=e=>e==="javascript"?"latest JavaScript":e,W=e=>{switch(e){case"fill-in-the-middle":return"filling in the middle of the code";case"completion":return"completing the code";default:return"completing the code"}},N=e=>{let o=O(e.language),t=W(e.editorState.completionMode);return`You are an expert ${o||""} code completion assistant known for exceptional skill in ${t}.`},ce=(e,o)=>{if(!e?.length&&!o)return"";let t=V(e),n=O(o);return`The code is written${n?` in ${n}`:""}${t?` using ${t}`:""}.`},_=e=>{let{filename:o,language:t,technologies:n,editorState:r,codeBeforeCursor:a,codeAfterCursor:i,externalContext:u}=e,g=W(r.completionMode),s=o?`the file named ${o}`:"a larger project",d=`You will be presented with a code snippet where the cursor location is marked with '${B}'. Your task is to assist with ${g}. This code is part of ${s}. Please `;switch(r.completionMode){case"fill-in-the-middle":d+=`generate a completion to fill the middle of the code around '${B}'. Ensure the completion replaces '${B}' precisely, maintaining consistency, semantic accuracy, and relevance to the context. The completion must start exactly from the cursor position without any preceding or following characters, and it should not introduce any syntactical or semantic errors to the existing code.`;break;case"completion":d+=`provide the necessary completion for '${B}' while ensuring consistency, semantic accuracy, and relevance to the context. The completion must start exactly from the cursor position without any preceding or following characters, and it should not introduce any syntactical or semantic errors to the existing code.`;break}d+=` Output only the necessary completion code, without additional explanations or content.${ce(n,t)}`;let c=`${a}${B}${i}
1
+ var P={llama:"llama3-70b-8192"},E="llama",I="https://api.groq.com/openai/v1/chat/completions";var v=(e,o)=>{let t={...o};for(let n in e)typeof e[n]=="object"&&!Array.isArray(e[n])?o[n]&&typeof o[n]=="object"&&!Array.isArray(o[n])?t[n]=v(e[n],o[n]):t[n]={...e[n]}:t[n]=e[n];return t},V=e=>!e||e.length===0?"":e.length===1?e[0]:`${e.slice(0,-1).join(", ")} and ${e.slice(-1)}`,w=e=>e.split("").reverse().join("");var B="<<CURSOR>>",O=e=>e==="javascript"?"latest JavaScript":e,W=e=>{switch(e){case"fill-in-the-middle":return"filling in the middle of the code";case"completion":return"completing the code";default:return"completing the code"}},N=e=>{let o=O(e.language),t=W(e.editorState.completionMode);return`You are an expert ${o||""} code completion assistant known for exceptional skill in ${t}.`},se=(e,o)=>{if(!e?.length&&!o)return"";let t=V(e),n=O(o);return`The code is written${n?` in ${n}`:""}${t?` using ${t}`:""}.`},_=e=>{let{filename:o,language:t,technologies:n,editorState:r,codeBeforeCursor:i,codeAfterCursor:u,externalContext:d}=e,g=W(r.completionMode),f=o?`the file named ${o}`:"a larger project",a=`You will be presented with a code snippet in '<code>' tag where the cursor location is marked with '${B}'. Your task is to assist with ${g}. This code is part of ${f}. Please `;switch(r.completionMode){case"fill-in-the-middle":a+=`generate a completion to fill the middle of the code around '${B}'. Ensure the completion replaces '${B}' precisely, maintaining consistency, semantic accuracy, and relevance to the context. The completion must start exactly from the cursor position without any preceding or following characters, and it should not introduce any syntactical or semantic errors to the existing code.`;break;case"completion":a+=`provide the necessary completion for '${B}' while ensuring consistency, semantic accuracy, and relevance to the context. The completion must start exactly from the cursor position without any preceding or following characters, and it should not introduce any syntactical or semantic errors to the existing code.`;break}a+=` Output only the necessary completion code, without additional explanations or content.${se(n,t)}`;let c=`${i}${B}${u}
2
2
 
3
- `;return u&&u.length>0&&(c+=u.map(k=>`// Path: ${k.path}
4
- ${k.content}
3
+ `;return d&&d.length>0&&(c+=d.map(m=>`// Path: ${m.path}
4
+ ${m.content}
5
5
  `).join(`
6
- `)),d+=`
6
+ `)),a+=`
7
7
 
8
8
  <code>
9
9
  ${c}
10
- </code>`,d.endsWith(".")?d:`${d}.`};var G=async(e,o,t={})=>{let n={"Content-Type":"application/json",...t.headers},r=o==="POST"&&t.body?JSON.stringify(t.body):void 0,a=await fetch(e,{method:o,headers:n,body:r,signal:t.signal});if(!a.ok)throw new Error(`${t.error||"Network error"}: ${a.statusText}`);return a.json()},se=(e,o)=>G(e,"GET",o),fe=(e,o,t)=>G(e,"POST",{...t,body:o}),ke={GET:se,POST:fe},E=ke;var C=class{static getModel(){return this.model}static setModel(o){this.model=o}};C.model=b;var v=C;var w=class{constructor(o,t){if(!o)throw new Error("Groq API key is required to initialize Copilot.");this.apiKey=o,v.setModel(t?.model||b)}async complete({completionMetadata:o}){try{let t=v.getModel(),n={model:P[t],messages:[{role:"system",content:N(o)},{role:"user",content:_(o)}]},r={Authorization:`Bearer ${this.apiKey}`,"Content-Type":"application/json"};return{completion:(await E.POST(I,n,{headers:r,error:"Error while fetching from groq API"})).choices[0].message.content}}catch(t){return console.error(t),{error:t.message}}}},pe=w;import M from"react";import{Editor as ye}from"@monaco-editor/react";var $={scrollBeyondLastColumn:0,codeLens:!1,minimap:{enabled:!1},quickSuggestions:!1,folding:!1,foldingHighlight:!1,foldingImportsByDefault:!1,links:!1,fontSize:14,wordWrap:"on",automaticLayout:!0},U=["light","vs-dark"];import L from"react";var Q={conso:"le.log($1)","new P":`romise((resolve, reject) => {
10
+ </code>`,a.endsWith(".")?a:`${a}.`};var G=async(e,o,t={})=>{let n={"Content-Type":"application/json",...t.headers},r=o==="POST"&&t.body?JSON.stringify(t.body):void 0,i=await fetch(e,{method:o,headers:n,body:r,signal:t.signal});if(!i.ok)throw new Error(`${t.error||"Network error"}: ${i.statusText}`);return i.json()},fe=(e,o)=>G(e,"GET",o),ke=(e,o,t)=>G(e,"POST",{...t,body:o}),pe={GET:fe,POST:ke},C=pe;var A=class{static getModel(){return this.model}static setModel(o){this.model=o}};A.model=E;var S=A;var x=class{constructor(o,t){if(!o)throw new Error("Groq API key is required to initialize Copilot.");this.apiKey=o,S.setModel(t?.model||E)}async complete({completionMetadata:o}){try{let t=S.getModel(),n={model:P[t],messages:[{role:"system",content:N(o)},{role:"user",content:_(o)}]},r={Authorization:`Bearer ${this.apiKey}`,"Content-Type":"application/json"};return{completion:(await C.POST(I,n,{headers:r,error:"Error while fetching from groq API"})).choices[0].message.content}}catch(t){return{error:t.message}}}},le=x;import q from"react";import{Editor as be}from"@monaco-editor/react";var $={scrollBeyondLastColumn:0,codeLens:!1,minimap:{enabled:!1},quickSuggestions:!1,folding:!1,foldingHighlight:!1,foldingImportsByDefault:!1,links:!1,fontSize:14,wordWrap:"on",automaticLayout:!0},U=["light","vs-dark"];import R from"react";var Q={conso:"le.log($1)","new P":`romise((resolve, reject) => {
11
11
  $1
12
12
  })`,"new A":"rray","new S":"et","throw n":"ew Error($1)",setTimeout:`(() => {
13
13
  $1
@@ -15,9 +15,15 @@ ${c}
15
15
  $1
16
16
  }, $2)`,"async f":`unction $1() {
17
17
  $2
18
- }$0`,"async (":`) => {
18
+ }`,"async (":`) => {
19
19
  $1
20
- }$0`,"async =>":` {
20
+ }`,"async =>":` {
21
21
  $1
22
- }$0`,") =>":" {","=>":" {","new M":"ap","new W":"eakMap"};var z=[{language:"javascript",snippets:Q}];var A=class{constructor(){this.predictions=new Map,this.loadPredictions()}loadPredictions(){z.forEach(o=>{this.predictions.set(o.language,o.snippets)})}predictCode(o,t){let n=this.predictions.get(o);if(!n)return"";t=t.split("").reverse().join("");for(let r in n)if(t.startsWith(r.split("").reverse().join("")))return n[r];return""}};var K=(e,o)=>e[o]||"",S=e=>{let o=e.split(`
23
- `);return o[o.length-1].length};var Y=(e,o)=>{let t=o.getLineContent(e.lineNumber),n=e.column-1,r=t.substring(n);return/\s/.test(r)},J=(e,o)=>{let t=new Set(['"',"'","}","]",")",","," ",":","."]),n=o.getLineContent(e.lineNumber),r=K(n,e.column-1);return!t.has(r)&&!!r},h=(e,o)=>{let t=o.getValueInRange({startLineNumber:1,startColumn:1,endLineNumber:e.lineNumber,endColumn:e.column}),n=o.getValueInRange({startLineNumber:e.lineNumber,startColumn:e.column,endLineNumber:o.getLineCount(),endColumn:o.getLineMaxColumn(o.getLineCount())});return{codeBeforeCursor:t,codeAfterCursor:n}},X=(e,o)=>{let t=o.getLineContent(e.lineNumber),n=t.slice(e.column-1).trim(),r=t.slice(0,e.column-1).trim();return e.column<=3&&(n!==""||r!=="")},Z=(e,o)=>{let{lineNumber:t,column:n}=e,r=o.getLineContent(t),a=r.slice(0,n-1).trim(),i=r.slice(n-1).trim(),u=a.length>0,g=i.length>0;return u&&g?"fill-in-the-middle":"completion"};var ee={javascript:1,typescript:2,typescriptreact:3,python:4,vue:5,php:6,dart:7,javascriptreact:8,go:9,css:10,cpp:11,html:12,scss:13,markdown:14,csharp:15,java:16,json:17,rust:18,ruby:19,c:20},x={" ":1,"!":2,'"':3,"#":4,$:5,"%":6,"&":7,"'":8,"(":9,")":10,"*":11,"+":12,",":13,"-":14,".":15,"/":16,0:17,1:18,2:19,3:20,4:21,5:22,6:23,7:24,8:25,9:26,":":27,";":28,"<":29,"=":30,">":31,"?":32,"@":33,A:34,B:35,C:36,D:37,E:38,F:39,G:40,H:41,I:42,J:43,K:44,L:45,M:46,N:47,O:48,P:49,Q:50,R:51,S:52,T:53,U:54,V:55,W:56,X:57,Y:58,Z:59,"[":60,"\\":61,"]":62,"^":63,_:64,"`":65,a:66,b:67,c:68,d:69,e:70,f:71,g:72,h:73,i:74,j:75,k:76,l:77,m:78,n:79,o:80,p:81,q:82,r:83,s:84,t:85,u:86,v:87,w:88,x:89,y:90,z:91,"{":92,"|":93,"}":94,"~":95},f=[.9978708359643611,.7001905605239328,-.1736749244124868,-.22994157947320112,.13406692641682572,-.007751370662011853,.0057783222035240715,.41910878254476003,-.1621657125711092,.13770814958908187,-.06036011308184006,-.07351180985800129,0,-.05584878151248109,.30618794079412015,-.1282197982598485,.10951859303997555,.1700461782788777,-.3346057842644757,.22497985923128136,0,-.44038101825774356,-.6540115939236782,.16595600081341702,.20733910722385135,-.1337033766105696,-.06923072125290894,-.05806684191976292,.3583334671633344,-.47357732824944315,.17810871365594377,.42268219963946685,0,0,-.16379620467004602,-.43893868831061167,0,.11570094006709251,.9326431262654882,-.9990110509203912,-.44125275652726503,-.15840786997162004,-.4600396256644451,-.018814811994044403,.09230944537175266,.025814790934742798,-1.0940162204190154,-.9407503631235489,-.9854303778694269,-1.1045822488262245,-1.1417299456573262,-1.5623704405345513,-.4157473855795939,-1.0244257735561713,-.7477401944601753,-1.1275109699068402,-.0714715633552533,-1.1408628006786907,-1.0409898655074672,-.2288889836518878,-.5469549893760344,-.181946611106845,.1264329316374918,0,0,.312206968554707,-.3656436392517924,.23655650686038968,.1014912419901576,0,.06287549221765308,0,0,.19027065218932154,-.8519502045974378,0,.23753599905971923,.2488809322489166,.019969251907983224,0,.06916505526229488,.29053356359188204,-.14484456555431657,.014768129429370188,-.15051464926341374,.07614835502776021,-.3317489901313935,0,0,.04921938684669103,-.28248576768353445,-.9708816204525345,-1.3560464522265527,.014165375212383239,-.23924166472544983,.10006595730248855,.09867233147279562,.32330430333220644,-.058625706114180595,.17149853105783947,.4436484054395367,.047189049576707255,.16832520944790552,.1117259900942179,-.35469010329927253,0,-.1528189124465582,-.3804848349564939,.07278077320753953,.13263786480064088,.22920682659292527,1.1512955314336537,0,.016939862282340023,.4242994650403408,.12759835577444986,-.5577261135825583,-.19764560943067672,-.4042102444736004,.12063461617733708,-.2933966817484834,.2715683893968593,0,-.7138548251238751,0,-.023066228703035277,0,-.06383043976746139,.09683723720709651,-.7337151424080791,0,-.27191370124625525,.2819781269656171,-.08711496549050252,.11048604909969338,-.0934849550450534,.0721001250772912,.2589126797890794,.6729582659532254,-.21921032738244908,-.21535277468651456,-.45474006124091354,-.05861820126419139,-.007875306207720204,-.056661261678809284,.17727881404222662,.23603713348534658,.17485861412377932,-.5737483768696752,-.38220029570342745,-.5202722985519168,-.37187947527657256,.47155277792990113,-.12077912346691123,.47825628981545326,.4736704404000214,-.1615218651546898,.18362447973513005,0,0,-.18183417425866824,0,0,-.2538532305733833,-.1303692690676528,-.4073577969188216,.04172985870928789,-.1704527388573901,0,0,.7536858953385828,-.44703159588787644,0,-.7246484085580873,-.21378128540782063,0,.037461090552656146,-.16205852364367032,-.10973952064404884,.017468043407647377,-.1288980387397392,0,0,0,-1.218692715379445,.05536949662193305,-.3763799844799116,-.1845001725624579,-.1615576298149558,0,-.15373262203249874,-.04603412604270418,0,-.3068149681460828,.09412352468269412,0,.09116543650609721,.06065865264082559,.05688267379386188,-.05873945477722306,0,.14532465133322153,.1870857769705463,.36304258043185555,.1411392422180405,.0630388629716367,0,-1.1170522012450395,.16133697772771127,.15908534390781448,-.23485453704002232,-.1419980841417892,.21909510179526218,.39948420260153766,.40802294284289187,.15403767653746853,0,.19764784115096676,.584914157527457,0,-.4573883817015294],oe=-.3043572714994554,te=.15;var j=class{constructor(){this.previousLabel=0,this.previousLabelTimestamp=Date.now()-3600*1e3,this.probabilityAccept=0}},ne=e=>{let o=new j,t=o.previousLabel,n=0;e.properties.afterCursorWhitespace==="true"&&(n=1);let r=(Date.now()-o.previousLabelTimestamp)/1e3,a=Math.log(1+r),i=0,u=0,g=0,s=0;if(e.prefix){i=Math.log(1+S(e.prefix));let F=e.prefix.slice(-1);u=x[F]??0}let d=e.prefix?.trimEnd();if(d){g=Math.log(1+S(d));let F=d.slice(-1);s=x[F]??0}let c=e.measurements.documentLength?Math.log(1+e.measurements.documentLength):0,k=e.measurements.promptEndPos?Math.log(1+e.measurements.promptEndPos):0,R=e.measurements.promptEndPos&&e.measurements.documentLength?(e.measurements.promptEndPos+.5)/(1+e.measurements.documentLength):0,y=e.properties.languageId?ee[e.properties.languageId]:0,p=oe;p+=f[0]*t+f[1]*n+f[2]*a,p+=f[3]*i+f[4]*g,p+=f[5]*c+f[6]*k,p+=f[7]*R,p+=f[8+y],p+=f[29+u],p+=f[125+s];let m=1/(1+Math.exp(-p));return o.probabilityAccept=m,m};var re=(e,o,t)=>le(e,o,t)>te&&!J(e,o)&&!X(e,o),le=(e,o,t)=>{let{codeBeforeCursor:n}=h(e,o),r=Y(e,o),a=o.getValueLength(),i=o.getOffsetAt(e);return ne({properties:{afterCursorWhitespace:r?"true":"false",languageId:t},measurements:{documentLength:a,promptEndPos:i},prefix:n})};var ie=async({filename:e,endpoint:o,code:t,language:n,technologies:r,externalContext:a,model:i,position:u,token:g})=>{if(!re(u,i,n)||!t)return null;let s=new AbortController;if(g.isCancellationRequested)return s.abort(),null;let{completion:d,error:c}=await E.POST(o,{completionMetadata:Fe({filename:e,position:u,model:i,language:n,technologies:r,externalContext:a})},{headers:{"Content-Type":"application/json"},error:"Error while fetching completion item",signal:s.signal});return c||!d?null:d},Fe=({filename:e,position:o,model:t,language:n,technologies:r,externalContext:a})=>{let i=Z(o,t),{codeBeforeCursor:u,codeAfterCursor:g}=h(o,t);return{filename:e,language:n,technologies:r,externalContext:a,codeBeforeCursor:u,codeAfterCursor:g,editorState:{completionMode:i}}},ae=(e,o)=>{let{codeBeforeCursor:t}=h(e,o);return`${e.lineNumber}:${e.column}:${t}`};import T from"react";var me=(e,o=1e3)=>{let t=T.useRef(null),n=T.useCallback((...r)=>(t.current&&clearTimeout(t.current),new Promise((a,i)=>{t.current=setTimeout(()=>{e(...r).then(a).catch(i)},o)})),[e,o]);return T.useEffect(()=>()=>{t.current&&clearTimeout(t.current)},[]),n},ue=me;var Be=new A,he=(e,o,t,n,r,a,i)=>{let u=L.useRef(new Map),g=L.useRef(!1),s=ue(ie,r==="little-faster"?350:600);return L.useEffect(()=>{if(!i||!n||!o)return;let d=i.languages.registerInlineCompletionsProvider(n,{provideInlineCompletions:async(c,k,R,y)=>{if(g.current)return g.current=!1,{items:[]};let p=c.getValue(),m=new i.Range(k.lineNumber,k.column,k.lineNumber,k.column),F=ae(k,c);if(u.current.has(F)){let l=u.current.get(F);if(g.current=!0,l)return{items:[l],enableForwardStability:!0}}let q=Be.predictCode(n,p);if(q){let l={insertText:{snippet:q},range:m,completeBracketPairs:!0};return u.current.set(F,l),{items:[l],enableForwardStability:!0}}if(y.isCancellationRequested)return{items:[]};try{let l=await s({filename:e,endpoint:o,code:p,language:n,technologies:t,externalContext:a,model:c,position:k,token:y});if(l){let H={insertText:l,range:m};return u.current.set(F,H),g.current=!0,{items:[H],enableForwardStability:!0}}}catch{return{items:[]}}return{items:[]}},freeInlineCompletions:()=>{}});return()=>{d.dispose()}},[i,n,t,a,s,o,e]),null},de=he;var ge={"codesandbox-dark":{base:"vs-dark",inherit:!0,rules:[{token:"string",foreground:"BFD084"},{token:"punctuation.definition.string",foreground:"BFD084"},{token:"constant.character.escape",foreground:"BFD084"},{token:"text.html constant.character.entity.named",foreground:"BFD084"},{token:"text.html.derivative",foreground:"E5E5E5"},{token:"punctuation.definition.entity.html",foreground:"BFD084"},{token:"template.expression.begin",foreground:"7AD9FB"},{token:"template.expression.end",foreground:"7AD9FB"},{token:"punctuation.definition.template-expression.begin",foreground:"7AD9FB"},{token:"punctuation.definition.template-expression.end",foreground:"7AD9FB"},{token:"constant",foreground:"7AD9FB"},{token:"keyword",foreground:"A390FF"},{token:"modifier",foreground:"A390FF"},{token:"storage",foreground:"A390FF"},{token:"punctuation.definition.block",foreground:"86897A"},{token:"punctuation.definition.parameters",foreground:"86897A"},{token:"meta.brace.round",foreground:"86897A"},{token:"meta.jsx.children",foreground:"E5E5E5"},{token:"punctuation.accessor",foreground:"86897A"},{token:"variable.other",foreground:"FFFFFF"},{token:"variable.parameter",foreground:"FFFFFF"},{token:"meta.embedded",foreground:"E5E5E5"},{token:"source.groovy.embedded",foreground:"E5E5E5"},{token:"meta.template.expression",foreground:"E5E5E5"},{token:"comment",foreground:"6F6F6F"},{token:"docblock",foreground:"6F6F6F"},{token:"meta.function-call",foreground:"CDF861"},{token:"meta.class entity.name.type.class",foreground:"FFFFFF",fontStyle:"underline"},{token:"meta.class entity.name.type.module",foreground:"CABEFF"},{token:"meta.class meta.type.annotation",foreground:"A390FF"},{token:"meta.class support.type.primitive",foreground:"A390FF"},{token:"meta.interface support.type.primitive",foreground:"A390FF"},{token:"meta.type.annotation support.type.primitive",foreground:"A390FF"},{token:"meta.type.annotation entity.name.type",foreground:"CABEFF"},{token:"variable.object.property",foreground:"FFFFFF"},{token:"entity.name.function",foreground:"CDF861"},{token:"meta.definition.variable",foreground:"FFFFFF"},{token:"modifier",foreground:"A390FF"},{token:"variable.language.this",foreground:"A390FF"},{token:"support.type.object",foreground:"A390FF"},{token:"support.module",foreground:"7AD9FB",fontStyle:"italic"},{token:"support.node",foreground:"7AD9FB",fontStyle:"italic"},{token:"support.type.ts",foreground:"7AD9FB"},{token:"entity.other.inherited-class",foreground:"7AD9FB"},{token:"meta.interface entity.name.type.interface",foreground:"7AD9FB"},{token:"keyword.operator",foreground:"B3E8B4"},{token:"storage.type.function.arrow",foreground:"B3E8B4"},{token:"variable.css",foreground:"7AD9FB"},{token:"source.css",foreground:"CDF861"},{token:"entity.other.attribute-name",foreground:"CDF861"},{token:"entity.name.tag.css",foreground:"CDF861"},{token:"entity.other.attribute-name.id",foreground:"CDF861"},{token:"entity.other.attribute-name.class",foreground:"CDF861"},{token:"source.css meta.selector.css",foreground:"CDF861"},{token:"support.type.property-name.css",foreground:"FFFFFF"},{token:"support.function.css",foreground:"A390FF"},{token:"support.constant.css",foreground:"A390FF"},{token:"keyword.css",foreground:"A390FF"},{token:"constant.numeric.css",foreground:"A390FF"},{token:"constant.other.color.css",foreground:"A390FF"},{token:"punctuation.section",foreground:"86897A"},{token:"punctuation.separator",foreground:"86897A"},{token:"punctuation.definition.entity.css",foreground:"86897A"},{token:"punctuation.terminator.rule.css",foreground:"E5E5E5"},{token:"source.css keyword.other.unit",foreground:"CABEFF"},{token:"string.css",foreground:"CABEFF"},{token:"punctuation.definition.string.css",foreground:"CABEFF"},{token:"support.type.property-name",foreground:"FFFFFF"},{token:"string.html",foreground:"CDF861"},{token:"punctuation.definition.tag",foreground:"86897A"},{token:"entity.other.attribute-name",foreground:"CABEFF"},{token:"entity.name.tag",foreground:"A390FF"},{token:"entity.name.tag.wildcard",foreground:"CDF861"},{token:"markup.markdown",foreground:"FFFFFF"},{token:"markup.heading.markdown",foreground:"B3E8B4"},{token:"punctuation.definition.bold.markdown",foreground:"B3E8B4"},{token:"meta.paragraph.markdown punctuation.definition.link.description",foreground:"B3E8B4"},{token:"punctuation.definition.raw.markdown",foreground:"B3E8B4"},{token:"meta.paragraph.markdown",foreground:"E5E5E5"},{token:"text.html.markdown meta.attribute",foreground:"CABEFF"},{token:"entity.name.section",foreground:"FFFFFF"},{token:"string.other",foreground:"FFFFFF"},{token:"string.other.link",foreground:"FFFFFF"},{token:"punctuation.definition.markdown",foreground:"B3E8B4"},{token:"punctuation.definition.string",foreground:"B3E8B4"},{token:"punctuation.definition.string.begin.shell",foreground:"B3E8B4"},{token:"markup.underline.link",foreground:"BFD084"},{token:"markup.inline.raw",foreground:"86897A"},{token:"text.html.vue variable.other.readwrite",foreground:"A390FF"},{token:"text.html.vue meta.object-literal.key",foreground:"FFFFFF"},{token:"text.html.vue entity.name.tag.css",foreground:"A390FF"},{token:"text.html.vue entity.other.attribute-name",foreground:"FFFFFF"},{token:"text.html.vue constant.numeric.css",foreground:"7AD9FB"},{token:"text.html.vue keyword.other.unit",foreground:"A390FF"},{token:"text.html.vue support.constant.property-value",foreground:"A390FF"},{token:"text.html.vue support.constant.color",foreground:"A390FF"},{token:"function.defaultLibrary"},{token:"class.defaultLibrary"}],colors:{foreground:"#E5E5E5",focusBorder:"#AD9CFF","selection.background":"#6F6F6F","scrollbar.shadow":"#0000007E","input.background":"#0F0E0E","input.foreground":"#999","button.background":"#EDFFA5","button.foreground":"#151515","button.hoverBackground":"#DCFF50","textLink.foreground":"#E5E5E5","list.dropBackground":"#151515","list.focusForeground":"#808080","list.focusBackground":"#E5E5E51A","list.highlightForeground":"#E5E5E5","editor.background":"#151515","editorLineNumber.foreground":"#858585","editorLineNumber.activeForeground":"#C6C6C6","scrollbarSlider.background":"#79797966","scrollbarSlider.hoverBackground":"#646464B3","scrollbarSlider.activeBackground":"#BFBFBF66","widget.shadow":"#0000005C","editorWidget.background":"#252526","pickerGroup.border":"#3F3F46","pickerGroup.foreground":"#3794FF",errorForeground:"#F48771","editorError.foreground":"#F48771","editorWarning.foreground":"#F7CC66"}},"dracula-soft":{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"header",foreground:"BF9EEE"},{token:"meta.diff",foreground:"7B7F8B"},{token:"meta.diff.header",foreground:"7B7F8B"},{token:"markup.inserted",foreground:"62E884"},{token:"markup.deleted",foreground:"EE6666"},{token:"markup.changed",foreground:"FFB86C"},{token:"invalid",foreground:"EE6666",fontStyle:"underline italic"},{token:"invalid.deprecated",foreground:"F6F6F4",fontStyle:"underline italic"},{token:"entity.name.filename",foreground:"E7EE98"},{token:"markup.error",foreground:"EE6666"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.bold",foreground:"FFB86C",fontStyle:"bold"},{token:"markup.heading",foreground:"BF9EEE",fontStyle:"bold"},{token:"markup.italic",foreground:"E7EE98",fontStyle:"italic"},{token:"beginning.punctuation.definition.list.markdown",foreground:"97E1F1"},{token:"beginning.punctuation.definition.quote.markdown",foreground:"97E1F1"},{token:"punctuation.definition.link.restructuredtext",foreground:"97E1F1"},{token:"markup.inline.raw",foreground:"62E884"},{token:"markup.raw.restructuredtext",foreground:"62E884"},{token:"markup.underline.link",foreground:"97E1F1"},{token:"markup.underline.link.image",foreground:"97E1F1"},{token:"meta.link.reference.def.restructuredtext",foreground:"F286C4"},{token:"punctuation.definition.directive.restructuredtext",foreground:"F286C4"},{token:"string.other.link.description",foreground:"F286C4"},{token:"string.other.link.title",foreground:"F286C4"},{token:"entity.name.directive.restructuredtext",foreground:"E7EE98",fontStyle:"italic"},{token:"markup.quote",foreground:"E7EE98",fontStyle:"italic"},{token:"meta.separator.markdown",foreground:"7B7F8B"},{token:"fenced_code.block.language",foreground:"62E884"},{token:"markup.raw.inner.restructuredtext",foreground:"62E884"},{token:"markup.fenced_code.block.markdown punctuation.definition.markdown",foreground:"62E884"},{token:"punctuation.definition.constant.restructuredtext",foreground:"BF9EEE"},{token:"markup.heading.markdown punctuation.definition.string.begin",foreground:"BF9EEE"},{token:"markup.heading.markdown punctuation.definition.string.end",foreground:"BF9EEE"},{token:"meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F6F6F4"},{token:"meta.paragraph.markdown punctuation.definition.string.end",foreground:"F6F6F4"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin",foreground:"E7EE98"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end",foreground:"E7EE98"},{token:"entity.name.type.class",foreground:"97E1F1",fontStyle:"normal"},{token:"entity.name.class",foreground:"97E1F1",fontStyle:"normal"},{token:"keyword.expressions-and-types.swift",foreground:"BF9EEE",fontStyle:"italic"},{token:"keyword.other.this",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.language",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.language punctuation.definition.variable.php",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.other.readwrite.instance.ruby",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.parameter.function.language.special",foreground:"BF9EEE",fontStyle:"italic"},{token:"entity.other.inherited-class",foreground:"97E1F1",fontStyle:"italic"},{token:"comment",foreground:"7B7F8B"},{token:"punctuation.definition.comment",foreground:"7B7F8B"},{token:"unused.comment",foreground:"7B7F8B"},{token:"wildcard.comment",foreground:"7B7F8B"},{token:"comment keyword.codetag.notation",foreground:"F286C4"},{token:"comment.block.documentation keyword",foreground:"F286C4"},{token:"comment.block.documentation storage.type.class",foreground:"F286C4"},{token:"comment.block.documentation entity.name.type",foreground:"97E1F1",fontStyle:"italic"},{token:"comment.block.documentation entity.name.type punctuation.definition.bracket",foreground:"97E1F1"},{token:"comment.block.documentation variable",foreground:"FFB86C",fontStyle:"italic"},{token:"constant",foreground:"BF9EEE"},{token:"variable.other.constant",foreground:"BF9EEE"},{token:"constant.character.escape",foreground:"F286C4"},{token:"constant.character.string.escape",foreground:"F286C4"},{token:"constant.regexp",foreground:"F286C4"},{token:"entity.name.tag",foreground:"F286C4"},{token:"entity.other.attribute-name.parent-selector",foreground:"F286C4"},{token:"entity.other.attribute-name",foreground:"62E884",fontStyle:"italic"},{token:"entity.name.function",foreground:"62E884"},{token:"meta.function-call.object",foreground:"62E884"},{token:"meta.function-call.php",foreground:"62E884"},{token:"meta.function-call.static",foreground:"62E884"},{token:"meta.method-call.java meta.method",foreground:"62E884"},{token:"meta.method.groovy",foreground:"62E884"},{token:"support.function.any-method.lua",foreground:"62E884"},{token:"keyword.operator.function.infix",foreground:"62E884"},{token:"entity.name.variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.function variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.mixin variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.function.arguments variable.other.php",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql",foreground:"FFB86C",fontStyle:"italic"},{token:"variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.decorator variable.other.readwrite",foreground:"62E884",fontStyle:"italic"},{token:"meta.decorator variable.other.property",foreground:"62E884",fontStyle:"italic"},{token:"meta.decorator variable.other.object",foreground:"62E884"},{token:"keyword",foreground:"F286C4"},{token:"punctuation.definition.keyword",foreground:"F286C4"},{token:"keyword.control.new",fontStyle:"bold"},{token:"keyword.operator.new",fontStyle:"bold"},{token:"meta.selector",foreground:"F286C4"},{token:"support",foreground:"97E1F1",fontStyle:"italic"},{token:"support.function.magic",foreground:"BF9EEE",fontStyle:"regular"},{token:"support.variable",foreground:"BF9EEE",fontStyle:"regular"},{token:"variable.other.predefined",foreground:"BF9EEE",fontStyle:"regular"},{token:"support.function",fontStyle:"regular"},{token:"support.type.property-name",fontStyle:"regular"},{token:"constant.other.symbol.hashkey punctuation.definition.constant.ruby",foreground:"F286C4"},{token:"entity.other.attribute-name.placeholder punctuation",foreground:"F286C4"},{token:"entity.other.attribute-name.pseudo-class punctuation",foreground:"F286C4"},{token:"entity.other.attribute-name.pseudo-element punctuation",foreground:"F286C4"},{token:"meta.group.double.toml",foreground:"F286C4"},{token:"meta.group.toml",foreground:"F286C4"},{token:"meta.object-binding-pattern-variable punctuation.destructuring",foreground:"F286C4"},{token:"punctuation.colon.graphql",foreground:"F286C4"},{token:"punctuation.definition.block.scalar.folded.yaml",foreground:"F286C4"},{token:"punctuation.definition.block.scalar.literal.yaml",foreground:"F286C4"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"F286C4"},{token:"punctuation.definition.entity.other.inherited-class",foreground:"F286C4"},{token:"punctuation.function.swift",foreground:"F286C4"},{token:"punctuation.separator.dictionary.key-value",foreground:"F286C4"},{token:"punctuation.separator.hash",foreground:"F286C4"},{token:"punctuation.separator.inheritance",foreground:"F286C4"},{token:"punctuation.separator.key-value",foreground:"F286C4"},{token:"punctuation.separator.key-value.mapping.yaml",foreground:"F286C4"},{token:"punctuation.separator.namespace",foreground:"F286C4"},{token:"punctuation.separator.pointer-access",foreground:"F286C4"},{token:"punctuation.separator.slice",foreground:"F286C4"},{token:"string.unquoted.heredoc punctuation.definition.string",foreground:"F286C4"},{token:"support.other.chomping-indicator.yaml",foreground:"F286C4"},{token:"punctuation.separator.annotation",foreground:"F286C4"},{token:"keyword.operator.other.powershell",foreground:"F6F6F4"},{token:"keyword.other.statement-separator.powershell",foreground:"F6F6F4"},{token:"meta.brace.round",foreground:"F6F6F4"},{token:"meta.function-call punctuation",foreground:"F6F6F4"},{token:"punctuation.definition.arguments.begin",foreground:"F6F6F4"},{token:"punctuation.definition.arguments.end",foreground:"F6F6F4"},{token:"punctuation.definition.entity.begin",foreground:"F6F6F4"},{token:"punctuation.definition.entity.end",foreground:"F6F6F4"},{token:"punctuation.definition.tag.cs",foreground:"F6F6F4"},{token:"punctuation.definition.type.begin",foreground:"F6F6F4"},{token:"punctuation.definition.type.end",foreground:"F6F6F4"},{token:"punctuation.section.scope.begin",foreground:"F6F6F4"},{token:"punctuation.section.scope.end",foreground:"F6F6F4"},{token:"punctuation.terminator.expression.php",foreground:"F6F6F4"},{token:"storage.type.generic.java",foreground:"F6F6F4"},{token:"string.template meta.brace",foreground:"F6F6F4"},{token:"string.template punctuation.accessor",foreground:"F6F6F4"},{token:"meta.string-contents.quoted.double punctuation.definition.variable",foreground:"F286C4"},{token:"punctuation.definition.interpolation.begin",foreground:"F286C4"},{token:"punctuation.definition.interpolation.end",foreground:"F286C4"},{token:"punctuation.definition.template-expression.begin",foreground:"F286C4"},{token:"punctuation.definition.template-expression.end",foreground:"F286C4"},{token:"punctuation.section.embedded.begin",foreground:"F286C4"},{token:"punctuation.section.embedded.coffee",foreground:"F286C4"},{token:"punctuation.section.embedded.end",foreground:"F286C4"},{token:"punctuation.section.embedded.end source.php",foreground:"F286C4"},{token:"punctuation.section.embedded.end source.ruby",foreground:"F286C4"},{token:"punctuation.definition.variable.makefile",foreground:"F286C4"},{token:"entity.name.function.target.makefile",foreground:"97E1F1"},{token:"entity.name.section.toml",foreground:"97E1F1"},{token:"entity.name.tag.yaml",foreground:"97E1F1"},{token:"variable.other.key.toml",foreground:"97E1F1"},{token:"constant.other.date",foreground:"FFB86C"},{token:"constant.other.timestamp",foreground:"FFB86C"},{token:"variable.other.alias.yaml",foreground:"62E884",fontStyle:"italic underline"},{token:"storage",foreground:"F286C4",fontStyle:"regular"},{token:"meta.implementation storage.type.objc",foreground:"F286C4",fontStyle:"regular"},{token:"meta.interface-or-protocol storage.type.objc",foreground:"F286C4",fontStyle:"regular"},{token:"source.groovy storage.type.def",foreground:"F286C4",fontStyle:"regular"},{token:"entity.name.type",foreground:"97E1F1",fontStyle:"italic"},{token:"keyword.primitive-datatypes.swift",foreground:"97E1F1",fontStyle:"italic"},{token:"keyword.type.cs",foreground:"97E1F1",fontStyle:"italic"},{token:"meta.protocol-list.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"meta.return-type.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"source.go storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.groovy storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.java storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.powershell entity.other.attribute-name",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.class.std.rust",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.attribute.swift",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.c",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.core.rust",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.cs",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.groovy",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.php",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.haskell",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.ocaml",foreground:"97E1F1",fontStyle:"italic"},{token:"entity.name.type.type-parameter",foreground:"FFB86C"},{token:"meta.indexer.mappedtype.declaration entity.name.type",foreground:"FFB86C"},{token:"meta.type.parameters entity.name.type",foreground:"FFB86C"},{token:"storage.modifier",foreground:"F286C4"},{token:"string.regexp",foreground:"E7EE98"},{token:"constant.other.character-class.set.regexp",foreground:"E7EE98"},{token:"constant.character.escape.backslash.regexp",foreground:"E7EE98"},{token:"punctuation.definition.group.capture.regexp",foreground:"F286C4"},{token:"string.regexp punctuation.definition.string.begin",foreground:"EE6666"},{token:"string.regexp punctuation.definition.string.end",foreground:"EE6666"},{token:"punctuation.definition.character-class.regexp",foreground:"97E1F1"},{token:"punctuation.definition.group.regexp",foreground:"FFB86C"},{token:"punctuation.definition.group.assertion.regexp",foreground:"EE6666"},{token:"keyword.operator.negation.regexp",foreground:"EE6666"},{token:"meta.assertion.look-ahead.regexp",foreground:"62E884"},{token:"string",foreground:"E7EE98"},{token:"punctuation.definition.string.begin",foreground:"DEE492"},{token:"punctuation.definition.string.end",foreground:"DEE492"},{token:"punctuation.support.type.property-name.begin",foreground:"97E2F2"},{token:"punctuation.support.type.property-name.end",foreground:"97E2F2"},{token:"string.quoted.docstring.multi",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.begin",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.end",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python constant.character.escape",foreground:"7B7F8B"},{token:"variable",foreground:"F6F6F4"},{token:"constant.other.key.perl",foreground:"F6F6F4"},{token:"support.variable.property",foreground:"F6F6F4"},{token:"variable.other.constant.js",foreground:"F6F6F4"},{token:"variable.other.constant.ts",foreground:"F6F6F4"},{token:"variable.other.constant.tsx",foreground:"F6F6F4"},{token:"meta.import variable.other.readwrite",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.variable.assignment.destructured.object.coffee variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.import variable.other.readwrite.alias",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.export variable.other.readwrite.alias",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.variable.assignment.destructured.object.coffee variable variable",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.selectionset.graphql variable",foreground:"E7EE98"},{token:"meta.selectionset.graphql meta.arguments variable",foreground:"F6F6F4"},{token:"entity.name.fragment.graphql",foreground:"97E1F1"},{token:"variable.fragment.graphql",foreground:"97E1F1"},{token:"constant.other.symbol.hashkey.ruby",foreground:"F6F6F4"},{token:"keyword.operator.dereference.java",foreground:"F6F6F4"},{token:"keyword.operator.navigation.groovy",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell punctuation.definition.string.begin",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell punctuation.definition.string.end",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell string",foreground:"F6F6F4"},{token:"storage.modifier.import",foreground:"F6F6F4"},{token:"punctuation.section.embedded.begin.tsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.end.tsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.begin.jsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.end.jsx",foreground:"F6F6F4"},{token:"punctuation.separator.list.comma.css",foreground:"F6F6F4"},{token:"constant.language.empty-list.haskell",foreground:"F6F6F4"},{token:"source.shell variable.other",foreground:"BF9EEE"},{token:"support.constant",foreground:"BF9EEE",fontStyle:"normal"},{token:"meta.scope.prerequisites.makefile",foreground:"E7EE98"},{token:"meta.attribute-selector.scss",foreground:"E7EE98"},{token:"punctuation.definition.attribute-selector.end.bracket.square.scss",foreground:"F6F6F4"},{token:"punctuation.definition.attribute-selector.begin.bracket.square.scss",foreground:"F6F6F4"},{token:"meta.preprocessor.haskell",foreground:"7B7F8B"},{token:"log.error",foreground:"EE6666",fontStyle:"bold"},{token:"log.warning",foreground:"E7EE98",fontStyle:"bold"}],colors:{focusBorder:"#7B7F8B",foreground:"#F6F6F4","selection.background":"#BF9EEE",errorForeground:"#EE6666","button.background":"#44475A","button.foreground":"#F6F6F4","dropdown.background":"#343746","dropdown.border":"#191A21","dropdown.foreground":"#F6F6F4","input.background":"#282A36","input.foreground":"#F6F6F4","input.border":"#191A21","input.placeholderForeground":"#7B7F8B","inputOption.activeBorder":"#BF9EEE","inputValidation.infoBorder":"#F286C4","inputValidation.warningBorder":"#FFB86C","inputValidation.errorBorder":"#EE6666","badge.foreground":"#F6F6F4","badge.background":"#44475A","progressBar.background":"#F286C4","list.activeSelectionBackground":"#44475A","list.activeSelectionForeground":"#F6F6F4","list.dropBackground":"#44475A","list.focusBackground":"#44475A75","list.highlightForeground":"#97E1F1","list.hoverBackground":"#44475A75","list.inactiveSelectionBackground":"#44475A75","editor.foreground":"#F6F6F4","editor.background":"#282A36","editorLineNumber.foreground":"#7B7F8B","editor.selectionBackground":"#44475A","editor.selectionHighlightBackground":"#424450","editor.wordHighlightBackground":"#8BE9FD50","editor.wordHighlightStrongBackground":"#50FA7B50","editor.findMatchBackground":"#FFB86C80","editor.findMatchHighlightBackground":"#FFFFFF40","editor.findRangeHighlightBackground":"#44475A75","editor.hoverHighlightBackground":"#8BE9FD50","editor.lineHighlightBorder":"#44475A","editorLink.activeForeground":"#97E1F1","editor.rangeHighlightBackground":"#BD93F915","editorWhitespace.foreground":"#FFFFFF1A","editorIndentGuide.background":"#FFFFFF1A","editorRuler.foreground":"#FFFFFF1A","editorCodeLens.foreground":"#7B7F8B","editorOverviewRuler.border":"#191A21","editorError.foreground":"#EE6666","editorWarning.foreground":"#97E1F1","diffEditor.insertedTextBackground":"#50FA7B20","diffEditor.removedTextBackground":"#FF555550","editorWidget.background":"#262626","editorSuggestWidget.background":"#262626","editorSuggestWidget.foreground":"#F6F6F4","editorSuggestWidget.selectedBackground":"#44475A","editorHoverWidget.background":"#282A36","editorHoverWidget.border":"#7B7F8B","editorMarkerNavigation.background":"#262626","peekView.border":"#44475A","peekViewEditor.background":"#282A36","peekViewEditor.matchHighlightBackground":"#F1FA8C80","peekViewResult.background":"#262626","peekViewResult.fileForeground":"#F6F6F4","peekViewResult.lineForeground":"#F6F6F4","peekViewResult.matchHighlightBackground":"#F1FA8C80","peekViewResult.selectionBackground":"#44475A","peekViewResult.selectionForeground":"#F6F6F4","peekViewTitle.background":"#191A21","peekViewTitleDescription.foreground":"#7B7F8B","peekViewTitleLabel.foreground":"#F6F6F4","editorOverviewRuler.currentContentForeground":"#62E884","editorOverviewRuler.incomingContentForeground":"#BF9EEE","pickerGroup.border":"#BF9EEE","pickerGroup.foreground":"#97E1F1"}},dracula:{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"header",foreground:"BD93F9"},{token:"meta.diff",foreground:"6272A4"},{token:"meta.diff.header",foreground:"6272A4"},{token:"markup.inserted",foreground:"50FA7B"},{token:"markup.deleted",foreground:"FF5555"},{token:"markup.changed",foreground:"FFB86C"},{token:"invalid",foreground:"FF5555",fontStyle:"underline italic"},{token:"invalid.deprecated",foreground:"F8F8F2",fontStyle:"underline italic"},{token:"entity.name.filename",foreground:"F1FA8C"},{token:"markup.error",foreground:"FF5555"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.bold",foreground:"FFB86C",fontStyle:"bold"},{token:"markup.heading",foreground:"BD93F9",fontStyle:"bold"},{token:"markup.italic",foreground:"F1FA8C",fontStyle:"italic"},{token:"beginning.punctuation.definition.list.markdown",foreground:"8BE9FD"},{token:"beginning.punctuation.definition.quote.markdown",foreground:"8BE9FD"},{token:"punctuation.definition.link.restructuredtext",foreground:"8BE9FD"},{token:"markup.inline.raw",foreground:"50FA7B"},{token:"markup.raw.restructuredtext",foreground:"50FA7B"},{token:"markup.underline.link",foreground:"8BE9FD"},{token:"markup.underline.link.image",foreground:"8BE9FD"},{token:"meta.link.reference.def.restructuredtext",foreground:"FF79C6"},{token:"punctuation.definition.directive.restructuredtext",foreground:"FF79C6"},{token:"string.other.link.description",foreground:"FF79C6"},{token:"string.other.link.title",foreground:"FF79C6"},{token:"entity.name.directive.restructuredtext",foreground:"F1FA8C",fontStyle:"italic"},{token:"markup.quote",foreground:"F1FA8C",fontStyle:"italic"},{token:"meta.separator.markdown",foreground:"6272A4"},{token:"fenced_code.block.language",foreground:"50FA7B"},{token:"markup.raw.inner.restructuredtext",foreground:"50FA7B"},{token:"markup.fenced_code.block.markdown punctuation.definition.markdown",foreground:"50FA7B"},{token:"punctuation.definition.constant.restructuredtext",foreground:"BD93F9"},{token:"markup.heading.markdown punctuation.definition.string.begin",foreground:"BD93F9"},{token:"markup.heading.markdown punctuation.definition.string.end",foreground:"BD93F9"},{token:"meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F8F8F2"},{token:"meta.paragraph.markdown punctuation.definition.string.end",foreground:"F8F8F2"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F1FA8C"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end",foreground:"F1FA8C"},{token:"entity.name.type.class",foreground:"8BE9FD",fontStyle:"normal"},{token:"entity.name.class",foreground:"8BE9FD",fontStyle:"normal"},{token:"keyword.expressions-and-types.swift",foreground:"BD93F9",fontStyle:"italic"},{token:"keyword.other.this",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.language",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.language punctuation.definition.variable.php",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.other.readwrite.instance.ruby",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.parameter.function.language.special",foreground:"BD93F9",fontStyle:"italic"},{token:"entity.other.inherited-class",foreground:"8BE9FD",fontStyle:"italic"},{token:"comment",foreground:"6272A4"},{token:"punctuation.definition.comment",foreground:"6272A4"},{token:"unused.comment",foreground:"6272A4"},{token:"wildcard.comment",foreground:"6272A4"},{token:"comment keyword.codetag.notation",foreground:"FF79C6"},{token:"comment.block.documentation keyword",foreground:"FF79C6"},{token:"comment.block.documentation storage.type.class",foreground:"FF79C6"},{token:"comment.block.documentation entity.name.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"comment.block.documentation entity.name.type punctuation.definition.bracket",foreground:"8BE9FD"},{token:"comment.block.documentation variable",foreground:"FFB86C",fontStyle:"italic"},{token:"constant",foreground:"BD93F9"},{token:"variable.other.constant",foreground:"BD93F9"},{token:"constant.character.escape",foreground:"FF79C6"},{token:"constant.character.string.escape",foreground:"FF79C6"},{token:"constant.regexp",foreground:"FF79C6"},{token:"entity.name.tag",foreground:"FF79C6"},{token:"entity.other.attribute-name.parent-selector",foreground:"FF79C6"},{token:"entity.other.attribute-name",foreground:"50FA7B",fontStyle:"italic"},{token:"entity.name.function",foreground:"50FA7B"},{token:"meta.function-call.object",foreground:"50FA7B"},{token:"meta.function-call.php",foreground:"50FA7B"},{token:"meta.function-call.static",foreground:"50FA7B"},{token:"meta.method-call.java meta.method",foreground:"50FA7B"},{token:"meta.method.groovy",foreground:"50FA7B"},{token:"support.function.any-method.lua",foreground:"50FA7B"},{token:"keyword.operator.function.infix",foreground:"50FA7B"},{token:"entity.name.variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.function variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.mixin variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.function.arguments variable.other.php",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql",foreground:"FFB86C",fontStyle:"italic"},{token:"variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.decorator variable.other.readwrite",foreground:"50FA7B",fontStyle:"italic"},{token:"meta.decorator variable.other.property",foreground:"50FA7B",fontStyle:"italic"},{token:"meta.decorator variable.other.object",foreground:"50FA7B"},{token:"keyword",foreground:"FF79C6"},{token:"punctuation.definition.keyword",foreground:"FF79C6"},{token:"keyword.control.new",fontStyle:"bold"},{token:"keyword.operator.new",fontStyle:"bold"},{token:"meta.selector",foreground:"FF79C6"},{token:"support",foreground:"8BE9FD",fontStyle:"italic"},{token:"support.function.magic",foreground:"BD93F9",fontStyle:"regular"},{token:"support.variable",foreground:"BD93F9",fontStyle:"regular"},{token:"variable.other.predefined",foreground:"BD93F9",fontStyle:"regular"},{token:"support.function",fontStyle:"regular"},{token:"support.type.property-name",fontStyle:"regular"},{token:"constant.other.symbol.hashkey punctuation.definition.constant.ruby",foreground:"FF79C6"},{token:"entity.other.attribute-name.placeholder punctuation",foreground:"FF79C6"},{token:"entity.other.attribute-name.pseudo-class punctuation",foreground:"FF79C6"},{token:"entity.other.attribute-name.pseudo-element punctuation",foreground:"FF79C6"},{token:"meta.group.double.toml",foreground:"FF79C6"},{token:"meta.group.toml",foreground:"FF79C6"},{token:"meta.object-binding-pattern-variable punctuation.destructuring",foreground:"FF79C6"},{token:"punctuation.colon.graphql",foreground:"FF79C6"},{token:"punctuation.definition.block.scalar.folded.yaml",foreground:"FF79C6"},{token:"punctuation.definition.block.scalar.literal.yaml",foreground:"FF79C6"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"FF79C6"},{token:"punctuation.definition.entity.other.inherited-class",foreground:"FF79C6"},{token:"punctuation.function.swift",foreground:"FF79C6"},{token:"punctuation.separator.dictionary.key-value",foreground:"FF79C6"},{token:"punctuation.separator.hash",foreground:"FF79C6"},{token:"punctuation.separator.inheritance",foreground:"FF79C6"},{token:"punctuation.separator.key-value",foreground:"FF79C6"},{token:"punctuation.separator.key-value.mapping.yaml",foreground:"FF79C6"},{token:"punctuation.separator.namespace",foreground:"FF79C6"},{token:"punctuation.separator.pointer-access",foreground:"FF79C6"},{token:"punctuation.separator.slice",foreground:"FF79C6"},{token:"string.unquoted.heredoc punctuation.definition.string",foreground:"FF79C6"},{token:"support.other.chomping-indicator.yaml",foreground:"FF79C6"},{token:"punctuation.separator.annotation",foreground:"FF79C6"},{token:"keyword.operator.other.powershell",foreground:"F8F8F2"},{token:"keyword.other.statement-separator.powershell",foreground:"F8F8F2"},{token:"meta.brace.round",foreground:"F8F8F2"},{token:"meta.function-call punctuation",foreground:"F8F8F2"},{token:"punctuation.definition.arguments.begin",foreground:"F8F8F2"},{token:"punctuation.definition.arguments.end",foreground:"F8F8F2"},{token:"punctuation.definition.entity.begin",foreground:"F8F8F2"},{token:"punctuation.definition.entity.end",foreground:"F8F8F2"},{token:"punctuation.definition.tag.cs",foreground:"F8F8F2"},{token:"punctuation.definition.type.begin",foreground:"F8F8F2"},{token:"punctuation.definition.type.end",foreground:"F8F8F2"},{token:"punctuation.section.scope.begin",foreground:"F8F8F2"},{token:"punctuation.section.scope.end",foreground:"F8F8F2"},{token:"punctuation.terminator.expression.php",foreground:"F8F8F2"},{token:"storage.type.generic.java",foreground:"F8F8F2"},{token:"string.template meta.brace",foreground:"F8F8F2"},{token:"string.template punctuation.accessor",foreground:"F8F8F2"},{token:"meta.string-contents.quoted.double punctuation.definition.variable",foreground:"FF79C6"},{token:"punctuation.definition.interpolation.begin",foreground:"FF79C6"},{token:"punctuation.definition.interpolation.end",foreground:"FF79C6"},{token:"punctuation.definition.template-expression.begin",foreground:"FF79C6"},{token:"punctuation.definition.template-expression.end",foreground:"FF79C6"},{token:"punctuation.section.embedded.begin",foreground:"FF79C6"},{token:"punctuation.section.embedded.coffee",foreground:"FF79C6"},{token:"punctuation.section.embedded.end",foreground:"FF79C6"},{token:"punctuation.section.embedded.end source.php",foreground:"FF79C6"},{token:"punctuation.section.embedded.end source.ruby",foreground:"FF79C6"},{token:"punctuation.definition.variable.makefile",foreground:"FF79C6"},{token:"entity.name.function.target.makefile",foreground:"8BE9FD"},{token:"entity.name.section.toml",foreground:"8BE9FD"},{token:"entity.name.tag.yaml",foreground:"8BE9FD"},{token:"variable.other.key.toml",foreground:"8BE9FD"},{token:"constant.other.date",foreground:"FFB86C"},{token:"constant.other.timestamp",foreground:"FFB86C"},{token:"variable.other.alias.yaml",foreground:"50FA7B",fontStyle:"italic underline"},{token:"storage",foreground:"FF79C6",fontStyle:"regular"},{token:"meta.implementation storage.type.objc",foreground:"FF79C6",fontStyle:"regular"},{token:"meta.interface-or-protocol storage.type.objc",foreground:"FF79C6",fontStyle:"regular"},{token:"source.groovy storage.type.def",foreground:"FF79C6",fontStyle:"regular"},{token:"entity.name.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"keyword.primitive-datatypes.swift",foreground:"8BE9FD",fontStyle:"italic"},{token:"keyword.type.cs",foreground:"8BE9FD",fontStyle:"italic"},{token:"meta.protocol-list.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"meta.return-type.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.go storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.groovy storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.java storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.powershell entity.other.attribute-name",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.class.std.rust",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.attribute.swift",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.c",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.core.rust",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.cs",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.groovy",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.php",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.haskell",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.ocaml",foreground:"8BE9FD",fontStyle:"italic"},{token:"entity.name.type.type-parameter",foreground:"FFB86C"},{token:"meta.indexer.mappedtype.declaration entity.name.type",foreground:"FFB86C"},{token:"meta.type.parameters entity.name.type",foreground:"FFB86C"},{token:"storage.modifier",foreground:"FF79C6"},{token:"string.regexp",foreground:"F1FA8C"},{token:"constant.other.character-class.set.regexp",foreground:"F1FA8C"},{token:"constant.character.escape.backslash.regexp",foreground:"F1FA8C"},{token:"punctuation.definition.group.capture.regexp",foreground:"FF79C6"},{token:"string.regexp punctuation.definition.string.begin",foreground:"FF5555"},{token:"string.regexp punctuation.definition.string.end",foreground:"FF5555"},{token:"punctuation.definition.character-class.regexp",foreground:"8BE9FD"},{token:"punctuation.definition.group.regexp",foreground:"FFB86C"},{token:"punctuation.definition.group.assertion.regexp",foreground:"FF5555"},{token:"keyword.operator.negation.regexp",foreground:"FF5555"},{token:"meta.assertion.look-ahead.regexp",foreground:"50FA7B"},{token:"string",foreground:"F1FA8C"},{token:"punctuation.definition.string.begin",foreground:"E9F284"},{token:"punctuation.definition.string.end",foreground:"E9F284"},{token:"punctuation.support.type.property-name.begin",foreground:"8BE9FE"},{token:"punctuation.support.type.property-name.end",foreground:"8BE9FE"},{token:"string.quoted.docstring.multi",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.begin",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.end",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python constant.character.escape",foreground:"6272A4"},{token:"variable",foreground:"F8F8F2"},{token:"constant.other.key.perl",foreground:"F8F8F2"},{token:"support.variable.property",foreground:"F8F8F2"},{token:"variable.other.constant.js",foreground:"F8F8F2"},{token:"variable.other.constant.ts",foreground:"F8F8F2"},{token:"variable.other.constant.tsx",foreground:"F8F8F2"},{token:"meta.import variable.other.readwrite",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.variable.assignment.destructured.object.coffee variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.import variable.other.readwrite.alias",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.export variable.other.readwrite.alias",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.variable.assignment.destructured.object.coffee variable variable",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.selectionset.graphql variable",foreground:"F1FA8C"},{token:"meta.selectionset.graphql meta.arguments variable",foreground:"F8F8F2"},{token:"entity.name.fragment.graphql",foreground:"8BE9FD"},{token:"variable.fragment.graphql",foreground:"8BE9FD"},{token:"constant.other.symbol.hashkey.ruby",foreground:"F8F8F2"},{token:"keyword.operator.dereference.java",foreground:"F8F8F2"},{token:"keyword.operator.navigation.groovy",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell punctuation.definition.string.begin",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell punctuation.definition.string.end",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell string",foreground:"F8F8F2"},{token:"storage.modifier.import",foreground:"F8F8F2"},{token:"punctuation.section.embedded.begin.tsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.end.tsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.begin.jsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.end.jsx",foreground:"F8F8F2"},{token:"punctuation.separator.list.comma.css",foreground:"F8F8F2"},{token:"constant.language.empty-list.haskell",foreground:"F8F8F2"},{token:"source.shell variable.other",foreground:"BD93F9"},{token:"support.constant",foreground:"BD93F9",fontStyle:"normal"},{token:"meta.scope.prerequisites.makefile",foreground:"F1FA8C"},{token:"meta.attribute-selector.scss",foreground:"F1FA8C"},{token:"punctuation.definition.attribute-selector.end.bracket.square.scss",foreground:"F8F8F2"},{token:"punctuation.definition.attribute-selector.begin.bracket.square.scss",foreground:"F8F8F2"},{token:"meta.preprocessor.haskell",foreground:"6272A4"},{token:"log.error",foreground:"FF5555",fontStyle:"bold"},{token:"log.warning",foreground:"F1FA8C",fontStyle:"bold"}],colors:{focusBorder:"#6272A4",foreground:"#F8F8F2","selection.background":"#BD93F9",errorForeground:"#FF5555","button.background":"#44475A","button.foreground":"#F8F8F2","dropdown.background":"#343746","dropdown.border":"#191A21","dropdown.foreground":"#F8F8F2","input.background":"#282A36","input.foreground":"#F8F8F2","input.border":"#191A21","input.placeholderForeground":"#6272A4","inputOption.activeBorder":"#BD93F9","inputValidation.infoBorder":"#FF79C6","inputValidation.warningBorder":"#FFB86C","inputValidation.errorBorder":"#FF5555","badge.foreground":"#F8F8F2","badge.background":"#44475A","progressBar.background":"#FF79C6","list.activeSelectionBackground":"#44475A","list.activeSelectionForeground":"#F8F8F2","list.dropBackground":"#44475A","list.focusBackground":"#44475A75","list.highlightForeground":"#8BE9FD","list.hoverBackground":"#44475A75","list.inactiveSelectionBackground":"#44475A75","editor.foreground":"#F8F8F2","editor.background":"#282A36","editorLineNumber.foreground":"#6272A4","editor.selectionBackground":"#44475A","editor.selectionHighlightBackground":"#424450","editor.wordHighlightBackground":"#8BE9FD50","editor.wordHighlightStrongBackground":"#50FA7B50","editor.findMatchBackground":"#FFB86C80","editor.findMatchHighlightBackground":"#FFFFFF40","editor.findRangeHighlightBackground":"#44475A75","editor.hoverHighlightBackground":"#8BE9FD50","editor.lineHighlightBorder":"#44475A","editorLink.activeForeground":"#8BE9FD","editor.rangeHighlightBackground":"#BD93F915","editorWhitespace.foreground":"#FFFFFF1A","editorIndentGuide.background":"#FFFFFF1A","editorRuler.foreground":"#FFFFFF1A","editorCodeLens.foreground":"#6272A4","editorOverviewRuler.border":"#191A21","editorError.foreground":"#FF5555","editorWarning.foreground":"#8BE9FD","diffEditor.insertedTextBackground":"#50FA7B20","diffEditor.removedTextBackground":"#FF555550","editorWidget.background":"#21222C","editorSuggestWidget.background":"#21222C","editorSuggestWidget.foreground":"#F8F8F2","editorSuggestWidget.selectedBackground":"#44475A","editorHoverWidget.background":"#282A36","editorHoverWidget.border":"#6272A4","editorMarkerNavigation.background":"#21222C","peekView.border":"#44475A","peekViewEditor.background":"#282A36","peekViewEditor.matchHighlightBackground":"#F1FA8C80","peekViewResult.background":"#21222C","peekViewResult.fileForeground":"#F8F8F2","peekViewResult.lineForeground":"#F8F8F2","peekViewResult.matchHighlightBackground":"#F1FA8C80","peekViewResult.selectionBackground":"#44475A","peekViewResult.selectionForeground":"#F8F8F2","peekViewTitle.background":"#191A21","peekViewTitleDescription.foreground":"#6272A4","peekViewTitleLabel.foreground":"#F8F8F2","editorOverviewRuler.currentContentForeground":"#50FA7B","editorOverviewRuler.incomingContentForeground":"#BD93F9","pickerGroup.border":"#BD93F9","pickerGroup.foreground":"#8BE9FD"}},"github-dark-dimmed":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"768390"},{token:"punctuation.definition.comment",foreground:"768390"},{token:"string.comment",foreground:"768390"},{token:"constant.other.placeholder",foreground:"F47067"},{token:"constant.character",foreground:"F47067"},{token:"constant",foreground:"6CB6FF"},{token:"entity.name.constant",foreground:"6CB6FF"},{token:"variable.other.constant",foreground:"6CB6FF"},{token:"variable.other.enummember",foreground:"6CB6FF"},{token:"variable.language",foreground:"6CB6FF"},{token:"entity",foreground:"6CB6FF"},{token:"entity.name",foreground:"F69D50"},{token:"meta.export.default",foreground:"F69D50"},{token:"meta.definition.variable",foreground:"F69D50"},{token:"variable.parameter.function",foreground:"ADBAC7"},{token:"meta.jsx.children",foreground:"ADBAC7"},{token:"meta.block",foreground:"ADBAC7"},{token:"meta.tag.attributes",foreground:"ADBAC7"},{token:"entity.name.constant",foreground:"ADBAC7"},{token:"meta.object.member",foreground:"ADBAC7"},{token:"meta.embedded.expression",foreground:"ADBAC7"},{token:"entity.name.function",foreground:"DCBDFB"},{token:"entity.name.tag",foreground:"8DDB8C"},{token:"support.class.component",foreground:"8DDB8C"},{token:"keyword",foreground:"F47067"},{token:"storage",foreground:"F47067"},{token:"storage.type",foreground:"F47067"},{token:"storage.modifier.package",foreground:"ADBAC7"},{token:"storage.modifier.import",foreground:"ADBAC7"},{token:"storage.type.java",foreground:"ADBAC7"},{token:"string",foreground:"96D0FF"},{token:"string punctuation.section.embedded source",foreground:"96D0FF"},{token:"support",foreground:"6CB6FF"},{token:"meta.property-name",foreground:"6CB6FF"},{token:"variable",foreground:"F69D50"},{token:"variable.other",foreground:"ADBAC7"},{token:"invalid.broken",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.illegal",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"FF938A",fontStyle:"italic"},{token:"carriage-return",foreground:"CDD9E5",fontStyle:"italic underline"},{token:"message.error",foreground:"FF938A"},{token:"string variable",foreground:"6CB6FF"},{token:"source.regexp",foreground:"96D0FF"},{token:"string.regexp",foreground:"96D0FF"},{token:"string.regexp.character-class",foreground:"96D0FF"},{token:"string.regexp constant.character.escape",foreground:"96D0FF"},{token:"string.regexp source.ruby.embedded",foreground:"96D0FF"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"96D0FF"},{token:"string.regexp constant.character.escape",foreground:"8DDB8C",fontStyle:"bold"},{token:"support.constant",foreground:"6CB6FF"},{token:"support.variable",foreground:"6CB6FF"},{token:"support.type.property-name.json",foreground:"8DDB8C"},{token:"meta.module-reference",foreground:"6CB6FF"},{token:"punctuation.definition.list.begin.markdown",foreground:"F69D50"},{token:"markup.heading",foreground:"6CB6FF",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"6CB6FF",fontStyle:"bold"},{token:"markup.quote",foreground:"8DDB8C"},{token:"markup.italic",foreground:"ADBAC7",fontStyle:"italic"},{token:"markup.bold",foreground:"ADBAC7",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"6CB6FF"},{token:"markup.deleted",foreground:"FF938A"},{token:"meta.diff.header.from-file",foreground:"FF938A"},{token:"punctuation.definition.deleted",foreground:"FF938A"},{token:"punctuation.section.embedded",foreground:"F47067"},{token:"markup.inserted",foreground:"8DDB8C"},{token:"meta.diff.header.to-file",foreground:"8DDB8C"},{token:"punctuation.definition.inserted",foreground:"8DDB8C"},{token:"markup.changed",foreground:"F69D50"},{token:"punctuation.definition.changed",foreground:"F69D50"},{token:"markup.ignored",foreground:"2D333B"},{token:"markup.untracked",foreground:"2D333B"},{token:"meta.diff.range",foreground:"DCBDFB",fontStyle:"bold"},{token:"meta.diff.header",foreground:"6CB6FF"},{token:"meta.separator",foreground:"6CB6FF",fontStyle:"bold"},{token:"meta.output",foreground:"6CB6FF"},{token:"brackethighlighter.tag",foreground:"768390"},{token:"brackethighlighter.curly",foreground:"768390"},{token:"brackethighlighter.round",foreground:"768390"},{token:"brackethighlighter.square",foreground:"768390"},{token:"brackethighlighter.angle",foreground:"768390"},{token:"brackethighlighter.quote",foreground:"768390"},{token:"brackethighlighter.unmatched",foreground:"FF938A"},{token:"constant.other.reference.link",foreground:"96D0FF"},{token:"string.other.link",foreground:"96D0FF"}],colors:{focusBorder:"#316DCA",foreground:"#ADBAC7",descriptionForeground:"#768390",errorForeground:"#E5534B","textLink.foreground":"#539BF5","textLink.activeForeground":"#539BF5","textBlockQuote.background":"#1C2128","textBlockQuote.border":"#444C56","textCodeBlock.background":"#636E7B66","textPreformat.foreground":"#768390","textSeparator.foreground":"#373E47","button.background":"#347D39","button.foreground":"#FFFFFF","button.hoverBackground":"#46954A","dropdown.background":"#2D333B","dropdown.border":"#444C56","dropdown.foreground":"#ADBAC7","input.background":"#22272E","input.border":"#444C56","input.foreground":"#ADBAC7","input.placeholderForeground":"#636E7B","badge.foreground":"#CDD9E5","badge.background":"#316DCA","progressBar.background":"#316DCA","list.hoverForeground":"#ADBAC7","list.inactiveSelectionForeground":"#ADBAC7","list.activeSelectionForeground":"#ADBAC7","list.hoverBackground":"#636E7B1A","list.inactiveSelectionBackground":"#636E7B66","list.activeSelectionBackground":"#636E7B66","list.focusForeground":"#ADBAC7","list.focusBackground":"#4184E426","list.highlightForeground":"#539BF5","pickerGroup.border":"#444C56","pickerGroup.foreground":"#768390","editor.foreground":"#ADBAC7","editor.background":"#22272E","editorWidget.background":"#2D333B","editor.lineHighlightBackground":"#636E7B1A","editorLineNumber.foreground":"#636E7B","editorLineNumber.activeForeground":"#ADBAC7","editorIndentGuide.background":"#ADBAC71F","editorWhitespace.foreground":"#545D68","editorCursor.foreground":"#539BF5","editor.findMatchBackground":"#966600","editor.findMatchHighlightBackground":"#EAC55F80","editor.selectionHighlightBackground":"#57AB5A40","editor.wordHighlightBackground":"#636E7B80","editor.wordHighlightStrongBackground":"#636E7B4D","editorBracketMatch.background":"#57AB5A40","editorBracketMatch.border":"#57AB5A99","editorInlayHint.background":"#76839033","editorInlayHint.foreground":"#768390","diffEditor.insertedTextBackground":"#57AB5A4D","diffEditor.removedTextBackground":"#F470674D","scrollbar.shadow":"#545D6833","scrollbarSlider.background":"#76839033","scrollbarSlider.hoverBackground":"#7683903D","scrollbarSlider.activeBackground":"#76839047","editorOverviewRuler.border":"#1C2128","peekViewEditor.matchHighlightBackground":"#AE7C1466","peekViewResult.matchHighlightBackground":"#AE7C1466","peekViewEditor.background":"#636E7B1A","peekViewResult.background":"#22272E"}},"github-dark":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"8B949E"},{token:"punctuation.definition.comment",foreground:"8B949E"},{token:"string.comment",foreground:"8B949E"},{token:"constant.other.placeholder",foreground:"FF7B72"},{token:"constant.character",foreground:"FF7B72"},{token:"constant",foreground:"79C0FF"},{token:"entity.name.constant",foreground:"79C0FF"},{token:"variable.other.constant",foreground:"79C0FF"},{token:"variable.other.enummember",foreground:"79C0FF"},{token:"variable.language",foreground:"79C0FF"},{token:"entity",foreground:"79C0FF"},{token:"entity.name",foreground:"FFA657"},{token:"meta.export.default",foreground:"FFA657"},{token:"meta.definition.variable",foreground:"FFA657"},{token:"variable.parameter.function",foreground:"E6EDF3"},{token:"meta.jsx.children",foreground:"E6EDF3"},{token:"meta.block",foreground:"E6EDF3"},{token:"meta.tag.attributes",foreground:"E6EDF3"},{token:"entity.name.constant",foreground:"E6EDF3"},{token:"meta.object.member",foreground:"E6EDF3"},{token:"meta.embedded.expression",foreground:"E6EDF3"},{token:"entity.name.function",foreground:"D2A8FF"},{token:"entity.name.tag",foreground:"7EE787"},{token:"support.class.component",foreground:"7EE787"},{token:"keyword",foreground:"FF7B72"},{token:"storage",foreground:"FF7B72"},{token:"storage.type",foreground:"FF7B72"},{token:"storage.modifier.package",foreground:"E6EDF3"},{token:"storage.modifier.import",foreground:"E6EDF3"},{token:"storage.type.java",foreground:"E6EDF3"},{token:"string",foreground:"A5D6FF"},{token:"string punctuation.section.embedded source",foreground:"A5D6FF"},{token:"support",foreground:"79C0FF"},{token:"meta.property-name",foreground:"79C0FF"},{token:"variable",foreground:"FFA657"},{token:"variable.other",foreground:"E6EDF3"},{token:"invalid.broken",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.illegal",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"FFA198",fontStyle:"italic"},{token:"carriage-return",foreground:"F0F6FC",fontStyle:"italic underline"},{token:"message.error",foreground:"FFA198"},{token:"string variable",foreground:"79C0FF"},{token:"source.regexp",foreground:"A5D6FF"},{token:"string.regexp",foreground:"A5D6FF"},{token:"string.regexp.character-class",foreground:"A5D6FF"},{token:"string.regexp constant.character.escape",foreground:"A5D6FF"},{token:"string.regexp source.ruby.embedded",foreground:"A5D6FF"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"A5D6FF"},{token:"string.regexp constant.character.escape",foreground:"7EE787",fontStyle:"bold"},{token:"support.constant",foreground:"79C0FF"},{token:"support.variable",foreground:"79C0FF"},{token:"support.type.property-name.json",foreground:"7EE787"},{token:"meta.module-reference",foreground:"79C0FF"},{token:"punctuation.definition.list.begin.markdown",foreground:"FFA657"},{token:"markup.heading",foreground:"79C0FF",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"79C0FF",fontStyle:"bold"},{token:"markup.quote",foreground:"7EE787"},{token:"markup.italic",foreground:"E6EDF3",fontStyle:"italic"},{token:"markup.bold",foreground:"E6EDF3",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"79C0FF"},{token:"markup.deleted",foreground:"FFA198"},{token:"meta.diff.header.from-file",foreground:"FFA198"},{token:"punctuation.definition.deleted",foreground:"FFA198"},{token:"punctuation.section.embedded",foreground:"FF7B72"},{token:"markup.inserted",foreground:"7EE787"},{token:"meta.diff.header.to-file",foreground:"7EE787"},{token:"punctuation.definition.inserted",foreground:"7EE787"},{token:"markup.changed",foreground:"FFA657"},{token:"punctuation.definition.changed",foreground:"FFA657"},{token:"markup.ignored",foreground:"161B22"},{token:"markup.untracked",foreground:"161B22"},{token:"meta.diff.range",foreground:"D2A8FF",fontStyle:"bold"},{token:"meta.diff.header",foreground:"79C0FF"},{token:"meta.separator",foreground:"79C0FF",fontStyle:"bold"},{token:"meta.output",foreground:"79C0FF"},{token:"brackethighlighter.tag",foreground:"8B949E"},{token:"brackethighlighter.curly",foreground:"8B949E"},{token:"brackethighlighter.round",foreground:"8B949E"},{token:"brackethighlighter.square",foreground:"8B949E"},{token:"brackethighlighter.angle",foreground:"8B949E"},{token:"brackethighlighter.quote",foreground:"8B949E"},{token:"brackethighlighter.unmatched",foreground:"FFA198"},{token:"constant.other.reference.link",foreground:"A5D6FF"},{token:"string.other.link",foreground:"A5D6FF"}],colors:{focusBorder:"#1F6FEB",foreground:"#E6EDF3",descriptionForeground:"#7D8590",errorForeground:"#F85149","textLink.foreground":"#2F81F7","textLink.activeForeground":"#2F81F7","textBlockQuote.background":"#010409","textBlockQuote.border":"#30363D","textCodeBlock.background":"#6E768166","textPreformat.foreground":"#7D8590","textSeparator.foreground":"#21262D","button.background":"#238636","button.foreground":"#FFFFFF","button.hoverBackground":"#2EA043","dropdown.background":"#161B22","dropdown.border":"#30363D","dropdown.foreground":"#E6EDF3","input.background":"#0D1117","input.border":"#30363D","input.foreground":"#E6EDF3","input.placeholderForeground":"#6E7681","badge.foreground":"#FFFFFF","badge.background":"#1F6FEB","progressBar.background":"#1F6FEB","list.hoverForeground":"#E6EDF3","list.inactiveSelectionForeground":"#E6EDF3","list.activeSelectionForeground":"#E6EDF3","list.hoverBackground":"#6E76811A","list.inactiveSelectionBackground":"#6E768166","list.activeSelectionBackground":"#6E768166","list.focusForeground":"#E6EDF3","list.focusBackground":"#388BFD26","list.highlightForeground":"#2F81F7","pickerGroup.border":"#30363D","pickerGroup.foreground":"#7D8590","editor.foreground":"#E6EDF3","editor.background":"#0D1117","editorWidget.background":"#161B22","editor.lineHighlightBackground":"#6E76811A","editorLineNumber.foreground":"#6E7681","editorLineNumber.activeForeground":"#E6EDF3","editorIndentGuide.background":"#E6EDF31F","editorWhitespace.foreground":"#484F58","editorCursor.foreground":"#2F81F7","editor.findMatchBackground":"#9E6A03","editor.findMatchHighlightBackground":"#F2CC6080","editor.selectionHighlightBackground":"#3FB95040","editor.wordHighlightBackground":"#6E768180","editor.wordHighlightStrongBackground":"#6E76814D","editorBracketMatch.background":"#3FB95040","editorBracketMatch.border":"#3FB95099","editorInlayHint.background":"#8B949E33","editorInlayHint.foreground":"#7D8590","diffEditor.insertedTextBackground":"#3FB9504D","diffEditor.removedTextBackground":"#FF7B724D","scrollbar.shadow":"#484F5833","scrollbarSlider.background":"#8B949E33","scrollbarSlider.hoverBackground":"#8B949E3D","scrollbarSlider.activeBackground":"#8B949E47","editorOverviewRuler.border":"#010409","peekViewEditor.matchHighlightBackground":"#BB800966","peekViewResult.matchHighlightBackground":"#BB800966","peekViewEditor.background":"#6E76811A","peekViewResult.background":"#0D1117"}},"github-light":{base:"vs",inherit:!0,rules:[{token:"comment",foreground:"6E7781"},{token:"punctuation.definition.comment",foreground:"6E7781"},{token:"string.comment",foreground:"6E7781"},{token:"constant.other.placeholder",foreground:"CF222E"},{token:"constant.character",foreground:"CF222E"},{token:"constant",foreground:"0550AE"},{token:"entity.name.constant",foreground:"0550AE"},{token:"variable.other.constant",foreground:"0550AE"},{token:"variable.other.enummember",foreground:"0550AE"},{token:"variable.language",foreground:"0550AE"},{token:"entity",foreground:"0550AE"},{token:"entity.name",foreground:"953800"},{token:"meta.export.default",foreground:"953800"},{token:"meta.definition.variable",foreground:"953800"},{token:"variable.parameter.function",foreground:"1F2328"},{token:"meta.jsx.children",foreground:"1F2328"},{token:"meta.block",foreground:"1F2328"},{token:"meta.tag.attributes",foreground:"1F2328"},{token:"entity.name.constant",foreground:"1F2328"},{token:"meta.object.member",foreground:"1F2328"},{token:"meta.embedded.expression",foreground:"1F2328"},{token:"entity.name.function",foreground:"8250DF"},{token:"entity.name.tag",foreground:"116329"},{token:"support.class.component",foreground:"116329"},{token:"keyword",foreground:"CF222E"},{token:"storage",foreground:"CF222E"},{token:"storage.type",foreground:"CF222E"},{token:"storage.modifier.package",foreground:"1F2328"},{token:"storage.modifier.import",foreground:"1F2328"},{token:"storage.type.java",foreground:"1F2328"},{token:"string",foreground:"0A3069"},{token:"string punctuation.section.embedded source",foreground:"0A3069"},{token:"support",foreground:"0550AE"},{token:"meta.property-name",foreground:"0550AE"},{token:"variable",foreground:"953800"},{token:"variable.other",foreground:"1F2328"},{token:"invalid.broken",foreground:"82071E",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"82071E",fontStyle:"italic"},{token:"invalid.illegal",foreground:"82071E",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"82071E",fontStyle:"italic"},{token:"carriage-return",foreground:"F6F8FA",fontStyle:"italic underline"},{token:"message.error",foreground:"82071E"},{token:"string variable",foreground:"0550AE"},{token:"source.regexp",foreground:"0A3069"},{token:"string.regexp",foreground:"0A3069"},{token:"string.regexp.character-class",foreground:"0A3069"},{token:"string.regexp constant.character.escape",foreground:"0A3069"},{token:"string.regexp source.ruby.embedded",foreground:"0A3069"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"0A3069"},{token:"string.regexp constant.character.escape",foreground:"116329",fontStyle:"bold"},{token:"support.constant",foreground:"0550AE"},{token:"support.variable",foreground:"0550AE"},{token:"support.type.property-name.json",foreground:"116329"},{token:"meta.module-reference",foreground:"0550AE"},{token:"punctuation.definition.list.begin.markdown",foreground:"953800"},{token:"markup.heading",foreground:"0550AE",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"0550AE",fontStyle:"bold"},{token:"markup.quote",foreground:"116329"},{token:"markup.italic",foreground:"1F2328",fontStyle:"italic"},{token:"markup.bold",foreground:"1F2328",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"0550AE"},{token:"markup.deleted",foreground:"82071E"},{token:"meta.diff.header.from-file",foreground:"82071E"},{token:"punctuation.definition.deleted",foreground:"82071E"},{token:"punctuation.section.embedded",foreground:"CF222E"},{token:"markup.inserted",foreground:"116329"},{token:"meta.diff.header.to-file",foreground:"116329"},{token:"punctuation.definition.inserted",foreground:"116329"},{token:"markup.changed",foreground:"953800"},{token:"punctuation.definition.changed",foreground:"953800"},{token:"markup.ignored",foreground:"EAEEF2"},{token:"markup.untracked",foreground:"EAEEF2"},{token:"meta.diff.range",foreground:"8250DF",fontStyle:"bold"},{token:"meta.diff.header",foreground:"0550AE"},{token:"meta.separator",foreground:"0550AE",fontStyle:"bold"},{token:"meta.output",foreground:"0550AE"},{token:"brackethighlighter.tag",foreground:"57606A"},{token:"brackethighlighter.curly",foreground:"57606A"},{token:"brackethighlighter.round",foreground:"57606A"},{token:"brackethighlighter.square",foreground:"57606A"},{token:"brackethighlighter.angle",foreground:"57606A"},{token:"brackethighlighter.quote",foreground:"57606A"},{token:"brackethighlighter.unmatched",foreground:"82071E"},{token:"constant.other.reference.link",foreground:"0A3069"},{token:"string.other.link",foreground:"0A3069"}],colors:{focusBorder:"#0969DA",foreground:"#1F2328",descriptionForeground:"#656D76",errorForeground:"#CF222E","textLink.foreground":"#0969DA","textLink.activeForeground":"#0969DA","textBlockQuote.background":"#F6F8FA","textBlockQuote.border":"#D0D7DE","textCodeBlock.background":"#AFB8C133","textPreformat.foreground":"#656D76","textSeparator.foreground":"#D8DEE4","button.background":"#1F883D","button.foreground":"#FFFFFF","button.hoverBackground":"#1A7F37","dropdown.background":"#FFFFFF","dropdown.border":"#D0D7DE","dropdown.foreground":"#1F2328","input.background":"#FFFFFF","input.border":"#D0D7DE","input.foreground":"#1F2328","input.placeholderForeground":"#6E7781","badge.foreground":"#FFFFFF","badge.background":"#0969DA","progressBar.background":"#0969DA","list.hoverForeground":"#1F2328","list.inactiveSelectionForeground":"#1F2328","list.activeSelectionForeground":"#1F2328","list.hoverBackground":"#EAEEF280","list.inactiveSelectionBackground":"#AFB8C133","list.activeSelectionBackground":"#AFB8C133","list.focusForeground":"#1F2328","list.focusBackground":"#DDF4FF","list.highlightForeground":"#0969DA","pickerGroup.border":"#D0D7DE","pickerGroup.foreground":"#656D76","editor.foreground":"#1F2328","editor.background":"#FFFFFF","editorWidget.background":"#FFFFFF","editor.lineHighlightBackground":"#EAEEF280","editorLineNumber.foreground":"#8C959F","editorLineNumber.activeForeground":"#1F2328","editorIndentGuide.background":"#1F23281F","editorWhitespace.foreground":"#AFB8C1","editorCursor.foreground":"#0969DA","editor.findMatchBackground":"#BF8700","editor.findMatchHighlightBackground":"#FAE17D80","editor.selectionHighlightBackground":"#4AC26B40","editor.wordHighlightBackground":"#EAEEF280","editor.wordHighlightStrongBackground":"#AFB8C14D","editorBracketMatch.background":"#4AC26B40","editorBracketMatch.border":"#4AC26B99","editorInlayHint.background":"#AFB8C133","editorInlayHint.foreground":"#656D76","diffEditor.insertedTextBackground":"#6FDD8B80","diffEditor.removedTextBackground":"#FF818266","scrollbar.shadow":"#6E778133","scrollbarSlider.background":"#8C959F33","scrollbarSlider.hoverBackground":"#8C959F3D","scrollbarSlider.activeBackground":"#8C959F47","editorOverviewRuler.border":"#FFFFFF"}},monokai:{base:"vs-dark",inherit:!0,rules:[{token:"meta.embedded",foreground:"F8F8F2"},{token:"source.groovy.embedded",foreground:"F8F8F2"},{token:"string meta.image.inline.markdown",foreground:"F8F8F2"},{token:"variable.legacy.builtin.python",foreground:"F8F8F2"},{token:"comment",foreground:"88846F"},{token:"string",foreground:"E6DB74"},{token:"punctuation.definition.template-expression",foreground:"F92672"},{token:"punctuation.section.embedded",foreground:"F92672"},{token:"meta.template.expression",foreground:"F8F8F2"},{token:"constant.numeric",foreground:"AE81FF"},{token:"constant.language",foreground:"AE81FF"},{token:"constant.character, constant.other",foreground:"AE81FF"},{token:"variable",foreground:"F8F8F2"},{token:"keyword",foreground:"F92672"},{token:"storage",foreground:"F92672"},{token:"storage.type",foreground:"66D9EF",fontStyle:"italic"},{token:"entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution",foreground:"A6E22E",fontStyle:"underline"},{token:"entity.other.inherited-class",foreground:"A6E22E",fontStyle:"italic underline"},{token:"entity.name.function",foreground:"A6E22E"},{token:"variable.parameter",foreground:"FD971F",fontStyle:"italic"},{token:"entity.name.tag",foreground:"F92672"},{token:"entity.other.attribute-name",foreground:"A6E22E"},{token:"support.function",foreground:"66D9EF"},{token:"support.constant",foreground:"66D9EF"},{token:"support.type, support.class",foreground:"66D9EF",fontStyle:"italic"},{token:"support.other.variable"},{token:"invalid",foreground:"F44747"},{token:"invalid.deprecated",foreground:"F44747"},{token:"meta.structure.dictionary.json string.quoted.double.json",foreground:"CFCFC2"},{token:"meta.diff, meta.diff.header",foreground:"75715E"},{token:"markup.deleted",foreground:"F92672"},{token:"markup.inserted",foreground:"A6E22E"},{token:"markup.changed",foreground:"E6DB74"},{token:"constant.numeric.line-number.find-in-files - match",foreground:"AE81FFA0"},{token:"entity.name.filename.find-in-files",foreground:"E6DB74"},{token:"markup.quote",foreground:"F92672"},{token:"markup.list",foreground:"E6DB74"},{token:"markup.bold, markup.italic",foreground:"66D9EF"},{token:"markup.inline.raw",foreground:"FD971F"},{token:"markup.heading",foreground:"A6E22E"},{token:"markup.heading.setext",foreground:"A6E22E",fontStyle:"bold"},{token:"markup.heading.markdown",fontStyle:"bold"},{token:"markup.quote.markdown",foreground:"75715E",fontStyle:"italic"},{token:"markup.bold.markdown",fontStyle:"bold"},{token:"string.other.link.title.markdown,string.other.link.description.markdown",foreground:"AE81FF"},{token:"markup.underline.link.markdown,markup.underline.link.image.markdown",foreground:"E6DB74"},{token:"markup.italic.markdown",fontStyle:"italic"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.list.unnumbered.markdown, markup.list.numbered.markdown",foreground:"F8F8F2"},{token:"punctuation.definition.list.begin.markdown",foreground:"A6E22E"},{token:"token.info-token",foreground:"6796E6"},{token:"token.warn-token",foreground:"CD9731"},{token:"token.error-token",foreground:"F44747"},{token:"token.debug-token",foreground:"B267E6"},{token:"variable.language",foreground:"FD971F"}],colors:{"dropdown.background":"#414339","list.activeSelectionBackground":"#75715E","list.inactiveSelectionBackground":"#414339","list.hoverBackground":"#3E3D32","list.dropBackground":"#414339","list.highlightForeground":"#F8F8F2","button.background":"#75715E","editor.background":"#272822","editor.foreground":"#F8F8F2","selection.background":"#878B9180","editor.selectionHighlightBackground":"#575B6180","editor.selectionBackground":"#878B9180","editor.wordHighlightBackground":"#4A4A7680","editor.wordHighlightStrongBackground":"#6A6A9680","editor.lineHighlightBackground":"#3E3D32","editorLineNumber.activeForeground":"#C2C2BF","editorCursor.foreground":"#F8F8F0","editorWhitespace.foreground":"#464741","editorIndentGuide.background":"#464741","widget.shadow":"#00000098","progressBar.background":"#75715E","badge.background":"#75715E","badge.foreground":"#F8F8F2","editorLineNumber.foreground":"#90908A","pickerGroup.foreground":"#75715E","input.background":"#414339","inputOption.activeBorder":"#75715E",focusBorder:"#99947C","editorWidget.background":"#1E1F1C","diffEditor.insertedTextBackground":"#4B661680","diffEditor.removedTextBackground":"#90274A70","inputValidation.errorBackground":"#90274A","inputValidation.errorBorder":"#F92672","inputValidation.warningBackground":"#848528","inputValidation.warningBorder":"#E2E22E","inputValidation.infoBackground":"#546190","inputValidation.infoBorder":"#819AFF","editorHoverWidget.background":"#414339","editorHoverWidget.border":"#75715E","editorSuggestWidget.background":"#272822","editorSuggestWidget.border":"#75715E","peekView.border":"#75715E","peekViewEditor.background":"#272822","peekViewResult.background":"#1E1F1C","peekViewTitle.background":"#1E1F1C","peekViewResult.selectionBackground":"#414339","peekViewResult.matchHighlightBackground":"#75715E","peekViewEditor.matchHighlightBackground":"#75715E"}},nord:{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"comment",foreground:"616E88"},{token:"constant.character",foreground:"EBCB8B"},{token:"constant.character.escape",foreground:"EBCB8B"},{token:"constant.language",foreground:"81A1C1"},{token:"constant.numeric",foreground:"B48EAD"},{token:"constant.regexp",foreground:"EBCB8B"},{token:"entity.name.class",foreground:"8FBCBB"},{token:"entity.name.type.class",foreground:"8FBCBB"},{token:"entity.name.function",foreground:"88C0D0"},{token:"entity.name.tag",foreground:"81A1C1"},{token:"entity.other.attribute-name",foreground:"8FBCBB"},{token:"entity.other.inherited-class",foreground:"8FBCBB",fontStyle:"bold"},{token:"invalid.deprecated",foreground:"D8DEE9"},{token:"invalid.illegal",foreground:"D8DEE9"},{token:"keyword",foreground:"81A1C1"},{token:"keyword.operator",foreground:"81A1C1"},{token:"keyword.other.new",foreground:"81A1C1"},{token:"markup.bold",fontStyle:"bold"},{token:"markup.changed",foreground:"EBCB8B"},{token:"markup.deleted",foreground:"BF616A"},{token:"markup.inserted",foreground:"A3BE8C"},{token:"meta.preprocessor",foreground:"5E81AC"},{token:"punctuation",foreground:"ECEFF4"},{token:"punctuation.definition.method-parameters",foreground:"ECEFF4"},{token:"punctuation.definition.function-parameters",foreground:"ECEFF4"},{token:"punctuation.definition.parameters",foreground:"ECEFF4"},{token:"punctuation.definition.tag",foreground:"81A1C1"},{token:"punctuation.definition.comment",foreground:"616E88"},{token:"punctuation.end.definition.comment",foreground:"616E88"},{token:"punctuation.start.definition.comment",foreground:"616E88"},{token:"punctuation.section",foreground:"ECEFF4"},{token:"punctuation.section.embedded.begin",foreground:"81A1C1"},{token:"punctuation.section.embedded.end",foreground:"81A1C1"},{token:"punctuation.terminator",foreground:"81A1C1"},{token:"punctuation.definition.variable",foreground:"81A1C1"},{token:"storage",foreground:"81A1C1"},{token:"string",foreground:"A3BE8C"},{token:"string.regexp",foreground:"EBCB8B"},{token:"support.class",foreground:"8FBCBB"},{token:"support.constant",foreground:"81A1C1"},{token:"support.function",foreground:"88C0D0"},{token:"support.function.construct",foreground:"81A1C1"},{token:"support.type",foreground:"8FBCBB"},{token:"support.type.exception",foreground:"8FBCBB"},{token:"token.debug-token",foreground:"B48EAD"},{token:"token.error-token",foreground:"BF616A"},{token:"token.info-token",foreground:"88C0D0"},{token:"token.warn-token",foreground:"EBCB8B"},{token:"variable.other",foreground:"D8DEE9"},{token:"variable.language",foreground:"81A1C1"},{token:"variable.parameter",foreground:"D8DEE9"},{token:"punctuation.separator.pointer-access.c",foreground:"81A1C1"},{token:"source.c meta.preprocessor.include",foreground:"8FBCBB"},{token:"source.c string.quoted.other.lt-gt.include",foreground:"8FBCBB"},{token:"source.cpp keyword.control.directive.conditional",foreground:"5E81AC",fontStyle:"bold"},{token:"source.cpp punctuation.definition.directive",foreground:"5E81AC",fontStyle:"bold"},{token:"source.c keyword.control.directive.conditional",foreground:"5E81AC",fontStyle:"bold"},{token:"source.c punctuation.definition.directive",foreground:"5E81AC",fontStyle:"bold"},{token:"source.css constant.other.color.rgb-value",foreground:"B48EAD"},{token:"source.css meta.property-value",foreground:"88C0D0"},{token:"source.css keyword.control.at-rule.media",foreground:"D08770"},{token:"source.css keyword.control.at-rule.media punctuation.definition.keyword",foreground:"D08770"},{token:"source.css punctuation.definition.keyword",foreground:"81A1C1"},{token:"source.css support.type.property-name",foreground:"D8DEE9"},{token:"source.diff meta.diff.range.context",foreground:"8FBCBB"},{token:"source.diff meta.diff.header.from-file",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.from-file",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.range",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.separator",foreground:"81A1C1"},{token:"entity.name.type.module.elixir",foreground:"8FBCBB"},{token:"variable.other.readwrite.module.elixir",foreground:"D8DEE9",fontStyle:"bold"},{token:"constant.other.symbol.elixir",foreground:"D8DEE9",fontStyle:"bold"},{token:"variable.other.constant.elixir",foreground:"8FBCBB"},{token:"source.go constant.other.placeholder.go",foreground:"EBCB8B"},{token:"source.java comment.block.documentation.javadoc punctuation.definition.entity.html",foreground:"81A1C1"},{token:"source.java constant.other",foreground:"D8DEE9"},{token:"source.java keyword.other.documentation",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.author.javadoc",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.directive",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.custom",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.see.javadoc",foreground:"8FBCBB"},{token:"source.java meta.method-call meta.method",foreground:"88C0D0"},{token:"source.java meta.tag.template.link.javadoc",foreground:"8FBCBB"},{token:"source.java string.other.link.title.javadoc",foreground:"8FBCBB"},{token:"source.java meta.tag.template.value.javadoc",foreground:"88C0D0"},{token:"source.java punctuation.definition.keyword.javadoc",foreground:"8FBCBB"},{token:"source.java punctuation.definition.tag.begin.javadoc",foreground:"616E88"},{token:"source.java punctuation.definition.tag.end.javadoc",foreground:"616E88"},{token:"source.java storage.modifier.import",foreground:"8FBCBB"},{token:"source.java storage.modifier.package",foreground:"8FBCBB"},{token:"source.java storage.type",foreground:"8FBCBB"},{token:"source.java storage.type.annotation",foreground:"D08770"},{token:"source.java storage.type.generic",foreground:"8FBCBB"},{token:"source.java storage.type.primitive",foreground:"81A1C1"},{token:"source.js punctuation.decorator",foreground:"D08770"},{token:"source.js meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.js meta.decorator entity.name.function",foreground:"D08770"},{token:"source.js meta.object-literal.key",foreground:"88C0D0"},{token:"source.js storage.type.class.jsdoc",foreground:"8FBCBB"},{token:"source.js string.quoted.template punctuation.quasi.element.begin",foreground:"81A1C1"},{token:"source.js string.quoted.template punctuation.quasi.element.end",foreground:"81A1C1"},{token:"source.js string.template punctuation.definition.template-expression",foreground:"81A1C1"},{token:"source.js string.quoted.template meta.method-call.with-arguments",foreground:"ECEFF4"},{token:"source.js string.template meta.template.expression support.variable.property",foreground:"D8DEE9"},{token:"source.js string.template meta.template.expression variable.other.object",foreground:"D8DEE9"},{token:"source.js support.type.primitive",foreground:"81A1C1"},{token:"source.js variable.other.object",foreground:"D8DEE9"},{token:"source.js variable.other.readwrite.alias",foreground:"8FBCBB"},{token:"source.js meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.js meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"source.js string.quoted.template meta.brace.square",foreground:"ECEFF4"},{token:"source.js string.quoted.template meta.brace.round",foreground:"ECEFF4"},{token:"text.html.basic constant.character.entity.html",foreground:"EBCB8B"},{token:"text.html.basic constant.other.inline-data",foreground:"D08770",fontStyle:"italic"},{token:"text.html.basic meta.tag.sgml.doctype",foreground:"5E81AC"},{token:"text.html.basic punctuation.definition.entity",foreground:"81A1C1"},{token:"source.properties entity.name.section.group-title.ini",foreground:"88C0D0"},{token:"source.properties punctuation.separator.key-value.ini",foreground:"81A1C1"},{token:"text.html.markdown markup.fenced_code.block",foreground:"8FBCBB"},{token:"text.html.markdown markup.fenced_code.block punctuation.definition",foreground:"8FBCBB"},{token:"markup.heading",foreground:"88C0D0"},{token:"text.html.markdown markup.inline.raw",foreground:"8FBCBB"},{token:"text.html.markdown markup.inline.raw punctuation.definition.raw",foreground:"8FBCBB"},{token:"text.html.markdown markup.italic",fontStyle:"italic"},{token:"text.html.markdown markup.underline.link",fontStyle:"underline"},{token:"text.html.markdown beginning.punctuation.definition.list",foreground:"81A1C1"},{token:"text.html.markdown beginning.punctuation.definition.quote",foreground:"8FBCBB"},{token:"text.html.markdown markup.quote",foreground:"616E88"},{token:"text.html.markdown constant.character.math.tex",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.math.begin",foreground:"5E81AC"},{token:"text.html.markdown punctuation.definition.math.end",foreground:"5E81AC"},{token:"text.html.markdown punctuation.definition.function.math.tex",foreground:"88C0D0"},{token:"text.html.markdown punctuation.math.operator.latex",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.heading",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.constant",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.string",foreground:"81A1C1"},{token:"text.html.markdown constant.other.reference.link",foreground:"88C0D0"},{token:"text.html.markdown string.other.link.description",foreground:"88C0D0"},{token:"text.html.markdown string.other.link.title",foreground:"88C0D0"},{token:"source.perl punctuation.definition.variable",foreground:"D8DEE9"},{token:"source.php meta.function-call",foreground:"88C0D0"},{token:"source.php meta.function-call.object",foreground:"88C0D0"},{token:"source.python entity.name.function.decorator",foreground:"D08770"},{token:"source.python meta.function.decorator support.type",foreground:"D08770"},{token:"source.python meta.function-call.generic",foreground:"88C0D0"},{token:"source.python support.type",foreground:"88C0D0"},{token:"source.python variable.parameter.function.language",foreground:"D8DEE9"},{token:"source.python meta.function.parameters variable.parameter.function.language.special.self",foreground:"81A1C1"},{token:"source.rust entity.name.type",foreground:"8FBCBB"},{token:"source.rust meta.macro entity.name.function",foreground:"88C0D0",fontStyle:"bold"},{token:"source.rust meta.attribute",foreground:"5E81AC"},{token:"source.rust meta.attribute punctuation",foreground:"5E81AC"},{token:"source.rust meta.attribute keyword.operator",foreground:"5E81AC"},{token:"source.rust entity.name.type.trait",fontStyle:"bold"},{token:"source.rust punctuation.definition.interpolation",foreground:"EBCB8B"},{token:"source.css.scss punctuation.definition.interpolation.begin.bracket.curly",foreground:"81A1C1"},{token:"source.css.scss punctuation.definition.interpolation.end.bracket.curly",foreground:"81A1C1"},{token:"source.css.scss variable.interpolation",foreground:"D8DEE9",fontStyle:"italic"},{token:"source.ts punctuation.decorator",foreground:"D08770"},{token:"source.ts meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.ts meta.decorator entity.name.function",foreground:"D08770"},{token:"source.tsx punctuation.decorator",foreground:"D08770"},{token:"source.tsx meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.tsx meta.decorator entity.name.function",foreground:"D08770"},{token:"source.ts meta.object-literal.key",foreground:"D8DEE9"},{token:"source.tsx meta.object-literal.key",foreground:"D8DEE9"},{token:"source.ts meta.object-literal.key entity.name.function",foreground:"88C0D0"},{token:"source.tsx meta.object-literal.key entity.name.function",foreground:"88C0D0"},{token:"source.ts support.class",foreground:"8FBCBB"},{token:"source.ts support.type",foreground:"8FBCBB"},{token:"source.ts entity.name.type",foreground:"8FBCBB"},{token:"source.ts entity.name.class",foreground:"8FBCBB"},{token:"source.tsx support.class",foreground:"8FBCBB"},{token:"source.tsx support.type",foreground:"8FBCBB"},{token:"source.tsx entity.name.type",foreground:"8FBCBB"},{token:"source.tsx entity.name.class",foreground:"8FBCBB"},{token:"source.ts support.constant.math",foreground:"8FBCBB"},{token:"source.ts support.constant.dom",foreground:"8FBCBB"},{token:"source.ts support.constant.json",foreground:"8FBCBB"},{token:"source.tsx support.constant.math",foreground:"8FBCBB"},{token:"source.tsx support.constant.dom",foreground:"8FBCBB"},{token:"source.tsx support.constant.json",foreground:"8FBCBB"},{token:"source.ts support.variable",foreground:"D8DEE9"},{token:"source.tsx support.variable",foreground:"D8DEE9"},{token:"source.ts meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.ts meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"source.tsx meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.tsx meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"text.xml entity.name.tag.namespace",foreground:"8FBCBB"},{token:"text.xml keyword.other.doctype",foreground:"5E81AC"},{token:"text.xml meta.tag.preprocessor entity.name.tag",foreground:"5E81AC"},{token:"text.xml string.unquoted.cdata",foreground:"D08770",fontStyle:"italic"},{token:"text.xml string.unquoted.cdata punctuation.definition.string",foreground:"D08770",fontStyle:"italic"},{token:"source.yaml entity.name.tag",foreground:"8FBCBB"}],colors:{focusBorder:"#3B4252",foreground:"#D8DEE9","badge.foreground":"#2E3440","badge.background":"#88C0D0","button.background":"#88C0D0EE","button.foreground":"#2E3440","button.hoverBackground":"#88C0D0",descriptionForeground:"#D8DEE9E6","diffEditor.insertedTextBackground":"#81A1C133","diffEditor.removedTextBackground":"#BF616A4D","dropdown.background":"#3B4252","dropdown.border":"#3B4252","dropdown.foreground":"#D8DEE9","editorCursor.foreground":"#D8DEE9","editorIndentGuide.background":"#434C5EB3","editorInlayHint.background":"#434C5E","editorInlayHint.foreground":"#D8DEE9","editorLineNumber.foreground":"#4C566A","editorLineNumber.activeForeground":"#D8DEE9","editorWhitespace.foreground":"#4C566AB3","editorWidget.background":"#2E3440","editorWidget.border":"#3B4252","editor.background":"#2E3440","editor.foreground":"#D8DEE9","editor.hoverHighlightBackground":"#3B4252","editor.findMatchBackground":"#88C0D066","editor.findMatchHighlightBackground":"#88C0D033","editor.findRangeHighlightBackground":"#88C0D033","editor.lineHighlightBackground":"#3B4252","editor.lineHighlightBorder":"#3B4252","editor.inactiveSelectionBackground":"#434C5ECC","editor.selectionBackground":"#434C5ECC","editor.selectionHighlightBackground":"#434C5ECC","editor.rangeHighlightBackground":"#434C5E52","editor.wordHighlightBackground":"#81A1C166","editor.wordHighlightStrongBackground":"#81A1C199","editorError.foreground":"#BF616A","editorError.border":"#BF616A00","editorWarning.foreground":"#EBCB8B","editorWarning.border":"#EBCB8B00","editorBracketMatch.background":"#2E344000","editorBracketMatch.border":"#88C0D0","editorCodeLens.foreground":"#4C566A","editorGutter.background":"#2E3440","editorHoverWidget.background":"#3B4252","editorHoverWidget.border":"#3B4252","editorLink.activeForeground":"#88C0D0","editorMarkerNavigation.background":"#5E81ACC0","editorMarkerNavigationError.background":"#BF616AC0","editorMarkerNavigationWarning.background":"#EBCB8BC0","editorOverviewRuler.border":"#3B4252","editorOverviewRuler.currentContentForeground":"#3B4252","editorOverviewRuler.incomingContentForeground":"#3B4252","editorRuler.foreground":"#434C5E","editorSuggestWidget.background":"#2E3440","editorSuggestWidget.border":"#3B4252","editorSuggestWidget.foreground":"#D8DEE9","editorSuggestWidget.highlightForeground":"#88C0D0","editorSuggestWidget.selectedBackground":"#434C5E",errorForeground:"#BF616A","input.background":"#3B4252","input.foreground":"#D8DEE9","input.placeholderForeground":"#D8DEE999","input.border":"#3B4252","inputOption.activeBorder":"#5E81AC","inputValidation.errorBackground":"#BF616A","inputValidation.errorBorder":"#BF616A","inputValidation.infoBackground":"#81A1C1","inputValidation.infoBorder":"#81A1C1","inputValidation.warningBackground":"#D08770","inputValidation.warningBorder":"#D08770","list.activeSelectionBackground":"#88C0D0","list.activeSelectionForeground":"#2E3440","list.inactiveSelectionBackground":"#434C5E","list.inactiveSelectionForeground":"#D8DEE9","list.hoverForeground":"#ECEFF4","list.focusForeground":"#D8DEE9","list.focusBackground":"#88C0D099","list.hoverBackground":"#3B4252","list.dropBackground":"#88C0D099","list.highlightForeground":"#88C0D0","peekView.border":"#4C566A","peekViewEditor.background":"#2E3440","peekViewEditorGutter.background":"#2E3440","peekViewEditor.matchHighlightBackground":"#88C0D04D","peekViewResult.background":"#2E3440","peekViewResult.fileForeground":"#88C0D0","peekViewResult.lineForeground":"#D8DEE966","peekViewResult.matchHighlightBackground":"#88C0D0CC","peekViewResult.selectionBackground":"#434C5E","peekViewResult.selectionForeground":"#D8DEE9","peekViewTitle.background":"#3B4252","peekViewTitleDescription.foreground":"#D8DEE9","peekViewTitleLabel.foreground":"#88C0D0","pickerGroup.border":"#3B4252","pickerGroup.foreground":"#88C0D0","progressBar.background":"#88C0D0","scrollbar.shadow":"#00000066","scrollbarSlider.activeBackground":"#434C5EAA","scrollbarSlider.background":"#434C5E99","scrollbarSlider.hoverBackground":"#434C5EAA","selection.background":"#88C0D099","textBlockQuote.background":"#3B4252","textBlockQuote.border":"#81A1C1","textCodeBlock.background":"#4C566A","textLink.activeForeground":"#88C0D0","textLink.foreground":"#88C0D0","textPreformat.foreground":"#8FBCBB","textSeparator.foreground":"#ECEFF4","widget.shadow":"#00000066"}},"one-dark-pro-darker":{base:"vs-dark",inherit:!0,rules:[{token:"meta.embedded",foreground:"ABB2BF"},{token:"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison",foreground:"E06C75"},{token:"variable.other.generic-type.haskell",foreground:"C678DD"},{token:"storage.type.haskell",foreground:"D19A66"},{token:"support.variable.magic.python",foreground:"E06C75"},{token:"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python",foreground:"ABB2BF"},{token:"variable.parameter.function.language.special.self.python",foreground:"E5C07B"},{token:"variable.parameter.function.language.special.cls.python",foreground:"E5C07B"},{token:"storage.modifier.lifetime.rust",foreground:"ABB2BF"},{token:"support.function.std.rust",foreground:"61AFEF"},{token:"entity.name.lifetime.rust",foreground:"E5C07B"},{token:"variable.language.rust",foreground:"E06C75"},{token:"support.constant.edge",foreground:"C678DD"},{token:"constant.other.character-class.regexp",foreground:"E06C75"},{token:"keyword.operator.word",foreground:"C678DD"},{token:"keyword.operator.quantifier.regexp",foreground:"D19A66"},{token:"variable.parameter.function",foreground:"ABB2BF"},{token:"comment markup.link",foreground:"5C6370"},{token:"markup.changed.diff",foreground:"E5C07B"},{token:"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff",foreground:"61AFEF"},{token:"markup.inserted.diff",foreground:"98C379"},{token:"markup.deleted.diff",foreground:"E06C75"},{token:"meta.function.c,meta.function.cpp",foreground:"E06C75"},{token:"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c",foreground:"ABB2BF"},{token:"punctuation.separator.key-value",foreground:"ABB2BF"},{token:"keyword.operator.expression.import",foreground:"61AFEF"},{token:"support.constant.math",foreground:"E5C07B"},{token:"support.constant.property.math",foreground:"D19A66"},{token:"variable.other.constant",foreground:"E5C07B"},{token:"storage.type.annotation.java",foreground:"E5C07B"},{token:"storage.type.object.array.java",foreground:"E5C07B"},{token:"source.java",foreground:"E06C75"},{token:"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java",foreground:"ABB2BF"},{token:"meta.method.java",foreground:"61AFEF"},{token:"storage.modifier.import.java,storage.type.java,storage.type.generic.java",foreground:"E5C07B"},{token:"keyword.operator.instanceof.java",foreground:"C678DD"},{token:"meta.definition.variable.name.java",foreground:"E06C75"},{token:"keyword.operator.logical",foreground:"56B6C2"},{token:"keyword.operator.bitwise",foreground:"56B6C2"},{token:"keyword.operator.channel",foreground:"56B6C2"},{token:"support.constant.property-value.scss,support.constant.property-value.css",foreground:"D19A66"},{token:"keyword.operator.css,keyword.operator.scss,keyword.operator.less",foreground:"56B6C2"},{token:"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss",foreground:"D19A66"},{token:"punctuation.separator.list.comma.css",foreground:"ABB2BF"},{token:"support.constant.color.w3c-standard-color-name.css",foreground:"D19A66"},{token:"support.type.vendored.property-name.css",foreground:"56B6C2"},{token:"support.module.node,support.type.object.module,support.module.node",foreground:"E5C07B"},{token:"entity.name.type.module",foreground:"E5C07B"},{token:"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node",foreground:"E06C75"},{token:"support.constant.json",foreground:"D19A66"},{token:"keyword.operator.expression.instanceof",foreground:"C678DD"},{token:"keyword.operator.new",foreground:"C678DD"},{token:"keyword.operator.ternary",foreground:"C678DD"},{token:"keyword.operator.optional",foreground:"C678DD"},{token:"keyword.operator.expression.keyof",foreground:"C678DD"},{token:"support.type.object.console",foreground:"E06C75"},{token:"support.variable.property.process",foreground:"D19A66"},{token:"entity.name.function,support.function.console",foreground:"61AFEF"},{token:"keyword.operator.misc.rust",foreground:"ABB2BF"},{token:"keyword.operator.sigil.rust",foreground:"C678DD"},{token:"keyword.operator.delete",foreground:"C678DD"},{token:"support.type.object.dom",foreground:"56B6C2"},{token:"support.variable.dom,support.variable.property.dom",foreground:"E06C75"},{token:"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational",foreground:"56B6C2"},{token:"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp",foreground:"C678DD"},{token:"punctuation.separator.delimiter",foreground:"ABB2BF"},{token:"punctuation.separator.c,punctuation.separator.cpp",foreground:"C678DD"},{token:"support.type.posix-reserved.c,support.type.posix-reserved.cpp",foreground:"56B6C2"},{token:"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp",foreground:"C678DD"},{token:"variable.parameter.function.language.python",foreground:"D19A66"},{token:"support.type.python",foreground:"56B6C2"},{token:"keyword.operator.logical.python",foreground:"C678DD"},{token:"variable.parameter.function.python",foreground:"D19A66"},{token:"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python",foreground:"ABB2BF"},{token:"meta.function-call.generic.python",foreground:"61AFEF"},{token:"constant.character.format.placeholder.other.python",foreground:"D19A66"},{token:"keyword.operator",foreground:"ABB2BF"},{token:"keyword.operator.assignment.compound",foreground:"C678DD"},{token:"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts",foreground:"56B6C2"},{token:"keyword",foreground:"C678DD"},{token:"entity.name.namespace",foreground:"E5C07B"},{token:"variable",foreground:"E06C75"},{token:"variable.c",foreground:"ABB2BF"},{token:"variable.language",foreground:"E5C07B"},{token:"token.variable.parameter.java",foreground:"ABB2BF"},{token:"import.storage.java",foreground:"E5C07B"},{token:"token.package.keyword",foreground:"C678DD"},{token:"token.package",foreground:"ABB2BF"},{token:"entity.name.function",foreground:"61AFEF"},{token:"meta.require",foreground:"61AFEF"},{token:"support.function.any-method",foreground:"61AFEF"},{token:"variable.function",foreground:"61AFEF"},{token:"entity.name.type.namespace",foreground:"E5C07B"},{token:"support.class, entity.name.type.class",foreground:"E5C07B"},{token:"entity.name.class.identifier.namespace.type",foreground:"E5C07B"},{token:"entity.name.class",foreground:"E5C07B"},{token:"variable.other.class.js",foreground:"E5C07B"},{token:"variable.other.class.ts",foreground:"E5C07B"},{token:"variable.other.class.php",foreground:"E06C75"},{token:"entity.name.type",foreground:"E5C07B"},{token:"keyword.control",foreground:"C678DD"},{token:"control.elements, keyword.operator.less",foreground:"D19A66"},{token:"keyword.other.special-method",foreground:"61AFEF"},{token:"storage",foreground:"C678DD"},{token:"token.storage",foreground:"C678DD"},{token:"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void",foreground:"C678DD"},{token:"token.storage.type.java",foreground:"E5C07B"},{token:"support.function",foreground:"56B6C2"},{token:"support.type.property-name",foreground:"ABB2BF"},{token:"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml",foreground:"E06C75"},{token:"support.constant.property-value",foreground:"ABB2BF"},{token:"support.constant.font-name",foreground:"D19A66"},{token:"meta.tag",foreground:"ABB2BF"},{token:"string",foreground:"98C379"},{token:"constant.other.symbol",foreground:"56B6C2"},{token:"constant.numeric",foreground:"D19A66"},{token:"constant",foreground:"D19A66"},{token:"punctuation.definition.constant",foreground:"D19A66"},{token:"entity.name.tag",foreground:"E06C75"},{token:"entity.other.attribute-name",foreground:"D19A66"},{token:"entity.other.attribute-name.id",foreground:"61AFEF"},{token:"entity.other.attribute-name.class.css",foreground:"D19A66"},{token:"meta.selector",foreground:"C678DD"},{token:"markup.heading",foreground:"E06C75"},{token:"markup.heading punctuation.definition.heading, entity.name.section",foreground:"61AFEF"},{token:"keyword.other.unit",foreground:"E06C75"},{token:"markup.bold,todo.bold",foreground:"D19A66"},{token:"punctuation.definition.bold",foreground:"E5C07B"},{token:"markup.italic, punctuation.definition.italic,todo.emphasis",foreground:"C678DD"},{token:"emphasis md",foreground:"C678DD"},{token:"entity.name.section.markdown",foreground:"E06C75"},{token:"punctuation.definition.heading.markdown",foreground:"E06C75"},{token:"punctuation.definition.list.begin.markdown",foreground:"E5C07B"},{token:"markup.heading.setext",foreground:"ABB2BF"},{token:"punctuation.definition.bold.markdown",foreground:"D19A66"},{token:"markup.inline.raw.markdown",foreground:"98C379"},{token:"markup.inline.raw.string.markdown",foreground:"98C379"},{token:"punctuation.definition.raw.markdown",foreground:"E5C07B"},{token:"punctuation.definition.list.markdown",foreground:"E5C07B"},{token:"punctuation.definition.string.begin.markdown",foreground:"E06C75"},{token:"punctuation.definition.string.end.markdown",foreground:"E06C75"},{token:"punctuation.definition.metadata.markdown",foreground:"E06C75"},{token:"beginning.punctuation.definition.list.markdown",foreground:"E06C75"},{token:"punctuation.definition.metadata.markdown",foreground:"E06C75"},{token:"markup.underline.link.markdown,markup.underline.link.image.markdown",foreground:"C678DD"},{token:"string.other.link.title.markdown,string.other.link.description.markdown",foreground:"61AFEF"},{token:"markup.raw.monospace.asciidoc",foreground:"98C379"},{token:"punctuation.definition.asciidoc",foreground:"E5C07B"},{token:"markup.list.asciidoc",foreground:"E5C07B"},{token:"markup.link.asciidoc,markup.other.url.asciidoc",foreground:"C678DD"},{token:"string.unquoted.asciidoc,markup.other.url.asciidoc",foreground:"61AFEF"},{token:"string.regexp",foreground:"56B6C2"},{token:"punctuation.section.embedded, variable.interpolation",foreground:"E06C75"},{token:"punctuation.section.embedded.begin,punctuation.section.embedded.end",foreground:"C678DD"},{token:"invalid.illegal",foreground:"FFFFFF"},{token:"invalid.illegal.bad-ampersand.html",foreground:"ABB2BF"},{token:"invalid.illegal.unrecognized-tag.html",foreground:"E06C75"},{token:"invalid.broken",foreground:"FFFFFF"},{token:"invalid.deprecated",foreground:"FFFFFF"},{token:"invalid.deprecated.entity.other.attribute-name.html",foreground:"D19A66"},{token:"invalid.unimplemented",foreground:"FFFFFF"},{token:"source.json meta.structure.dictionary.json > string.quoted.json",foreground:"E06C75"},{token:"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string",foreground:"E06C75"},{token:"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation",foreground:"98C379"},{token:"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json",foreground:"56B6C2"},{token:"support.type.property-name.json",foreground:"E06C75"},{token:"support.type.property-name.json punctuation",foreground:"E06C75"},{token:"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade",foreground:"C678DD"},{token:"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade",foreground:"C678DD"},{token:"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php",foreground:"E5C07B"},{token:"keyword.operator.error-control.php",foreground:"C678DD"},{token:"keyword.operator.type.php",foreground:"C678DD"},{token:"punctuation.section.array.begin.php",foreground:"ABB2BF"},{token:"punctuation.section.array.end.php",foreground:"ABB2BF"},{token:"invalid.illegal.non-null-typehinted.php",foreground:"F44747"},{token:"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php",foreground:"E5C07B"},{token:"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php",foreground:"61AFEF"},{token:"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php",foreground:"ABB2BF"},{token:"support.constant.core.rust",foreground:"D19A66"},{token:"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php",foreground:"D19A66"},{token:"entity.name.goto-label.php,support.other.php",foreground:"61AFEF"},{token:"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php",foreground:"56B6C2"},{token:"keyword.operator.regexp.php",foreground:"C678DD"},{token:"keyword.operator.comparison.php",foreground:"56B6C2"},{token:"keyword.operator.heredoc.php,keyword.operator.nowdoc.php",foreground:"C678DD"},{token:"meta.function.decorator.python",foreground:"61AFEF"},{token:"support.token.decorator.python,meta.function.decorator.identifier.python",foreground:"56B6C2"},{token:"function.parameter",foreground:"ABB2BF"},{token:"function.brace",foreground:"ABB2BF"},{token:"function.parameter.ruby, function.parameter.cs",foreground:"ABB2BF"},{token:"constant.language.symbol.ruby",foreground:"56B6C2"},{token:"constant.language.symbol.hashkey.ruby",foreground:"56B6C2"},{token:"rgb-value",foreground:"56B6C2"},{token:"inline-color-decoration rgb-value",foreground:"D19A66"},{token:"less rgb-value",foreground:"D19A66"},{token:"selector.sass",foreground:"E06C75"},{token:"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx",foreground:"E5C07B"},{token:"block.scope.end,block.scope.begin",foreground:"ABB2BF"},{token:"storage.type.cs",foreground:"E5C07B"},{token:"entity.name.variable.local.cs",foreground:"E06C75"},{token:"token.info-token",foreground:"61AFEF"},{token:"token.warn-token",foreground:"D19A66"},{token:"token.error-token",foreground:"F44747"},{token:"token.debug-token",foreground:"C678DD"},{token:"punctuation.definition.template-expression.begin",foreground:"C678DD"},{token:"punctuation.definition.template-expression.end",foreground:"C678DD"},{token:"punctuation.section.embedded",foreground:"C678DD"},{token:"meta.template.expression",foreground:"ABB2BF"},{token:"keyword.operator.module",foreground:"C678DD"},{token:"support.type.type.flowtype",foreground:"61AFEF"},{token:"support.type.primitive",foreground:"E5C07B"},{token:"meta.property.object",foreground:"E06C75"},{token:"variable.parameter.function.js",foreground:"E06C75"},{token:"keyword.other.template.begin",foreground:"98C379"},{token:"keyword.other.template.end",foreground:"98C379"},{token:"keyword.other.substitution.begin",foreground:"98C379"},{token:"keyword.other.substitution.end",foreground:"98C379"},{token:"keyword.operator.assignment",foreground:"56B6C2"},{token:"keyword.operator.assignment.go",foreground:"E5C07B"},{token:"keyword.operator.arithmetic.go",foreground:"C678DD"},{token:"keyword.operator.address.go",foreground:"C678DD"},{token:"entity.name.package.go",foreground:"E5C07B"},{token:"support.type.prelude.elm",foreground:"56B6C2"},{token:"support.constant.elm",foreground:"D19A66"},{token:"punctuation.quasi.element",foreground:"C678DD"},{token:"constant.character.entity",foreground:"E06C75"},{token:"entity.other.attribute-name.pseudo-element",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class",foreground:"56B6C2"},{token:"entity.global.clojure",foreground:"E5C07B"},{token:"meta.symbol.clojure",foreground:"E06C75"},{token:"constant.keyword.clojure",foreground:"56B6C2"},{token:"meta.arguments.coffee",foreground:"E06C75"},{token:"variable.parameter.function.coffee",foreground:"E06C75"},{token:"source.ini",foreground:"98C379"},{token:"meta.scope.prerequisites.makefile",foreground:"E06C75"},{token:"source.makefile",foreground:"E5C07B"},{token:"storage.modifier.import.groovy",foreground:"E5C07B"},{token:"meta.method.groovy",foreground:"61AFEF"},{token:"meta.definition.variable.name.groovy",foreground:"E06C75"},{token:"meta.definition.class.inherited.classes.groovy",foreground:"98C379"},{token:"support.variable.semantic.hlsl",foreground:"E5C07B"},{token:"support.type.texture.hlsl",foreground:"C678DD"},{token:"support.type.sampler.hlsl",foreground:"C678DD"},{token:"support.type.object.hlsl",foreground:"C678DD"},{token:"support.type.object.rw.hlsl",foreground:"C678DD"},{token:"support.type.fx.hlsl",foreground:"C678DD"},{token:"support.type.object.hlsl",foreground:"C678DD"},{token:"text.variable",foreground:"E06C75"},{token:"text.bracketed",foreground:"E06C75"},{token:"support.type.swift",foreground:"E5C07B"},{token:"support.type.vb.asp",foreground:"E5C07B"},{token:"entity.name.function.xi",foreground:"E5C07B"},{token:"entity.name.class.xi",foreground:"56B6C2"},{token:"constant.character.character-class.regexp.xi",foreground:"E06C75"},{token:"constant.regexp.xi",foreground:"C678DD"},{token:"keyword.control.xi",foreground:"56B6C2"},{token:"invalid.xi",foreground:"ABB2BF"},{token:"beginning.punctuation.definition.quote.markdown.xi",foreground:"98C379"},{token:"beginning.punctuation.definition.list.markdown.xi",foreground:"7F848E"},{token:"constant.character.xi",foreground:"61AFEF"},{token:"accent.xi",foreground:"61AFEF"},{token:"wikiword.xi",foreground:"D19A66"},{token:"constant.other.color.rgb-value.xi",foreground:"FFFFFF"},{token:"punctuation.definition.tag.xi",foreground:"5C6370"},{token:"entity.name.label.cs",foreground:"E5C07B"},{token:"entity.name.scope-resolution.function.call",foreground:"E5C07B"},{token:"entity.name.scope-resolution.function.definition",foreground:"E5C07B"},{token:"entity.name.label.cs",foreground:"E06C75"},{token:"markup.heading.setext.1.markdown",foreground:"E06C75"},{token:"markup.heading.setext.2.markdown",foreground:"E06C75"},{token:" meta.brace.square",foreground:"ABB2BF"},{token:"comment, punctuation.definition.comment",foreground:"7F848E"},{token:"markup.quote.markdown",foreground:"5C6370"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"ABB2BF"},{token:"constant.language.symbol.elixir",foreground:"56B6C2"},{token:"constant.language.symbol.double-quoted.elixir",foreground:"56B6C2"},{token:"entity.name.variable.parameter.cs",foreground:"E5C07B"},{token:"entity.name.variable.field.cs",foreground:"E06C75"},{token:"markup.deleted",foreground:"E06C75"},{token:"markup.inserted",foreground:"98C379"},{token:"markup.underline",fontStyle:"underline"},{token:"punctuation.section.embedded.begin.php",foreground:"BE5046"},{token:"punctuation.section.embedded.end.php",foreground:"BE5046"},{token:"support.other.namespace.php",foreground:"ABB2BF"},{token:"variable.parameter.function.latex",foreground:"E06C75"},{token:"variable.other.object",foreground:"E5C07B"},{token:"variable.other.constant.property",foreground:"E06C75"},{token:"entity.other.inherited-class",foreground:"E5C07B"},{token:"variable.other.readwrite.c",foreground:"E06C75"},{token:"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php",foreground:"ABB2BF"},{token:"constant.numeric.decimal.asm.x86_64",foreground:"C678DD"},{token:"support.other.parenthesis.regexp",foreground:"D19A66"},{token:"constant.character.escape",foreground:"56B6C2"},{token:"string.regexp",foreground:"E06C75"},{token:"log.info",foreground:"98C379"},{token:"log.warning",foreground:"E5C07B"},{token:"log.error",foreground:"E06C75"},{token:"keyword.operator.expression.is",foreground:"C678DD"},{token:"entity.name.label",foreground:"E06C75"},{token:"enumMember",foreground:"56B6C2"},{token:"variable.constant",foreground:"D19A66"},{token:"variable.defaultLibrary",foreground:"E5C07B"},{token:"variable:dart",foreground:"D19A66"},{token:"property:dart",foreground:"D19A66"},{token:"annotation:dart",foreground:"D19A66"},{token:"parameter.label:dart",foreground:"ABB2BF"},{token:"macro",foreground:"D19A66"},{token:"tomlArrayKey",foreground:"E5C07B"},{token:"memberOperatorOverload",foreground:"C678DD"}],colors:{"badge.background":"#23272E","button.background":"#404754",descriptionForeground:"#ABB2BF","diffEditor.insertedTextBackground":"#00809B33","dropdown.background":"#1E2227","dropdown.border":"#1E2227","editor.background":"#23272E","editor.findMatchBackground":"#D19A6644","editor.findMatchHighlightBackground":"#FFFFFF22","editor.foreground":"#ABB2BF","editorInlayHint.foreground":"#ABB2BF","editorInlayHint.background":"#2C313C","editor.lineHighlightBackground":"#2C313C","editorLineNumber.activeForeground":"#ABB2BF","editor.selectionBackground":"#67769660","editor.selectionHighlightBackground":"#FFFFFF10","editor.wordHighlightBackground":"#D2E0FF2F","editor.wordHighlightStrongBackground":"#ABB2BF26","editorBracketMatch.background":"#515A6B","editorBracketMatch.border":"#515A6B","editorCursor.foreground":"#528BFF","editorError.foreground":"#C24038","editorHoverWidget.background":"#1E2227","editorHoverWidget.border":"#181A1F","editorIndentGuide.background":"#3B4048","editorLineNumber.foreground":"#495162","editorMarkerNavigation.background":"#1E2227","editorRuler.foreground":"#ABB2BF26","editorSuggestWidget.background":"#1E2227","editorSuggestWidget.border":"#181A1F","editorSuggestWidget.selectedBackground":"#2C313A","editorWarning.foreground":"#D19A66","editorWhitespace.foreground":"#FFFFFF1D","editorWidget.background":"#1E2227",focusBorder:"#3E4452","input.background":"#1D1F23","input.foreground":"#ABB2BF","list.activeSelectionBackground":"#2C313A","list.activeSelectionForeground":"#D7DAE0","list.focusBackground":"#323842","list.focusForeground":"#F0F0F0","list.highlightForeground":"#ECEBEB","list.hoverBackground":"#2C313A","list.hoverForeground":"#ABB2BF","list.inactiveSelectionBackground":"#323842","list.inactiveSelectionForeground":"#D7DAE0","peekViewEditor.background":"#1B1D23","peekViewEditor.matchHighlightBackground":"#29244B","peekViewResult.background":"#22262B","scrollbar.shadow":"#23252C","scrollbarSlider.activeBackground":"#747D9180","scrollbarSlider.background":"#4E566660","scrollbarSlider.hoverBackground":"#5A637580","textBlockQuote.background":"#2E3440","textBlockQuote.border":"#4B5362","textLink.foreground":"#61AFEF","textPreformat.foreground":"#D19A66"}},"one-monokai":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"676F7D"},{token:"string.comment",foreground:"676F7D"},{token:"string",foreground:"E5C07B"},{token:"string.template",foreground:"E5C07B"},{token:"constant.numeric",foreground:"C678DD"},{token:"string.embedded.begin",foreground:"C678DD"},{token:"string.embedded.end",foreground:"C678DD"},{token:"punctuation.definition.template-expression",foreground:"C678DD"},{token:"punctuation.section.embedded",foreground:"C678DD"},{token:"punctuation.section.embedded.begin.js",foreground:"ABB2BF"},{token:"punctuation.section.embedded.end.js",foreground:"ABB2BF"},{token:"punctuation.section.embedded.begin.erb",foreground:"ABB2BF"},{token:"punctuation.section.embedded.end.erb",foreground:"ABB2BF"},{token:"source.elixir.embedded",foreground:"ABB2BF"},{token:"punctuation.separator",foreground:"ABB2BF"},{token:"punctuation.accessor",foreground:"ABB2BF"},{token:"meta.brace",foreground:"ABB2BF"},{token:"constant.language",foreground:"56B6C2"},{token:"constant.character",foreground:"56B6C2"},{token:"constant.other",foreground:"56B6C2"},{token:"variable.language",foreground:"E06C75"},{token:"keyword",foreground:"E06C75"},{token:"keyword.operator.logical",foreground:"E06C75"},{token:"keyword.operator.constructor",foreground:"E06C75"},{token:"keyword.operator",foreground:"E06C75"},{token:"storage",foreground:"E06C75"},{token:"storage.type",foreground:"56B6C2"},{token:"entity.name.class",foreground:"61AFEF"},{token:"entity.name.module",foreground:"61AFEF"},{token:"entity.name.type",foreground:"61AFEF"},{token:"storage.identifier",foreground:"61AFEF"},{token:"support.class",foreground:"61AFEF"},{token:"variable.other.object",foreground:"61AFEF"},{token:"variable.other.constant",foreground:"61AFEF"},{token:"variable.other.global",foreground:"61AFEF"},{token:"variable.other.readwrite.class",foreground:"61AFEF"},{token:"variable.other.readwrite.instance",foreground:"61AFEF"},{token:"variable.other.readwrite.batchfile",foreground:"61AFEF"},{token:"variable.readwrite",foreground:"61AFEF"},{token:"variable.readwrite.other.block",foreground:"61AFEF"},{token:"variable.other",foreground:"ABB2BF"},{token:"variable.other.property",foreground:"ABB2BF"},{token:"variable.other.block",foreground:"ABB2BF"},{token:"entity.other.inherited-class",foreground:"98C379"},{token:"storage.modifier.import",foreground:"61AFEF"},{token:"storage.modifier.package",foreground:"61AFEF"},{token:"entity.name.function",foreground:"98C379"},{token:"support.function",foreground:"98C379"},{token:"variable.parameter",foreground:"D19A66",fontStyle:"italic"},{token:"entity.name.variable.parameter",foreground:"D19A66",fontStyle:"italic"},{token:"parameter.variable",foreground:"D19A66",fontStyle:"italic"},{token:"entity.name.function-call",foreground:"ABB2BF"},{token:"function.support.builtin",foreground:"98C379"},{token:"function.support.core",foreground:"98C379"},{token:"entity.name.tag",foreground:"E06C75"},{token:"entity.name.tag.class.js",foreground:"E06C75"},{token:"entity.name.tag.class",foreground:"56B6C2"},{token:"entity.name.tag.id",foreground:"56B6C2"},{token:"entity.other.attribute-name",foreground:"98C379"},{token:"support.constant",foreground:"56B6C2"},{token:"support.type",foreground:"56B6C2"},{token:"support.variable",foreground:"56B6C2"},{token:"support.dictionary.json",foreground:"56B6C2"},{token:"support.type.property-name.css",foreground:"ABB2BF"},{token:"support.type.property-name.scss",foreground:"ABB2BF"},{token:"support.type.property-name.less",foreground:"ABB2BF"},{token:"support.type.property-name.sass",foreground:"ABB2BF"},{token:"entity.other.attribute-name.pseudo-class.css",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.scss",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.less",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.sass",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.css",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.scss",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.less",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.sass",foreground:"56B6C2"},{token:"support.constant.css",foreground:"98C379"},{token:"support.constant.scss",foreground:"98C379"},{token:"support.constant.less",foreground:"98C379"},{token:"support.constant.sass",foreground:"98C379"},{token:"variable.css",foreground:"56B6C2"},{token:"variable.scss",foreground:"56B6C2"},{token:"variable.less",foreground:"56B6C2"},{token:"variable.sass",foreground:"56B6C2"},{token:"variable.css.string",foreground:"E5C07B"},{token:"variable.scss.string",foreground:"E5C07B"},{token:"variable.less.string",foreground:"E5C07B"},{token:"variable.sass.string",foreground:"E5C07B"},{token:"unit.css",foreground:"C678DD"},{token:"unit.scss",foreground:"C678DD"},{token:"unit.less",foreground:"C678DD"},{token:"unit.sass",foreground:"C678DD"},{token:"function.css",foreground:"56B6C2"},{token:"function.scss",foreground:"56B6C2"},{token:"function.less",foreground:"56B6C2"},{token:"function.sass",foreground:"56B6C2"},{token:"support.other.variable"},{token:"invalid",foreground:"F8F8F0"},{token:"invalid.deprecated",foreground:"F8F8F0"},{token:"support.type.property-name.json",foreground:"56B6C2"},{token:"string.detected-link",foreground:"61AFEF"},{token:"meta.diff",foreground:"75715E"},{token:"meta.diff.header",foreground:"75715E"},{token:"markup.deleted",foreground:"E06C75"},{token:"markup.inserted",foreground:"98C379"},{token:"markup.changed",foreground:"E5C07B"},{token:"constant.numeric.line-number.find-in-files - match",foreground:"56B6C2A0"},{token:"entity.name.filename.find-in-files",foreground:"E5C07B"},{token:"markup.italic, markup.italic.markdown",fontStyle:"italic"},{token:"punctuation.definition.italic.markdown",foreground:"676F7D"},{token:"punctuation.definition.bold.markdown",foreground:"676F7D"},{token:"punctuation.definition.heading.markdown",foreground:"676F7D"},{token:"punctuation.definition.italic.markdown",fontStyle:"italic"},{token:"markup.underline.link.markdown",foreground:"61AFEF"},{token:"markup.bold.markdown",fontStyle:"bold"},{token:"markup.heading.markdown",foreground:"E06C75",fontStyle:"bold"},{token:"markup.quote.markdown",foreground:"98C379"},{token:"meta.separator.markdown",foreground:"C678DD",fontStyle:"bold"},{token:"markup.raw.inline.markdown",foreground:"56B6C2"},{token:"markup.raw.block.markdown",foreground:"56B6C2"},{token:"punctuation.definition.list_item.markdown",foreground:"FFFFFF",fontStyle:"bold"}],colors:{"button.background":"#528BFF","diffEditor.insertedTextBackground":"#00809B33","dropdown.background":"#1D1F23","dropdown.border":"#181A1F","editor.background":"#282C34","editor.findMatchBackground":"#42557B","editor.findMatchHighlightBackground":"#314365","editor.lineHighlightBackground":"#383E4A","editor.selectionBackground":"#3E4451","editorCursor.foreground":"#F8F8F0","editorError.foreground":"#C24038","editorIndentGuide.background":"#3B4048","editorHoverWidget.background":"#21252B","editorHoverWidget.border":"#181A1F","editorLineNumber.foreground":"#495162","editorRuler.foreground":"#484848","editorSuggestWidget.background":"#21252B","editorSuggestWidget.border":"#181A1F","editorSuggestWidget.selectedBackground":"#2C313A","editorWhitespace.foreground":"#484A50","editorWidget.background":"#21252B","input.background":"#1D1F23","list.activeSelectionBackground":"#2C313A","list.activeSelectionForeground":"#D7DAE0","list.focusBackground":"#383E4A","list.highlightForeground":"#C5C5C5","list.hoverBackground":"#292D35","list.inactiveSelectionBackground":"#2C313A","list.inactiveSelectionForeground":"#D7DAE0","scrollbarSlider.activeBackground":"#747D9180","scrollbarSlider.background":"#4E566680","scrollbarSlider.hoverBackground":"#5A637580"}}};var be=({filename:e,endpoint:o,technologies:t,theme:n,completionSpeed:r,externalContext:a,...i})=>{let[u,g]=M.useState(null),s=M.useCallback((d,c)=>{g(c),n&&!U.includes(n)&&(c.editor.defineTheme(n,ge[n]),c.editor.setTheme(n)),i.onMount?.(d,c)},[i,n]);return de(e,o,t,i.language,r,a,u),M.createElement(ye,{...i,key:n,theme:n,onMount:s,options:D(i.options,$)})},Ee=be;export{pe as Copilot,Ee as default};
22
+ }`,") =>":` {
23
+ $1
24
+ }`,"=>":` {
25
+ $1
26
+ }`,"new M":"ap","new W":"eakMap"};var z=[{language:"javascript",snippets:Q}];var D=class{constructor(){this.predictions=new Map,this.loadPredictions()}loadPredictions(){z.forEach(o=>{this.predictions.set(o.language,o.snippets)})}predictCode(o,t){let n=this.predictions.get(o);if(!n)return"";t=w(t);for(let r in n)if(t.startsWith(w(r)))return n[r];return""}};var K=(e,o)=>e[o]||"",j=e=>e.split(`
27
+ `)[e.split(`
28
+ `).length-1].length;var Y=(e,o)=>e.split(`
29
+ `)[o-1];var J=(e,o)=>{let t=o.getLineContent(e.lineNumber),n=e.column-1,r=t.substring(n);return/\s/.test(r)},X=(e,o)=>{let t=new Set(['"',"'","}","]",")",","," ",":","."]),n=o.getLineContent(e.lineNumber),r=K(n,e.column-1);return!t.has(r)&&!!r},h=(e,o)=>{let t=o.getValueInRange({startLineNumber:1,startColumn:1,endLineNumber:e.lineNumber,endColumn:e.column}),n=o.getValueInRange({startLineNumber:e.lineNumber,startColumn:e.column,endLineNumber:o.getLineCount(),endColumn:o.getLineMaxColumn(o.getLineCount())});return{codeBeforeCursor:t,codeAfterCursor:n}},Z=(e,o)=>{let t=o.getLineContent(e.lineNumber),n=t.slice(e.column-1).trim(),r=t.slice(0,e.column-1).trim();return e.column<=3&&(n!==""||r!=="")},ee=(e,o)=>{let{lineNumber:t,column:n}=e,r=o.getLineContent(t),i=r.slice(0,n-1).trim(),u=r.slice(n-1).trim(),d=i.length>0,g=u.length>0;return d&&g?"fill-in-the-middle":"completion"};var oe={javascript:1,typescript:2,typescriptreact:3,python:4,vue:5,php:6,dart:7,javascriptreact:8,go:9,css:10,cpp:11,html:12,scss:13,markdown:14,csharp:15,java:16,json:17,rust:18,ruby:19,c:20},T={" ":1,"!":2,'"':3,"#":4,$:5,"%":6,"&":7,"'":8,"(":9,")":10,"*":11,"+":12,",":13,"-":14,".":15,"/":16,0:17,1:18,2:19,3:20,4:21,5:22,6:23,7:24,8:25,9:26,":":27,";":28,"<":29,"=":30,">":31,"?":32,"@":33,A:34,B:35,C:36,D:37,E:38,F:39,G:40,H:41,I:42,J:43,K:44,L:45,M:46,N:47,O:48,P:49,Q:50,R:51,S:52,T:53,U:54,V:55,W:56,X:57,Y:58,Z:59,"[":60,"\\":61,"]":62,"^":63,_:64,"`":65,a:66,b:67,c:68,d:69,e:70,f:71,g:72,h:73,i:74,j:75,k:76,l:77,m:78,n:79,o:80,p:81,q:82,r:83,s:84,t:85,u:86,v:87,w:88,x:89,y:90,z:91,"{":92,"|":93,"}":94,"~":95},s=[.9978708359643611,.7001905605239328,-.1736749244124868,-.22994157947320112,.13406692641682572,-.007751370662011853,.0057783222035240715,.41910878254476003,-.1621657125711092,.13770814958908187,-.06036011308184006,-.07351180985800129,0,-.05584878151248109,.30618794079412015,-.1282197982598485,.10951859303997555,.1700461782788777,-.3346057842644757,.22497985923128136,0,-.44038101825774356,-.6540115939236782,.16595600081341702,.20733910722385135,-.1337033766105696,-.06923072125290894,-.05806684191976292,.3583334671633344,-.47357732824944315,.17810871365594377,.42268219963946685,0,0,-.16379620467004602,-.43893868831061167,0,.11570094006709251,.9326431262654882,-.9990110509203912,-.44125275652726503,-.15840786997162004,-.4600396256644451,-.018814811994044403,.09230944537175266,.025814790934742798,-1.0940162204190154,-.9407503631235489,-.9854303778694269,-1.1045822488262245,-1.1417299456573262,-1.5623704405345513,-.4157473855795939,-1.0244257735561713,-.7477401944601753,-1.1275109699068402,-.0714715633552533,-1.1408628006786907,-1.0409898655074672,-.2288889836518878,-.5469549893760344,-.181946611106845,.1264329316374918,0,0,.312206968554707,-.3656436392517924,.23655650686038968,.1014912419901576,0,.06287549221765308,0,0,.19027065218932154,-.8519502045974378,0,.23753599905971923,.2488809322489166,.019969251907983224,0,.06916505526229488,.29053356359188204,-.14484456555431657,.014768129429370188,-.15051464926341374,.07614835502776021,-.3317489901313935,0,0,.04921938684669103,-.28248576768353445,-.9708816204525345,-1.3560464522265527,.014165375212383239,-.23924166472544983,.10006595730248855,.09867233147279562,.32330430333220644,-.058625706114180595,.17149853105783947,.4436484054395367,.047189049576707255,.16832520944790552,.1117259900942179,-.35469010329927253,0,-.1528189124465582,-.3804848349564939,.07278077320753953,.13263786480064088,.22920682659292527,1.1512955314336537,0,.016939862282340023,.4242994650403408,.12759835577444986,-.5577261135825583,-.19764560943067672,-.4042102444736004,.12063461617733708,-.2933966817484834,.2715683893968593,0,-.7138548251238751,0,-.023066228703035277,0,-.06383043976746139,.09683723720709651,-.7337151424080791,0,-.27191370124625525,.2819781269656171,-.08711496549050252,.11048604909969338,-.0934849550450534,.0721001250772912,.2589126797890794,.6729582659532254,-.21921032738244908,-.21535277468651456,-.45474006124091354,-.05861820126419139,-.007875306207720204,-.056661261678809284,.17727881404222662,.23603713348534658,.17485861412377932,-.5737483768696752,-.38220029570342745,-.5202722985519168,-.37187947527657256,.47155277792990113,-.12077912346691123,.47825628981545326,.4736704404000214,-.1615218651546898,.18362447973513005,0,0,-.18183417425866824,0,0,-.2538532305733833,-.1303692690676528,-.4073577969188216,.04172985870928789,-.1704527388573901,0,0,.7536858953385828,-.44703159588787644,0,-.7246484085580873,-.21378128540782063,0,.037461090552656146,-.16205852364367032,-.10973952064404884,.017468043407647377,-.1288980387397392,0,0,0,-1.218692715379445,.05536949662193305,-.3763799844799116,-.1845001725624579,-.1615576298149558,0,-.15373262203249874,-.04603412604270418,0,-.3068149681460828,.09412352468269412,0,.09116543650609721,.06065865264082559,.05688267379386188,-.05873945477722306,0,.14532465133322153,.1870857769705463,.36304258043185555,.1411392422180405,.0630388629716367,0,-1.1170522012450395,.16133697772771127,.15908534390781448,-.23485453704002232,-.1419980841417892,.21909510179526218,.39948420260153766,.40802294284289187,.15403767653746853,0,.19764784115096676,.584914157527457,0,-.4573883817015294],te=-.3043572714994554,ne=.15;var M=class{constructor(){this.previousLabel=0,this.previousLabelTimestamp=Date.now()-3600*1e3,this.probabilityAccept=0}},re=e=>{let o=new M,t=o.previousLabel,n=0;e.properties.afterCursorWhitespace==="true"&&(n=1);let r=(Date.now()-o.previousLabelTimestamp)/1e3,i=Math.log(1+r),u=0,d=0,g=0,f=0;if(e.prefix){u=Math.log(1+j(e.prefix));let F=e.prefix.slice(-1);d=T[F]??0}let a=e.prefix?.trimEnd();if(a){g=Math.log(1+j(a));let F=a.slice(-1);f=T[F]??0}let c=e.measurements.documentLength?Math.log(1+e.measurements.documentLength):0,m=e.measurements.promptEndPos?Math.log(1+e.measurements.promptEndPos):0,y=e.measurements.promptEndPos&&e.measurements.documentLength?(e.measurements.promptEndPos+.5)/(1+e.measurements.documentLength):0,b=e.properties.languageId?oe[e.properties.languageId]:0,k=te;k+=s[0]*t+s[1]*n+s[2]*i,k+=s[3]*u+s[4]*g,k+=s[5]*c+s[6]*m,k+=s[7]*y,k+=s[8+b],k+=s[29+d],k+=s[125+f];let l=1/(1+Math.exp(-k));return o.probabilityAccept=l,l};var ie=(e,o,t)=>Fe(e,o,t)>ne&&!X(e,o)&&!Z(e,o),Fe=(e,o,t)=>{let{codeBeforeCursor:n}=h(e,o),r=J(e,o),i=o.getValueLength(),u=o.getOffsetAt(e);return re({properties:{afterCursorWhitespace:r?"true":"false",languageId:t},measurements:{documentLength:i,promptEndPos:u},prefix:n})};var ae=async({filename:e,endpoint:o,code:t,language:n,technologies:r,externalContext:i,model:u,position:d,token:g})=>{if(!ie(d,u,n)||!t)return null;let f=new AbortController;if(g.isCancellationRequested)return f.abort(),null;let{completion:a,error:c}=await C.POST(o,{completionMetadata:me({filename:e,position:d,model:u,language:n,technologies:r,externalContext:i})},{headers:{"Content-Type":"application/json"},error:"Error while fetching completion item",signal:f.signal});return c||!a?null:a},me=({filename:e,position:o,model:t,language:n,technologies:r,externalContext:i})=>{let u=ee(o,t),{codeBeforeCursor:d,codeAfterCursor:g}=h(o,t);return{filename:e,language:n,technologies:r,externalContext:i,codeBeforeCursor:d,codeAfterCursor:g,editorState:{completionMode:u}}},ue=(e,o)=>{let{codeBeforeCursor:t}=h(e,o);return`${e.lineNumber}:${e.column}:${t}`};import L from"react";var Be=(e,o=1e3)=>{let t=L.useRef(null),n=L.useCallback((...r)=>(t.current&&clearTimeout(t.current),new Promise((i,u)=>{t.current=setTimeout(()=>{e(...r).then(i).catch(u)},o)})),[e,o]);return L.useEffect(()=>()=>{t.current&&clearTimeout(t.current)},[]),n},de=Be;var he=new D,ye=(e,o,t,n,r,i)=>{let u=R.useRef(new Map),d=R.useRef(!1),g=de(ae,300);return R.useEffect(()=>{if(!i||!n||!o)return;let f=i.languages.registerInlineCompletionsProvider(n,{provideInlineCompletions:async(a,c,m,y)=>{if(d.current)return d.current=!1,{items:[]};let b=a.getValue(),k=new i.Range(c.lineNumber,c.column,c.lineNumber,c.column),l=ue(c,a);if(u.current.has(l)){let p=u.current.get(l);if(d.current=!0,p)return{items:[p],enableForwardStability:!0}}let F=he.predictCode(n,Y(b,c.lineNumber));if(F){let p={insertText:{snippet:F},range:k,completeBracketPairs:!0};return u.current.set(l,p),{items:[p],enableForwardStability:!0}}if(y.isCancellationRequested)return{items:[]};try{let p=await g({filename:e,endpoint:o,code:b,language:n,technologies:t,externalContext:r,model:a,position:c,token:y});if(p){let H={insertText:p,range:k};return u.current.set(l,H),d.current=!0,{items:[H],enableForwardStability:!0}}}catch{return{items:[]}}return{items:[]}},freeInlineCompletions:()=>{}});return()=>{f.dispose()}},[i,n,t,r,g,o,e]),null},ge=ye;var ce={"codesandbox-dark":{base:"vs-dark",inherit:!0,rules:[{token:"string",foreground:"BFD084"},{token:"punctuation.definition.string",foreground:"BFD084"},{token:"constant.character.escape",foreground:"BFD084"},{token:"text.html constant.character.entity.named",foreground:"BFD084"},{token:"text.html.derivative",foreground:"E5E5E5"},{token:"punctuation.definition.entity.html",foreground:"BFD084"},{token:"template.expression.begin",foreground:"7AD9FB"},{token:"template.expression.end",foreground:"7AD9FB"},{token:"punctuation.definition.template-expression.begin",foreground:"7AD9FB"},{token:"punctuation.definition.template-expression.end",foreground:"7AD9FB"},{token:"constant",foreground:"7AD9FB"},{token:"keyword",foreground:"A390FF"},{token:"modifier",foreground:"A390FF"},{token:"storage",foreground:"A390FF"},{token:"punctuation.definition.block",foreground:"86897A"},{token:"punctuation.definition.parameters",foreground:"86897A"},{token:"meta.brace.round",foreground:"86897A"},{token:"meta.jsx.children",foreground:"E5E5E5"},{token:"punctuation.accessor",foreground:"86897A"},{token:"variable.other",foreground:"FFFFFF"},{token:"variable.parameter",foreground:"FFFFFF"},{token:"meta.embedded",foreground:"E5E5E5"},{token:"source.groovy.embedded",foreground:"E5E5E5"},{token:"meta.template.expression",foreground:"E5E5E5"},{token:"comment",foreground:"6F6F6F"},{token:"docblock",foreground:"6F6F6F"},{token:"meta.function-call",foreground:"CDF861"},{token:"meta.class entity.name.type.class",foreground:"FFFFFF",fontStyle:"underline"},{token:"meta.class entity.name.type.module",foreground:"CABEFF"},{token:"meta.class meta.type.annotation",foreground:"A390FF"},{token:"meta.class support.type.primitive",foreground:"A390FF"},{token:"meta.interface support.type.primitive",foreground:"A390FF"},{token:"meta.type.annotation support.type.primitive",foreground:"A390FF"},{token:"meta.type.annotation entity.name.type",foreground:"CABEFF"},{token:"variable.object.property",foreground:"FFFFFF"},{token:"entity.name.function",foreground:"CDF861"},{token:"meta.definition.variable",foreground:"FFFFFF"},{token:"modifier",foreground:"A390FF"},{token:"variable.language.this",foreground:"A390FF"},{token:"support.type.object",foreground:"A390FF"},{token:"support.module",foreground:"7AD9FB",fontStyle:"italic"},{token:"support.node",foreground:"7AD9FB",fontStyle:"italic"},{token:"support.type.ts",foreground:"7AD9FB"},{token:"entity.other.inherited-class",foreground:"7AD9FB"},{token:"meta.interface entity.name.type.interface",foreground:"7AD9FB"},{token:"keyword.operator",foreground:"B3E8B4"},{token:"storage.type.function.arrow",foreground:"B3E8B4"},{token:"variable.css",foreground:"7AD9FB"},{token:"source.css",foreground:"CDF861"},{token:"entity.other.attribute-name",foreground:"CDF861"},{token:"entity.name.tag.css",foreground:"CDF861"},{token:"entity.other.attribute-name.id",foreground:"CDF861"},{token:"entity.other.attribute-name.class",foreground:"CDF861"},{token:"source.css meta.selector.css",foreground:"CDF861"},{token:"support.type.property-name.css",foreground:"FFFFFF"},{token:"support.function.css",foreground:"A390FF"},{token:"support.constant.css",foreground:"A390FF"},{token:"keyword.css",foreground:"A390FF"},{token:"constant.numeric.css",foreground:"A390FF"},{token:"constant.other.color.css",foreground:"A390FF"},{token:"punctuation.section",foreground:"86897A"},{token:"punctuation.separator",foreground:"86897A"},{token:"punctuation.definition.entity.css",foreground:"86897A"},{token:"punctuation.terminator.rule.css",foreground:"E5E5E5"},{token:"source.css keyword.other.unit",foreground:"CABEFF"},{token:"string.css",foreground:"CABEFF"},{token:"punctuation.definition.string.css",foreground:"CABEFF"},{token:"support.type.property-name",foreground:"FFFFFF"},{token:"string.html",foreground:"CDF861"},{token:"punctuation.definition.tag",foreground:"86897A"},{token:"entity.other.attribute-name",foreground:"CABEFF"},{token:"entity.name.tag",foreground:"A390FF"},{token:"entity.name.tag.wildcard",foreground:"CDF861"},{token:"markup.markdown",foreground:"FFFFFF"},{token:"markup.heading.markdown",foreground:"B3E8B4"},{token:"punctuation.definition.bold.markdown",foreground:"B3E8B4"},{token:"meta.paragraph.markdown punctuation.definition.link.description",foreground:"B3E8B4"},{token:"punctuation.definition.raw.markdown",foreground:"B3E8B4"},{token:"meta.paragraph.markdown",foreground:"E5E5E5"},{token:"text.html.markdown meta.attribute",foreground:"CABEFF"},{token:"entity.name.section",foreground:"FFFFFF"},{token:"string.other",foreground:"FFFFFF"},{token:"string.other.link",foreground:"FFFFFF"},{token:"punctuation.definition.markdown",foreground:"B3E8B4"},{token:"punctuation.definition.string",foreground:"B3E8B4"},{token:"punctuation.definition.string.begin.shell",foreground:"B3E8B4"},{token:"markup.underline.link",foreground:"BFD084"},{token:"markup.inline.raw",foreground:"86897A"},{token:"text.html.vue variable.other.readwrite",foreground:"A390FF"},{token:"text.html.vue meta.object-literal.key",foreground:"FFFFFF"},{token:"text.html.vue entity.name.tag.css",foreground:"A390FF"},{token:"text.html.vue entity.other.attribute-name",foreground:"FFFFFF"},{token:"text.html.vue constant.numeric.css",foreground:"7AD9FB"},{token:"text.html.vue keyword.other.unit",foreground:"A390FF"},{token:"text.html.vue support.constant.property-value",foreground:"A390FF"},{token:"text.html.vue support.constant.color",foreground:"A390FF"},{token:"function.defaultLibrary"},{token:"class.defaultLibrary"}],colors:{foreground:"#E5E5E5",focusBorder:"#AD9CFF","selection.background":"#6F6F6F","scrollbar.shadow":"#0000007E","input.background":"#0F0E0E","input.foreground":"#999","button.background":"#EDFFA5","button.foreground":"#151515","button.hoverBackground":"#DCFF50","textLink.foreground":"#E5E5E5","list.dropBackground":"#151515","list.focusForeground":"#808080","list.focusBackground":"#E5E5E51A","list.highlightForeground":"#E5E5E5","editor.background":"#151515","editorLineNumber.foreground":"#858585","editorLineNumber.activeForeground":"#C6C6C6","scrollbarSlider.background":"#79797966","scrollbarSlider.hoverBackground":"#646464B3","scrollbarSlider.activeBackground":"#BFBFBF66","widget.shadow":"#0000005C","editorWidget.background":"#252526","pickerGroup.border":"#3F3F46","pickerGroup.foreground":"#3794FF",errorForeground:"#F48771","editorError.foreground":"#F48771","editorWarning.foreground":"#F7CC66"}},"dracula-soft":{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"header",foreground:"BF9EEE"},{token:"meta.diff",foreground:"7B7F8B"},{token:"meta.diff.header",foreground:"7B7F8B"},{token:"markup.inserted",foreground:"62E884"},{token:"markup.deleted",foreground:"EE6666"},{token:"markup.changed",foreground:"FFB86C"},{token:"invalid",foreground:"EE6666",fontStyle:"underline italic"},{token:"invalid.deprecated",foreground:"F6F6F4",fontStyle:"underline italic"},{token:"entity.name.filename",foreground:"E7EE98"},{token:"markup.error",foreground:"EE6666"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.bold",foreground:"FFB86C",fontStyle:"bold"},{token:"markup.heading",foreground:"BF9EEE",fontStyle:"bold"},{token:"markup.italic",foreground:"E7EE98",fontStyle:"italic"},{token:"beginning.punctuation.definition.list.markdown",foreground:"97E1F1"},{token:"beginning.punctuation.definition.quote.markdown",foreground:"97E1F1"},{token:"punctuation.definition.link.restructuredtext",foreground:"97E1F1"},{token:"markup.inline.raw",foreground:"62E884"},{token:"markup.raw.restructuredtext",foreground:"62E884"},{token:"markup.underline.link",foreground:"97E1F1"},{token:"markup.underline.link.image",foreground:"97E1F1"},{token:"meta.link.reference.def.restructuredtext",foreground:"F286C4"},{token:"punctuation.definition.directive.restructuredtext",foreground:"F286C4"},{token:"string.other.link.description",foreground:"F286C4"},{token:"string.other.link.title",foreground:"F286C4"},{token:"entity.name.directive.restructuredtext",foreground:"E7EE98",fontStyle:"italic"},{token:"markup.quote",foreground:"E7EE98",fontStyle:"italic"},{token:"meta.separator.markdown",foreground:"7B7F8B"},{token:"fenced_code.block.language",foreground:"62E884"},{token:"markup.raw.inner.restructuredtext",foreground:"62E884"},{token:"markup.fenced_code.block.markdown punctuation.definition.markdown",foreground:"62E884"},{token:"punctuation.definition.constant.restructuredtext",foreground:"BF9EEE"},{token:"markup.heading.markdown punctuation.definition.string.begin",foreground:"BF9EEE"},{token:"markup.heading.markdown punctuation.definition.string.end",foreground:"BF9EEE"},{token:"meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F6F6F4"},{token:"meta.paragraph.markdown punctuation.definition.string.end",foreground:"F6F6F4"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin",foreground:"E7EE98"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end",foreground:"E7EE98"},{token:"entity.name.type.class",foreground:"97E1F1",fontStyle:"normal"},{token:"entity.name.class",foreground:"97E1F1",fontStyle:"normal"},{token:"keyword.expressions-and-types.swift",foreground:"BF9EEE",fontStyle:"italic"},{token:"keyword.other.this",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.language",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.language punctuation.definition.variable.php",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.other.readwrite.instance.ruby",foreground:"BF9EEE",fontStyle:"italic"},{token:"variable.parameter.function.language.special",foreground:"BF9EEE",fontStyle:"italic"},{token:"entity.other.inherited-class",foreground:"97E1F1",fontStyle:"italic"},{token:"comment",foreground:"7B7F8B"},{token:"punctuation.definition.comment",foreground:"7B7F8B"},{token:"unused.comment",foreground:"7B7F8B"},{token:"wildcard.comment",foreground:"7B7F8B"},{token:"comment keyword.codetag.notation",foreground:"F286C4"},{token:"comment.block.documentation keyword",foreground:"F286C4"},{token:"comment.block.documentation storage.type.class",foreground:"F286C4"},{token:"comment.block.documentation entity.name.type",foreground:"97E1F1",fontStyle:"italic"},{token:"comment.block.documentation entity.name.type punctuation.definition.bracket",foreground:"97E1F1"},{token:"comment.block.documentation variable",foreground:"FFB86C",fontStyle:"italic"},{token:"constant",foreground:"BF9EEE"},{token:"variable.other.constant",foreground:"BF9EEE"},{token:"constant.character.escape",foreground:"F286C4"},{token:"constant.character.string.escape",foreground:"F286C4"},{token:"constant.regexp",foreground:"F286C4"},{token:"entity.name.tag",foreground:"F286C4"},{token:"entity.other.attribute-name.parent-selector",foreground:"F286C4"},{token:"entity.other.attribute-name",foreground:"62E884",fontStyle:"italic"},{token:"entity.name.function",foreground:"62E884"},{token:"meta.function-call.object",foreground:"62E884"},{token:"meta.function-call.php",foreground:"62E884"},{token:"meta.function-call.static",foreground:"62E884"},{token:"meta.method-call.java meta.method",foreground:"62E884"},{token:"meta.method.groovy",foreground:"62E884"},{token:"support.function.any-method.lua",foreground:"62E884"},{token:"keyword.operator.function.infix",foreground:"62E884"},{token:"entity.name.variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.function variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.mixin variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.function.arguments variable.other.php",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql",foreground:"FFB86C",fontStyle:"italic"},{token:"variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.decorator variable.other.readwrite",foreground:"62E884",fontStyle:"italic"},{token:"meta.decorator variable.other.property",foreground:"62E884",fontStyle:"italic"},{token:"meta.decorator variable.other.object",foreground:"62E884"},{token:"keyword",foreground:"F286C4"},{token:"punctuation.definition.keyword",foreground:"F286C4"},{token:"keyword.control.new",fontStyle:"bold"},{token:"keyword.operator.new",fontStyle:"bold"},{token:"meta.selector",foreground:"F286C4"},{token:"support",foreground:"97E1F1",fontStyle:"italic"},{token:"support.function.magic",foreground:"BF9EEE",fontStyle:"regular"},{token:"support.variable",foreground:"BF9EEE",fontStyle:"regular"},{token:"variable.other.predefined",foreground:"BF9EEE",fontStyle:"regular"},{token:"support.function",fontStyle:"regular"},{token:"support.type.property-name",fontStyle:"regular"},{token:"constant.other.symbol.hashkey punctuation.definition.constant.ruby",foreground:"F286C4"},{token:"entity.other.attribute-name.placeholder punctuation",foreground:"F286C4"},{token:"entity.other.attribute-name.pseudo-class punctuation",foreground:"F286C4"},{token:"entity.other.attribute-name.pseudo-element punctuation",foreground:"F286C4"},{token:"meta.group.double.toml",foreground:"F286C4"},{token:"meta.group.toml",foreground:"F286C4"},{token:"meta.object-binding-pattern-variable punctuation.destructuring",foreground:"F286C4"},{token:"punctuation.colon.graphql",foreground:"F286C4"},{token:"punctuation.definition.block.scalar.folded.yaml",foreground:"F286C4"},{token:"punctuation.definition.block.scalar.literal.yaml",foreground:"F286C4"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"F286C4"},{token:"punctuation.definition.entity.other.inherited-class",foreground:"F286C4"},{token:"punctuation.function.swift",foreground:"F286C4"},{token:"punctuation.separator.dictionary.key-value",foreground:"F286C4"},{token:"punctuation.separator.hash",foreground:"F286C4"},{token:"punctuation.separator.inheritance",foreground:"F286C4"},{token:"punctuation.separator.key-value",foreground:"F286C4"},{token:"punctuation.separator.key-value.mapping.yaml",foreground:"F286C4"},{token:"punctuation.separator.namespace",foreground:"F286C4"},{token:"punctuation.separator.pointer-access",foreground:"F286C4"},{token:"punctuation.separator.slice",foreground:"F286C4"},{token:"string.unquoted.heredoc punctuation.definition.string",foreground:"F286C4"},{token:"support.other.chomping-indicator.yaml",foreground:"F286C4"},{token:"punctuation.separator.annotation",foreground:"F286C4"},{token:"keyword.operator.other.powershell",foreground:"F6F6F4"},{token:"keyword.other.statement-separator.powershell",foreground:"F6F6F4"},{token:"meta.brace.round",foreground:"F6F6F4"},{token:"meta.function-call punctuation",foreground:"F6F6F4"},{token:"punctuation.definition.arguments.begin",foreground:"F6F6F4"},{token:"punctuation.definition.arguments.end",foreground:"F6F6F4"},{token:"punctuation.definition.entity.begin",foreground:"F6F6F4"},{token:"punctuation.definition.entity.end",foreground:"F6F6F4"},{token:"punctuation.definition.tag.cs",foreground:"F6F6F4"},{token:"punctuation.definition.type.begin",foreground:"F6F6F4"},{token:"punctuation.definition.type.end",foreground:"F6F6F4"},{token:"punctuation.section.scope.begin",foreground:"F6F6F4"},{token:"punctuation.section.scope.end",foreground:"F6F6F4"},{token:"punctuation.terminator.expression.php",foreground:"F6F6F4"},{token:"storage.type.generic.java",foreground:"F6F6F4"},{token:"string.template meta.brace",foreground:"F6F6F4"},{token:"string.template punctuation.accessor",foreground:"F6F6F4"},{token:"meta.string-contents.quoted.double punctuation.definition.variable",foreground:"F286C4"},{token:"punctuation.definition.interpolation.begin",foreground:"F286C4"},{token:"punctuation.definition.interpolation.end",foreground:"F286C4"},{token:"punctuation.definition.template-expression.begin",foreground:"F286C4"},{token:"punctuation.definition.template-expression.end",foreground:"F286C4"},{token:"punctuation.section.embedded.begin",foreground:"F286C4"},{token:"punctuation.section.embedded.coffee",foreground:"F286C4"},{token:"punctuation.section.embedded.end",foreground:"F286C4"},{token:"punctuation.section.embedded.end source.php",foreground:"F286C4"},{token:"punctuation.section.embedded.end source.ruby",foreground:"F286C4"},{token:"punctuation.definition.variable.makefile",foreground:"F286C4"},{token:"entity.name.function.target.makefile",foreground:"97E1F1"},{token:"entity.name.section.toml",foreground:"97E1F1"},{token:"entity.name.tag.yaml",foreground:"97E1F1"},{token:"variable.other.key.toml",foreground:"97E1F1"},{token:"constant.other.date",foreground:"FFB86C"},{token:"constant.other.timestamp",foreground:"FFB86C"},{token:"variable.other.alias.yaml",foreground:"62E884",fontStyle:"italic underline"},{token:"storage",foreground:"F286C4",fontStyle:"regular"},{token:"meta.implementation storage.type.objc",foreground:"F286C4",fontStyle:"regular"},{token:"meta.interface-or-protocol storage.type.objc",foreground:"F286C4",fontStyle:"regular"},{token:"source.groovy storage.type.def",foreground:"F286C4",fontStyle:"regular"},{token:"entity.name.type",foreground:"97E1F1",fontStyle:"italic"},{token:"keyword.primitive-datatypes.swift",foreground:"97E1F1",fontStyle:"italic"},{token:"keyword.type.cs",foreground:"97E1F1",fontStyle:"italic"},{token:"meta.protocol-list.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"meta.return-type.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"source.go storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.groovy storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.java storage.type",foreground:"97E1F1",fontStyle:"italic"},{token:"source.powershell entity.other.attribute-name",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.class.std.rust",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.attribute.swift",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.c",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.core.rust",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.cs",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.groovy",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.objc",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.php",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.haskell",foreground:"97E1F1",fontStyle:"italic"},{token:"storage.type.ocaml",foreground:"97E1F1",fontStyle:"italic"},{token:"entity.name.type.type-parameter",foreground:"FFB86C"},{token:"meta.indexer.mappedtype.declaration entity.name.type",foreground:"FFB86C"},{token:"meta.type.parameters entity.name.type",foreground:"FFB86C"},{token:"storage.modifier",foreground:"F286C4"},{token:"string.regexp",foreground:"E7EE98"},{token:"constant.other.character-class.set.regexp",foreground:"E7EE98"},{token:"constant.character.escape.backslash.regexp",foreground:"E7EE98"},{token:"punctuation.definition.group.capture.regexp",foreground:"F286C4"},{token:"string.regexp punctuation.definition.string.begin",foreground:"EE6666"},{token:"string.regexp punctuation.definition.string.end",foreground:"EE6666"},{token:"punctuation.definition.character-class.regexp",foreground:"97E1F1"},{token:"punctuation.definition.group.regexp",foreground:"FFB86C"},{token:"punctuation.definition.group.assertion.regexp",foreground:"EE6666"},{token:"keyword.operator.negation.regexp",foreground:"EE6666"},{token:"meta.assertion.look-ahead.regexp",foreground:"62E884"},{token:"string",foreground:"E7EE98"},{token:"punctuation.definition.string.begin",foreground:"DEE492"},{token:"punctuation.definition.string.end",foreground:"DEE492"},{token:"punctuation.support.type.property-name.begin",foreground:"97E2F2"},{token:"punctuation.support.type.property-name.end",foreground:"97E2F2"},{token:"string.quoted.docstring.multi",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.begin",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.end",foreground:"7B7F8B"},{token:"string.quoted.docstring.multi.python constant.character.escape",foreground:"7B7F8B"},{token:"variable",foreground:"F6F6F4"},{token:"constant.other.key.perl",foreground:"F6F6F4"},{token:"support.variable.property",foreground:"F6F6F4"},{token:"variable.other.constant.js",foreground:"F6F6F4"},{token:"variable.other.constant.ts",foreground:"F6F6F4"},{token:"variable.other.constant.tsx",foreground:"F6F6F4"},{token:"meta.import variable.other.readwrite",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.variable.assignment.destructured.object.coffee variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.import variable.other.readwrite.alias",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.export variable.other.readwrite.alias",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.variable.assignment.destructured.object.coffee variable variable",foreground:"F6F6F4",fontStyle:"normal"},{token:"meta.selectionset.graphql variable",foreground:"E7EE98"},{token:"meta.selectionset.graphql meta.arguments variable",foreground:"F6F6F4"},{token:"entity.name.fragment.graphql",foreground:"97E1F1"},{token:"variable.fragment.graphql",foreground:"97E1F1"},{token:"constant.other.symbol.hashkey.ruby",foreground:"F6F6F4"},{token:"keyword.operator.dereference.java",foreground:"F6F6F4"},{token:"keyword.operator.navigation.groovy",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell punctuation.definition.string.begin",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell punctuation.definition.string.end",foreground:"F6F6F4"},{token:"meta.scope.for-loop.shell string",foreground:"F6F6F4"},{token:"storage.modifier.import",foreground:"F6F6F4"},{token:"punctuation.section.embedded.begin.tsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.end.tsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.begin.jsx",foreground:"F6F6F4"},{token:"punctuation.section.embedded.end.jsx",foreground:"F6F6F4"},{token:"punctuation.separator.list.comma.css",foreground:"F6F6F4"},{token:"constant.language.empty-list.haskell",foreground:"F6F6F4"},{token:"source.shell variable.other",foreground:"BF9EEE"},{token:"support.constant",foreground:"BF9EEE",fontStyle:"normal"},{token:"meta.scope.prerequisites.makefile",foreground:"E7EE98"},{token:"meta.attribute-selector.scss",foreground:"E7EE98"},{token:"punctuation.definition.attribute-selector.end.bracket.square.scss",foreground:"F6F6F4"},{token:"punctuation.definition.attribute-selector.begin.bracket.square.scss",foreground:"F6F6F4"},{token:"meta.preprocessor.haskell",foreground:"7B7F8B"},{token:"log.error",foreground:"EE6666",fontStyle:"bold"},{token:"log.warning",foreground:"E7EE98",fontStyle:"bold"}],colors:{focusBorder:"#7B7F8B",foreground:"#F6F6F4","selection.background":"#BF9EEE",errorForeground:"#EE6666","button.background":"#44475A","button.foreground":"#F6F6F4","dropdown.background":"#343746","dropdown.border":"#191A21","dropdown.foreground":"#F6F6F4","input.background":"#282A36","input.foreground":"#F6F6F4","input.border":"#191A21","input.placeholderForeground":"#7B7F8B","inputOption.activeBorder":"#BF9EEE","inputValidation.infoBorder":"#F286C4","inputValidation.warningBorder":"#FFB86C","inputValidation.errorBorder":"#EE6666","badge.foreground":"#F6F6F4","badge.background":"#44475A","progressBar.background":"#F286C4","list.activeSelectionBackground":"#44475A","list.activeSelectionForeground":"#F6F6F4","list.dropBackground":"#44475A","list.focusBackground":"#44475A75","list.highlightForeground":"#97E1F1","list.hoverBackground":"#44475A75","list.inactiveSelectionBackground":"#44475A75","editor.foreground":"#F6F6F4","editor.background":"#282A36","editorLineNumber.foreground":"#7B7F8B","editor.selectionBackground":"#44475A","editor.selectionHighlightBackground":"#424450","editor.wordHighlightBackground":"#8BE9FD50","editor.wordHighlightStrongBackground":"#50FA7B50","editor.findMatchBackground":"#FFB86C80","editor.findMatchHighlightBackground":"#FFFFFF40","editor.findRangeHighlightBackground":"#44475A75","editor.hoverHighlightBackground":"#8BE9FD50","editor.lineHighlightBorder":"#44475A","editorLink.activeForeground":"#97E1F1","editor.rangeHighlightBackground":"#BD93F915","editorWhitespace.foreground":"#FFFFFF1A","editorIndentGuide.background":"#FFFFFF1A","editorRuler.foreground":"#FFFFFF1A","editorCodeLens.foreground":"#7B7F8B","editorOverviewRuler.border":"#191A21","editorError.foreground":"#EE6666","editorWarning.foreground":"#97E1F1","diffEditor.insertedTextBackground":"#50FA7B20","diffEditor.removedTextBackground":"#FF555550","editorWidget.background":"#262626","editorSuggestWidget.background":"#262626","editorSuggestWidget.foreground":"#F6F6F4","editorSuggestWidget.selectedBackground":"#44475A","editorHoverWidget.background":"#282A36","editorHoverWidget.border":"#7B7F8B","editorMarkerNavigation.background":"#262626","peekView.border":"#44475A","peekViewEditor.background":"#282A36","peekViewEditor.matchHighlightBackground":"#F1FA8C80","peekViewResult.background":"#262626","peekViewResult.fileForeground":"#F6F6F4","peekViewResult.lineForeground":"#F6F6F4","peekViewResult.matchHighlightBackground":"#F1FA8C80","peekViewResult.selectionBackground":"#44475A","peekViewResult.selectionForeground":"#F6F6F4","peekViewTitle.background":"#191A21","peekViewTitleDescription.foreground":"#7B7F8B","peekViewTitleLabel.foreground":"#F6F6F4","editorOverviewRuler.currentContentForeground":"#62E884","editorOverviewRuler.incomingContentForeground":"#BF9EEE","pickerGroup.border":"#BF9EEE","pickerGroup.foreground":"#97E1F1"}},dracula:{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"header",foreground:"BD93F9"},{token:"meta.diff",foreground:"6272A4"},{token:"meta.diff.header",foreground:"6272A4"},{token:"markup.inserted",foreground:"50FA7B"},{token:"markup.deleted",foreground:"FF5555"},{token:"markup.changed",foreground:"FFB86C"},{token:"invalid",foreground:"FF5555",fontStyle:"underline italic"},{token:"invalid.deprecated",foreground:"F8F8F2",fontStyle:"underline italic"},{token:"entity.name.filename",foreground:"F1FA8C"},{token:"markup.error",foreground:"FF5555"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.bold",foreground:"FFB86C",fontStyle:"bold"},{token:"markup.heading",foreground:"BD93F9",fontStyle:"bold"},{token:"markup.italic",foreground:"F1FA8C",fontStyle:"italic"},{token:"beginning.punctuation.definition.list.markdown",foreground:"8BE9FD"},{token:"beginning.punctuation.definition.quote.markdown",foreground:"8BE9FD"},{token:"punctuation.definition.link.restructuredtext",foreground:"8BE9FD"},{token:"markup.inline.raw",foreground:"50FA7B"},{token:"markup.raw.restructuredtext",foreground:"50FA7B"},{token:"markup.underline.link",foreground:"8BE9FD"},{token:"markup.underline.link.image",foreground:"8BE9FD"},{token:"meta.link.reference.def.restructuredtext",foreground:"FF79C6"},{token:"punctuation.definition.directive.restructuredtext",foreground:"FF79C6"},{token:"string.other.link.description",foreground:"FF79C6"},{token:"string.other.link.title",foreground:"FF79C6"},{token:"entity.name.directive.restructuredtext",foreground:"F1FA8C",fontStyle:"italic"},{token:"markup.quote",foreground:"F1FA8C",fontStyle:"italic"},{token:"meta.separator.markdown",foreground:"6272A4"},{token:"fenced_code.block.language",foreground:"50FA7B"},{token:"markup.raw.inner.restructuredtext",foreground:"50FA7B"},{token:"markup.fenced_code.block.markdown punctuation.definition.markdown",foreground:"50FA7B"},{token:"punctuation.definition.constant.restructuredtext",foreground:"BD93F9"},{token:"markup.heading.markdown punctuation.definition.string.begin",foreground:"BD93F9"},{token:"markup.heading.markdown punctuation.definition.string.end",foreground:"BD93F9"},{token:"meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F8F8F2"},{token:"meta.paragraph.markdown punctuation.definition.string.end",foreground:"F8F8F2"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.begin",foreground:"F1FA8C"},{token:"markup.quote.markdown meta.paragraph.markdown punctuation.definition.string.end",foreground:"F1FA8C"},{token:"entity.name.type.class",foreground:"8BE9FD",fontStyle:"normal"},{token:"entity.name.class",foreground:"8BE9FD",fontStyle:"normal"},{token:"keyword.expressions-and-types.swift",foreground:"BD93F9",fontStyle:"italic"},{token:"keyword.other.this",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.language",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.language punctuation.definition.variable.php",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.other.readwrite.instance.ruby",foreground:"BD93F9",fontStyle:"italic"},{token:"variable.parameter.function.language.special",foreground:"BD93F9",fontStyle:"italic"},{token:"entity.other.inherited-class",foreground:"8BE9FD",fontStyle:"italic"},{token:"comment",foreground:"6272A4"},{token:"punctuation.definition.comment",foreground:"6272A4"},{token:"unused.comment",foreground:"6272A4"},{token:"wildcard.comment",foreground:"6272A4"},{token:"comment keyword.codetag.notation",foreground:"FF79C6"},{token:"comment.block.documentation keyword",foreground:"FF79C6"},{token:"comment.block.documentation storage.type.class",foreground:"FF79C6"},{token:"comment.block.documentation entity.name.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"comment.block.documentation entity.name.type punctuation.definition.bracket",foreground:"8BE9FD"},{token:"comment.block.documentation variable",foreground:"FFB86C",fontStyle:"italic"},{token:"constant",foreground:"BD93F9"},{token:"variable.other.constant",foreground:"BD93F9"},{token:"constant.character.escape",foreground:"FF79C6"},{token:"constant.character.string.escape",foreground:"FF79C6"},{token:"constant.regexp",foreground:"FF79C6"},{token:"entity.name.tag",foreground:"FF79C6"},{token:"entity.other.attribute-name.parent-selector",foreground:"FF79C6"},{token:"entity.other.attribute-name",foreground:"50FA7B",fontStyle:"italic"},{token:"entity.name.function",foreground:"50FA7B"},{token:"meta.function-call.object",foreground:"50FA7B"},{token:"meta.function-call.php",foreground:"50FA7B"},{token:"meta.function-call.static",foreground:"50FA7B"},{token:"meta.method-call.java meta.method",foreground:"50FA7B"},{token:"meta.method.groovy",foreground:"50FA7B"},{token:"support.function.any-method.lua",foreground:"50FA7B"},{token:"keyword.operator.function.infix",foreground:"50FA7B"},{token:"entity.name.variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.function variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.at-rule.mixin variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.function.arguments variable.other.php",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.selectionset.graphql meta.arguments.graphql variable.arguments.graphql",foreground:"FFB86C",fontStyle:"italic"},{token:"variable.parameter",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.decorator variable.other.readwrite",foreground:"50FA7B",fontStyle:"italic"},{token:"meta.decorator variable.other.property",foreground:"50FA7B",fontStyle:"italic"},{token:"meta.decorator variable.other.object",foreground:"50FA7B"},{token:"keyword",foreground:"FF79C6"},{token:"punctuation.definition.keyword",foreground:"FF79C6"},{token:"keyword.control.new",fontStyle:"bold"},{token:"keyword.operator.new",fontStyle:"bold"},{token:"meta.selector",foreground:"FF79C6"},{token:"support",foreground:"8BE9FD",fontStyle:"italic"},{token:"support.function.magic",foreground:"BD93F9",fontStyle:"regular"},{token:"support.variable",foreground:"BD93F9",fontStyle:"regular"},{token:"variable.other.predefined",foreground:"BD93F9",fontStyle:"regular"},{token:"support.function",fontStyle:"regular"},{token:"support.type.property-name",fontStyle:"regular"},{token:"constant.other.symbol.hashkey punctuation.definition.constant.ruby",foreground:"FF79C6"},{token:"entity.other.attribute-name.placeholder punctuation",foreground:"FF79C6"},{token:"entity.other.attribute-name.pseudo-class punctuation",foreground:"FF79C6"},{token:"entity.other.attribute-name.pseudo-element punctuation",foreground:"FF79C6"},{token:"meta.group.double.toml",foreground:"FF79C6"},{token:"meta.group.toml",foreground:"FF79C6"},{token:"meta.object-binding-pattern-variable punctuation.destructuring",foreground:"FF79C6"},{token:"punctuation.colon.graphql",foreground:"FF79C6"},{token:"punctuation.definition.block.scalar.folded.yaml",foreground:"FF79C6"},{token:"punctuation.definition.block.scalar.literal.yaml",foreground:"FF79C6"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"FF79C6"},{token:"punctuation.definition.entity.other.inherited-class",foreground:"FF79C6"},{token:"punctuation.function.swift",foreground:"FF79C6"},{token:"punctuation.separator.dictionary.key-value",foreground:"FF79C6"},{token:"punctuation.separator.hash",foreground:"FF79C6"},{token:"punctuation.separator.inheritance",foreground:"FF79C6"},{token:"punctuation.separator.key-value",foreground:"FF79C6"},{token:"punctuation.separator.key-value.mapping.yaml",foreground:"FF79C6"},{token:"punctuation.separator.namespace",foreground:"FF79C6"},{token:"punctuation.separator.pointer-access",foreground:"FF79C6"},{token:"punctuation.separator.slice",foreground:"FF79C6"},{token:"string.unquoted.heredoc punctuation.definition.string",foreground:"FF79C6"},{token:"support.other.chomping-indicator.yaml",foreground:"FF79C6"},{token:"punctuation.separator.annotation",foreground:"FF79C6"},{token:"keyword.operator.other.powershell",foreground:"F8F8F2"},{token:"keyword.other.statement-separator.powershell",foreground:"F8F8F2"},{token:"meta.brace.round",foreground:"F8F8F2"},{token:"meta.function-call punctuation",foreground:"F8F8F2"},{token:"punctuation.definition.arguments.begin",foreground:"F8F8F2"},{token:"punctuation.definition.arguments.end",foreground:"F8F8F2"},{token:"punctuation.definition.entity.begin",foreground:"F8F8F2"},{token:"punctuation.definition.entity.end",foreground:"F8F8F2"},{token:"punctuation.definition.tag.cs",foreground:"F8F8F2"},{token:"punctuation.definition.type.begin",foreground:"F8F8F2"},{token:"punctuation.definition.type.end",foreground:"F8F8F2"},{token:"punctuation.section.scope.begin",foreground:"F8F8F2"},{token:"punctuation.section.scope.end",foreground:"F8F8F2"},{token:"punctuation.terminator.expression.php",foreground:"F8F8F2"},{token:"storage.type.generic.java",foreground:"F8F8F2"},{token:"string.template meta.brace",foreground:"F8F8F2"},{token:"string.template punctuation.accessor",foreground:"F8F8F2"},{token:"meta.string-contents.quoted.double punctuation.definition.variable",foreground:"FF79C6"},{token:"punctuation.definition.interpolation.begin",foreground:"FF79C6"},{token:"punctuation.definition.interpolation.end",foreground:"FF79C6"},{token:"punctuation.definition.template-expression.begin",foreground:"FF79C6"},{token:"punctuation.definition.template-expression.end",foreground:"FF79C6"},{token:"punctuation.section.embedded.begin",foreground:"FF79C6"},{token:"punctuation.section.embedded.coffee",foreground:"FF79C6"},{token:"punctuation.section.embedded.end",foreground:"FF79C6"},{token:"punctuation.section.embedded.end source.php",foreground:"FF79C6"},{token:"punctuation.section.embedded.end source.ruby",foreground:"FF79C6"},{token:"punctuation.definition.variable.makefile",foreground:"FF79C6"},{token:"entity.name.function.target.makefile",foreground:"8BE9FD"},{token:"entity.name.section.toml",foreground:"8BE9FD"},{token:"entity.name.tag.yaml",foreground:"8BE9FD"},{token:"variable.other.key.toml",foreground:"8BE9FD"},{token:"constant.other.date",foreground:"FFB86C"},{token:"constant.other.timestamp",foreground:"FFB86C"},{token:"variable.other.alias.yaml",foreground:"50FA7B",fontStyle:"italic underline"},{token:"storage",foreground:"FF79C6",fontStyle:"regular"},{token:"meta.implementation storage.type.objc",foreground:"FF79C6",fontStyle:"regular"},{token:"meta.interface-or-protocol storage.type.objc",foreground:"FF79C6",fontStyle:"regular"},{token:"source.groovy storage.type.def",foreground:"FF79C6",fontStyle:"regular"},{token:"entity.name.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"keyword.primitive-datatypes.swift",foreground:"8BE9FD",fontStyle:"italic"},{token:"keyword.type.cs",foreground:"8BE9FD",fontStyle:"italic"},{token:"meta.protocol-list.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"meta.return-type.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.go storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.groovy storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.java storage.type",foreground:"8BE9FD",fontStyle:"italic"},{token:"source.powershell entity.other.attribute-name",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.class.std.rust",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.attribute.swift",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.c",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.core.rust",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.cs",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.groovy",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.objc",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.php",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.haskell",foreground:"8BE9FD",fontStyle:"italic"},{token:"storage.type.ocaml",foreground:"8BE9FD",fontStyle:"italic"},{token:"entity.name.type.type-parameter",foreground:"FFB86C"},{token:"meta.indexer.mappedtype.declaration entity.name.type",foreground:"FFB86C"},{token:"meta.type.parameters entity.name.type",foreground:"FFB86C"},{token:"storage.modifier",foreground:"FF79C6"},{token:"string.regexp",foreground:"F1FA8C"},{token:"constant.other.character-class.set.regexp",foreground:"F1FA8C"},{token:"constant.character.escape.backslash.regexp",foreground:"F1FA8C"},{token:"punctuation.definition.group.capture.regexp",foreground:"FF79C6"},{token:"string.regexp punctuation.definition.string.begin",foreground:"FF5555"},{token:"string.regexp punctuation.definition.string.end",foreground:"FF5555"},{token:"punctuation.definition.character-class.regexp",foreground:"8BE9FD"},{token:"punctuation.definition.group.regexp",foreground:"FFB86C"},{token:"punctuation.definition.group.assertion.regexp",foreground:"FF5555"},{token:"keyword.operator.negation.regexp",foreground:"FF5555"},{token:"meta.assertion.look-ahead.regexp",foreground:"50FA7B"},{token:"string",foreground:"F1FA8C"},{token:"punctuation.definition.string.begin",foreground:"E9F284"},{token:"punctuation.definition.string.end",foreground:"E9F284"},{token:"punctuation.support.type.property-name.begin",foreground:"8BE9FE"},{token:"punctuation.support.type.property-name.end",foreground:"8BE9FE"},{token:"string.quoted.docstring.multi",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.begin",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python punctuation.definition.string.end",foreground:"6272A4"},{token:"string.quoted.docstring.multi.python constant.character.escape",foreground:"6272A4"},{token:"variable",foreground:"F8F8F2"},{token:"constant.other.key.perl",foreground:"F8F8F2"},{token:"support.variable.property",foreground:"F8F8F2"},{token:"variable.other.constant.js",foreground:"F8F8F2"},{token:"variable.other.constant.ts",foreground:"F8F8F2"},{token:"variable.other.constant.tsx",foreground:"F8F8F2"},{token:"meta.import variable.other.readwrite",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.variable.assignment.destructured.object.coffee variable",foreground:"FFB86C",fontStyle:"italic"},{token:"meta.import variable.other.readwrite.alias",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.export variable.other.readwrite.alias",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.variable.assignment.destructured.object.coffee variable variable",foreground:"F8F8F2",fontStyle:"normal"},{token:"meta.selectionset.graphql variable",foreground:"F1FA8C"},{token:"meta.selectionset.graphql meta.arguments variable",foreground:"F8F8F2"},{token:"entity.name.fragment.graphql",foreground:"8BE9FD"},{token:"variable.fragment.graphql",foreground:"8BE9FD"},{token:"constant.other.symbol.hashkey.ruby",foreground:"F8F8F2"},{token:"keyword.operator.dereference.java",foreground:"F8F8F2"},{token:"keyword.operator.navigation.groovy",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell punctuation.definition.string.begin",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell punctuation.definition.string.end",foreground:"F8F8F2"},{token:"meta.scope.for-loop.shell string",foreground:"F8F8F2"},{token:"storage.modifier.import",foreground:"F8F8F2"},{token:"punctuation.section.embedded.begin.tsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.end.tsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.begin.jsx",foreground:"F8F8F2"},{token:"punctuation.section.embedded.end.jsx",foreground:"F8F8F2"},{token:"punctuation.separator.list.comma.css",foreground:"F8F8F2"},{token:"constant.language.empty-list.haskell",foreground:"F8F8F2"},{token:"source.shell variable.other",foreground:"BD93F9"},{token:"support.constant",foreground:"BD93F9",fontStyle:"normal"},{token:"meta.scope.prerequisites.makefile",foreground:"F1FA8C"},{token:"meta.attribute-selector.scss",foreground:"F1FA8C"},{token:"punctuation.definition.attribute-selector.end.bracket.square.scss",foreground:"F8F8F2"},{token:"punctuation.definition.attribute-selector.begin.bracket.square.scss",foreground:"F8F8F2"},{token:"meta.preprocessor.haskell",foreground:"6272A4"},{token:"log.error",foreground:"FF5555",fontStyle:"bold"},{token:"log.warning",foreground:"F1FA8C",fontStyle:"bold"}],colors:{focusBorder:"#6272A4",foreground:"#F8F8F2","selection.background":"#BD93F9",errorForeground:"#FF5555","button.background":"#44475A","button.foreground":"#F8F8F2","dropdown.background":"#343746","dropdown.border":"#191A21","dropdown.foreground":"#F8F8F2","input.background":"#282A36","input.foreground":"#F8F8F2","input.border":"#191A21","input.placeholderForeground":"#6272A4","inputOption.activeBorder":"#BD93F9","inputValidation.infoBorder":"#FF79C6","inputValidation.warningBorder":"#FFB86C","inputValidation.errorBorder":"#FF5555","badge.foreground":"#F8F8F2","badge.background":"#44475A","progressBar.background":"#FF79C6","list.activeSelectionBackground":"#44475A","list.activeSelectionForeground":"#F8F8F2","list.dropBackground":"#44475A","list.focusBackground":"#44475A75","list.highlightForeground":"#8BE9FD","list.hoverBackground":"#44475A75","list.inactiveSelectionBackground":"#44475A75","editor.foreground":"#F8F8F2","editor.background":"#282A36","editorLineNumber.foreground":"#6272A4","editor.selectionBackground":"#44475A","editor.selectionHighlightBackground":"#424450","editor.wordHighlightBackground":"#8BE9FD50","editor.wordHighlightStrongBackground":"#50FA7B50","editor.findMatchBackground":"#FFB86C80","editor.findMatchHighlightBackground":"#FFFFFF40","editor.findRangeHighlightBackground":"#44475A75","editor.hoverHighlightBackground":"#8BE9FD50","editor.lineHighlightBorder":"#44475A","editorLink.activeForeground":"#8BE9FD","editor.rangeHighlightBackground":"#BD93F915","editorWhitespace.foreground":"#FFFFFF1A","editorIndentGuide.background":"#FFFFFF1A","editorRuler.foreground":"#FFFFFF1A","editorCodeLens.foreground":"#6272A4","editorOverviewRuler.border":"#191A21","editorError.foreground":"#FF5555","editorWarning.foreground":"#8BE9FD","diffEditor.insertedTextBackground":"#50FA7B20","diffEditor.removedTextBackground":"#FF555550","editorWidget.background":"#21222C","editorSuggestWidget.background":"#21222C","editorSuggestWidget.foreground":"#F8F8F2","editorSuggestWidget.selectedBackground":"#44475A","editorHoverWidget.background":"#282A36","editorHoverWidget.border":"#6272A4","editorMarkerNavigation.background":"#21222C","peekView.border":"#44475A","peekViewEditor.background":"#282A36","peekViewEditor.matchHighlightBackground":"#F1FA8C80","peekViewResult.background":"#21222C","peekViewResult.fileForeground":"#F8F8F2","peekViewResult.lineForeground":"#F8F8F2","peekViewResult.matchHighlightBackground":"#F1FA8C80","peekViewResult.selectionBackground":"#44475A","peekViewResult.selectionForeground":"#F8F8F2","peekViewTitle.background":"#191A21","peekViewTitleDescription.foreground":"#6272A4","peekViewTitleLabel.foreground":"#F8F8F2","editorOverviewRuler.currentContentForeground":"#50FA7B","editorOverviewRuler.incomingContentForeground":"#BD93F9","pickerGroup.border":"#BD93F9","pickerGroup.foreground":"#8BE9FD"}},"github-dark-dimmed":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"768390"},{token:"punctuation.definition.comment",foreground:"768390"},{token:"string.comment",foreground:"768390"},{token:"constant.other.placeholder",foreground:"F47067"},{token:"constant.character",foreground:"F47067"},{token:"constant",foreground:"6CB6FF"},{token:"entity.name.constant",foreground:"6CB6FF"},{token:"variable.other.constant",foreground:"6CB6FF"},{token:"variable.other.enummember",foreground:"6CB6FF"},{token:"variable.language",foreground:"6CB6FF"},{token:"entity",foreground:"6CB6FF"},{token:"entity.name",foreground:"F69D50"},{token:"meta.export.default",foreground:"F69D50"},{token:"meta.definition.variable",foreground:"F69D50"},{token:"variable.parameter.function",foreground:"ADBAC7"},{token:"meta.jsx.children",foreground:"ADBAC7"},{token:"meta.block",foreground:"ADBAC7"},{token:"meta.tag.attributes",foreground:"ADBAC7"},{token:"entity.name.constant",foreground:"ADBAC7"},{token:"meta.object.member",foreground:"ADBAC7"},{token:"meta.embedded.expression",foreground:"ADBAC7"},{token:"entity.name.function",foreground:"DCBDFB"},{token:"entity.name.tag",foreground:"8DDB8C"},{token:"support.class.component",foreground:"8DDB8C"},{token:"keyword",foreground:"F47067"},{token:"storage",foreground:"F47067"},{token:"storage.type",foreground:"F47067"},{token:"storage.modifier.package",foreground:"ADBAC7"},{token:"storage.modifier.import",foreground:"ADBAC7"},{token:"storage.type.java",foreground:"ADBAC7"},{token:"string",foreground:"96D0FF"},{token:"string punctuation.section.embedded source",foreground:"96D0FF"},{token:"support",foreground:"6CB6FF"},{token:"meta.property-name",foreground:"6CB6FF"},{token:"variable",foreground:"F69D50"},{token:"variable.other",foreground:"ADBAC7"},{token:"invalid.broken",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.illegal",foreground:"FF938A",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"FF938A",fontStyle:"italic"},{token:"carriage-return",foreground:"CDD9E5",fontStyle:"italic underline"},{token:"message.error",foreground:"FF938A"},{token:"string variable",foreground:"6CB6FF"},{token:"source.regexp",foreground:"96D0FF"},{token:"string.regexp",foreground:"96D0FF"},{token:"string.regexp.character-class",foreground:"96D0FF"},{token:"string.regexp constant.character.escape",foreground:"96D0FF"},{token:"string.regexp source.ruby.embedded",foreground:"96D0FF"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"96D0FF"},{token:"string.regexp constant.character.escape",foreground:"8DDB8C",fontStyle:"bold"},{token:"support.constant",foreground:"6CB6FF"},{token:"support.variable",foreground:"6CB6FF"},{token:"support.type.property-name.json",foreground:"8DDB8C"},{token:"meta.module-reference",foreground:"6CB6FF"},{token:"punctuation.definition.list.begin.markdown",foreground:"F69D50"},{token:"markup.heading",foreground:"6CB6FF",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"6CB6FF",fontStyle:"bold"},{token:"markup.quote",foreground:"8DDB8C"},{token:"markup.italic",foreground:"ADBAC7",fontStyle:"italic"},{token:"markup.bold",foreground:"ADBAC7",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"6CB6FF"},{token:"markup.deleted",foreground:"FF938A"},{token:"meta.diff.header.from-file",foreground:"FF938A"},{token:"punctuation.definition.deleted",foreground:"FF938A"},{token:"punctuation.section.embedded",foreground:"F47067"},{token:"markup.inserted",foreground:"8DDB8C"},{token:"meta.diff.header.to-file",foreground:"8DDB8C"},{token:"punctuation.definition.inserted",foreground:"8DDB8C"},{token:"markup.changed",foreground:"F69D50"},{token:"punctuation.definition.changed",foreground:"F69D50"},{token:"markup.ignored",foreground:"2D333B"},{token:"markup.untracked",foreground:"2D333B"},{token:"meta.diff.range",foreground:"DCBDFB",fontStyle:"bold"},{token:"meta.diff.header",foreground:"6CB6FF"},{token:"meta.separator",foreground:"6CB6FF",fontStyle:"bold"},{token:"meta.output",foreground:"6CB6FF"},{token:"brackethighlighter.tag",foreground:"768390"},{token:"brackethighlighter.curly",foreground:"768390"},{token:"brackethighlighter.round",foreground:"768390"},{token:"brackethighlighter.square",foreground:"768390"},{token:"brackethighlighter.angle",foreground:"768390"},{token:"brackethighlighter.quote",foreground:"768390"},{token:"brackethighlighter.unmatched",foreground:"FF938A"},{token:"constant.other.reference.link",foreground:"96D0FF"},{token:"string.other.link",foreground:"96D0FF"}],colors:{focusBorder:"#316DCA",foreground:"#ADBAC7",descriptionForeground:"#768390",errorForeground:"#E5534B","textLink.foreground":"#539BF5","textLink.activeForeground":"#539BF5","textBlockQuote.background":"#1C2128","textBlockQuote.border":"#444C56","textCodeBlock.background":"#636E7B66","textPreformat.foreground":"#768390","textSeparator.foreground":"#373E47","button.background":"#347D39","button.foreground":"#FFFFFF","button.hoverBackground":"#46954A","dropdown.background":"#2D333B","dropdown.border":"#444C56","dropdown.foreground":"#ADBAC7","input.background":"#22272E","input.border":"#444C56","input.foreground":"#ADBAC7","input.placeholderForeground":"#636E7B","badge.foreground":"#CDD9E5","badge.background":"#316DCA","progressBar.background":"#316DCA","list.hoverForeground":"#ADBAC7","list.inactiveSelectionForeground":"#ADBAC7","list.activeSelectionForeground":"#ADBAC7","list.hoverBackground":"#636E7B1A","list.inactiveSelectionBackground":"#636E7B66","list.activeSelectionBackground":"#636E7B66","list.focusForeground":"#ADBAC7","list.focusBackground":"#4184E426","list.highlightForeground":"#539BF5","pickerGroup.border":"#444C56","pickerGroup.foreground":"#768390","editor.foreground":"#ADBAC7","editor.background":"#22272E","editorWidget.background":"#2D333B","editor.lineHighlightBackground":"#636E7B1A","editorLineNumber.foreground":"#636E7B","editorLineNumber.activeForeground":"#ADBAC7","editorIndentGuide.background":"#ADBAC71F","editorWhitespace.foreground":"#545D68","editorCursor.foreground":"#539BF5","editor.findMatchBackground":"#966600","editor.findMatchHighlightBackground":"#EAC55F80","editor.selectionHighlightBackground":"#57AB5A40","editor.wordHighlightBackground":"#636E7B80","editor.wordHighlightStrongBackground":"#636E7B4D","editorBracketMatch.background":"#57AB5A40","editorBracketMatch.border":"#57AB5A99","editorInlayHint.background":"#76839033","editorInlayHint.foreground":"#768390","diffEditor.insertedTextBackground":"#57AB5A4D","diffEditor.removedTextBackground":"#F470674D","scrollbar.shadow":"#545D6833","scrollbarSlider.background":"#76839033","scrollbarSlider.hoverBackground":"#7683903D","scrollbarSlider.activeBackground":"#76839047","editorOverviewRuler.border":"#1C2128","peekViewEditor.matchHighlightBackground":"#AE7C1466","peekViewResult.matchHighlightBackground":"#AE7C1466","peekViewEditor.background":"#636E7B1A","peekViewResult.background":"#22272E"}},"github-dark":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"8B949E"},{token:"punctuation.definition.comment",foreground:"8B949E"},{token:"string.comment",foreground:"8B949E"},{token:"constant.other.placeholder",foreground:"FF7B72"},{token:"constant.character",foreground:"FF7B72"},{token:"constant",foreground:"79C0FF"},{token:"entity.name.constant",foreground:"79C0FF"},{token:"variable.other.constant",foreground:"79C0FF"},{token:"variable.other.enummember",foreground:"79C0FF"},{token:"variable.language",foreground:"79C0FF"},{token:"entity",foreground:"79C0FF"},{token:"entity.name",foreground:"FFA657"},{token:"meta.export.default",foreground:"FFA657"},{token:"meta.definition.variable",foreground:"FFA657"},{token:"variable.parameter.function",foreground:"E6EDF3"},{token:"meta.jsx.children",foreground:"E6EDF3"},{token:"meta.block",foreground:"E6EDF3"},{token:"meta.tag.attributes",foreground:"E6EDF3"},{token:"entity.name.constant",foreground:"E6EDF3"},{token:"meta.object.member",foreground:"E6EDF3"},{token:"meta.embedded.expression",foreground:"E6EDF3"},{token:"entity.name.function",foreground:"D2A8FF"},{token:"entity.name.tag",foreground:"7EE787"},{token:"support.class.component",foreground:"7EE787"},{token:"keyword",foreground:"FF7B72"},{token:"storage",foreground:"FF7B72"},{token:"storage.type",foreground:"FF7B72"},{token:"storage.modifier.package",foreground:"E6EDF3"},{token:"storage.modifier.import",foreground:"E6EDF3"},{token:"storage.type.java",foreground:"E6EDF3"},{token:"string",foreground:"A5D6FF"},{token:"string punctuation.section.embedded source",foreground:"A5D6FF"},{token:"support",foreground:"79C0FF"},{token:"meta.property-name",foreground:"79C0FF"},{token:"variable",foreground:"FFA657"},{token:"variable.other",foreground:"E6EDF3"},{token:"invalid.broken",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.illegal",foreground:"FFA198",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"FFA198",fontStyle:"italic"},{token:"carriage-return",foreground:"F0F6FC",fontStyle:"italic underline"},{token:"message.error",foreground:"FFA198"},{token:"string variable",foreground:"79C0FF"},{token:"source.regexp",foreground:"A5D6FF"},{token:"string.regexp",foreground:"A5D6FF"},{token:"string.regexp.character-class",foreground:"A5D6FF"},{token:"string.regexp constant.character.escape",foreground:"A5D6FF"},{token:"string.regexp source.ruby.embedded",foreground:"A5D6FF"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"A5D6FF"},{token:"string.regexp constant.character.escape",foreground:"7EE787",fontStyle:"bold"},{token:"support.constant",foreground:"79C0FF"},{token:"support.variable",foreground:"79C0FF"},{token:"support.type.property-name.json",foreground:"7EE787"},{token:"meta.module-reference",foreground:"79C0FF"},{token:"punctuation.definition.list.begin.markdown",foreground:"FFA657"},{token:"markup.heading",foreground:"79C0FF",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"79C0FF",fontStyle:"bold"},{token:"markup.quote",foreground:"7EE787"},{token:"markup.italic",foreground:"E6EDF3",fontStyle:"italic"},{token:"markup.bold",foreground:"E6EDF3",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"79C0FF"},{token:"markup.deleted",foreground:"FFA198"},{token:"meta.diff.header.from-file",foreground:"FFA198"},{token:"punctuation.definition.deleted",foreground:"FFA198"},{token:"punctuation.section.embedded",foreground:"FF7B72"},{token:"markup.inserted",foreground:"7EE787"},{token:"meta.diff.header.to-file",foreground:"7EE787"},{token:"punctuation.definition.inserted",foreground:"7EE787"},{token:"markup.changed",foreground:"FFA657"},{token:"punctuation.definition.changed",foreground:"FFA657"},{token:"markup.ignored",foreground:"161B22"},{token:"markup.untracked",foreground:"161B22"},{token:"meta.diff.range",foreground:"D2A8FF",fontStyle:"bold"},{token:"meta.diff.header",foreground:"79C0FF"},{token:"meta.separator",foreground:"79C0FF",fontStyle:"bold"},{token:"meta.output",foreground:"79C0FF"},{token:"brackethighlighter.tag",foreground:"8B949E"},{token:"brackethighlighter.curly",foreground:"8B949E"},{token:"brackethighlighter.round",foreground:"8B949E"},{token:"brackethighlighter.square",foreground:"8B949E"},{token:"brackethighlighter.angle",foreground:"8B949E"},{token:"brackethighlighter.quote",foreground:"8B949E"},{token:"brackethighlighter.unmatched",foreground:"FFA198"},{token:"constant.other.reference.link",foreground:"A5D6FF"},{token:"string.other.link",foreground:"A5D6FF"}],colors:{focusBorder:"#1F6FEB",foreground:"#E6EDF3",descriptionForeground:"#7D8590",errorForeground:"#F85149","textLink.foreground":"#2F81F7","textLink.activeForeground":"#2F81F7","textBlockQuote.background":"#010409","textBlockQuote.border":"#30363D","textCodeBlock.background":"#6E768166","textPreformat.foreground":"#7D8590","textSeparator.foreground":"#21262D","button.background":"#238636","button.foreground":"#FFFFFF","button.hoverBackground":"#2EA043","dropdown.background":"#161B22","dropdown.border":"#30363D","dropdown.foreground":"#E6EDF3","input.background":"#0D1117","input.border":"#30363D","input.foreground":"#E6EDF3","input.placeholderForeground":"#6E7681","badge.foreground":"#FFFFFF","badge.background":"#1F6FEB","progressBar.background":"#1F6FEB","list.hoverForeground":"#E6EDF3","list.inactiveSelectionForeground":"#E6EDF3","list.activeSelectionForeground":"#E6EDF3","list.hoverBackground":"#6E76811A","list.inactiveSelectionBackground":"#6E768166","list.activeSelectionBackground":"#6E768166","list.focusForeground":"#E6EDF3","list.focusBackground":"#388BFD26","list.highlightForeground":"#2F81F7","pickerGroup.border":"#30363D","pickerGroup.foreground":"#7D8590","editor.foreground":"#E6EDF3","editor.background":"#0D1117","editorWidget.background":"#161B22","editor.lineHighlightBackground":"#6E76811A","editorLineNumber.foreground":"#6E7681","editorLineNumber.activeForeground":"#E6EDF3","editorIndentGuide.background":"#E6EDF31F","editorWhitespace.foreground":"#484F58","editorCursor.foreground":"#2F81F7","editor.findMatchBackground":"#9E6A03","editor.findMatchHighlightBackground":"#F2CC6080","editor.selectionHighlightBackground":"#3FB95040","editor.wordHighlightBackground":"#6E768180","editor.wordHighlightStrongBackground":"#6E76814D","editorBracketMatch.background":"#3FB95040","editorBracketMatch.border":"#3FB95099","editorInlayHint.background":"#8B949E33","editorInlayHint.foreground":"#7D8590","diffEditor.insertedTextBackground":"#3FB9504D","diffEditor.removedTextBackground":"#FF7B724D","scrollbar.shadow":"#484F5833","scrollbarSlider.background":"#8B949E33","scrollbarSlider.hoverBackground":"#8B949E3D","scrollbarSlider.activeBackground":"#8B949E47","editorOverviewRuler.border":"#010409","peekViewEditor.matchHighlightBackground":"#BB800966","peekViewResult.matchHighlightBackground":"#BB800966","peekViewEditor.background":"#6E76811A","peekViewResult.background":"#0D1117"}},"github-light":{base:"vs",inherit:!0,rules:[{token:"comment",foreground:"6E7781"},{token:"punctuation.definition.comment",foreground:"6E7781"},{token:"string.comment",foreground:"6E7781"},{token:"constant.other.placeholder",foreground:"CF222E"},{token:"constant.character",foreground:"CF222E"},{token:"constant",foreground:"0550AE"},{token:"entity.name.constant",foreground:"0550AE"},{token:"variable.other.constant",foreground:"0550AE"},{token:"variable.other.enummember",foreground:"0550AE"},{token:"variable.language",foreground:"0550AE"},{token:"entity",foreground:"0550AE"},{token:"entity.name",foreground:"953800"},{token:"meta.export.default",foreground:"953800"},{token:"meta.definition.variable",foreground:"953800"},{token:"variable.parameter.function",foreground:"1F2328"},{token:"meta.jsx.children",foreground:"1F2328"},{token:"meta.block",foreground:"1F2328"},{token:"meta.tag.attributes",foreground:"1F2328"},{token:"entity.name.constant",foreground:"1F2328"},{token:"meta.object.member",foreground:"1F2328"},{token:"meta.embedded.expression",foreground:"1F2328"},{token:"entity.name.function",foreground:"8250DF"},{token:"entity.name.tag",foreground:"116329"},{token:"support.class.component",foreground:"116329"},{token:"keyword",foreground:"CF222E"},{token:"storage",foreground:"CF222E"},{token:"storage.type",foreground:"CF222E"},{token:"storage.modifier.package",foreground:"1F2328"},{token:"storage.modifier.import",foreground:"1F2328"},{token:"storage.type.java",foreground:"1F2328"},{token:"string",foreground:"0A3069"},{token:"string punctuation.section.embedded source",foreground:"0A3069"},{token:"support",foreground:"0550AE"},{token:"meta.property-name",foreground:"0550AE"},{token:"variable",foreground:"953800"},{token:"variable.other",foreground:"1F2328"},{token:"invalid.broken",foreground:"82071E",fontStyle:"italic"},{token:"invalid.deprecated",foreground:"82071E",fontStyle:"italic"},{token:"invalid.illegal",foreground:"82071E",fontStyle:"italic"},{token:"invalid.unimplemented",foreground:"82071E",fontStyle:"italic"},{token:"carriage-return",foreground:"F6F8FA",fontStyle:"italic underline"},{token:"message.error",foreground:"82071E"},{token:"string variable",foreground:"0550AE"},{token:"source.regexp",foreground:"0A3069"},{token:"string.regexp",foreground:"0A3069"},{token:"string.regexp.character-class",foreground:"0A3069"},{token:"string.regexp constant.character.escape",foreground:"0A3069"},{token:"string.regexp source.ruby.embedded",foreground:"0A3069"},{token:"string.regexp string.regexp.arbitrary-repitition",foreground:"0A3069"},{token:"string.regexp constant.character.escape",foreground:"116329",fontStyle:"bold"},{token:"support.constant",foreground:"0550AE"},{token:"support.variable",foreground:"0550AE"},{token:"support.type.property-name.json",foreground:"116329"},{token:"meta.module-reference",foreground:"0550AE"},{token:"punctuation.definition.list.begin.markdown",foreground:"953800"},{token:"markup.heading",foreground:"0550AE",fontStyle:"bold"},{token:"markup.heading entity.name",foreground:"0550AE",fontStyle:"bold"},{token:"markup.quote",foreground:"116329"},{token:"markup.italic",foreground:"1F2328",fontStyle:"italic"},{token:"markup.bold",foreground:"1F2328",fontStyle:"bold"},{token:"markup.underline",fontStyle:"underline"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.inline.raw",foreground:"0550AE"},{token:"markup.deleted",foreground:"82071E"},{token:"meta.diff.header.from-file",foreground:"82071E"},{token:"punctuation.definition.deleted",foreground:"82071E"},{token:"punctuation.section.embedded",foreground:"CF222E"},{token:"markup.inserted",foreground:"116329"},{token:"meta.diff.header.to-file",foreground:"116329"},{token:"punctuation.definition.inserted",foreground:"116329"},{token:"markup.changed",foreground:"953800"},{token:"punctuation.definition.changed",foreground:"953800"},{token:"markup.ignored",foreground:"EAEEF2"},{token:"markup.untracked",foreground:"EAEEF2"},{token:"meta.diff.range",foreground:"8250DF",fontStyle:"bold"},{token:"meta.diff.header",foreground:"0550AE"},{token:"meta.separator",foreground:"0550AE",fontStyle:"bold"},{token:"meta.output",foreground:"0550AE"},{token:"brackethighlighter.tag",foreground:"57606A"},{token:"brackethighlighter.curly",foreground:"57606A"},{token:"brackethighlighter.round",foreground:"57606A"},{token:"brackethighlighter.square",foreground:"57606A"},{token:"brackethighlighter.angle",foreground:"57606A"},{token:"brackethighlighter.quote",foreground:"57606A"},{token:"brackethighlighter.unmatched",foreground:"82071E"},{token:"constant.other.reference.link",foreground:"0A3069"},{token:"string.other.link",foreground:"0A3069"}],colors:{focusBorder:"#0969DA",foreground:"#1F2328",descriptionForeground:"#656D76",errorForeground:"#CF222E","textLink.foreground":"#0969DA","textLink.activeForeground":"#0969DA","textBlockQuote.background":"#F6F8FA","textBlockQuote.border":"#D0D7DE","textCodeBlock.background":"#AFB8C133","textPreformat.foreground":"#656D76","textSeparator.foreground":"#D8DEE4","button.background":"#1F883D","button.foreground":"#FFFFFF","button.hoverBackground":"#1A7F37","dropdown.background":"#FFFFFF","dropdown.border":"#D0D7DE","dropdown.foreground":"#1F2328","input.background":"#FFFFFF","input.border":"#D0D7DE","input.foreground":"#1F2328","input.placeholderForeground":"#6E7781","badge.foreground":"#FFFFFF","badge.background":"#0969DA","progressBar.background":"#0969DA","list.hoverForeground":"#1F2328","list.inactiveSelectionForeground":"#1F2328","list.activeSelectionForeground":"#1F2328","list.hoverBackground":"#EAEEF280","list.inactiveSelectionBackground":"#AFB8C133","list.activeSelectionBackground":"#AFB8C133","list.focusForeground":"#1F2328","list.focusBackground":"#DDF4FF","list.highlightForeground":"#0969DA","pickerGroup.border":"#D0D7DE","pickerGroup.foreground":"#656D76","editor.foreground":"#1F2328","editor.background":"#FFFFFF","editorWidget.background":"#FFFFFF","editor.lineHighlightBackground":"#EAEEF280","editorLineNumber.foreground":"#8C959F","editorLineNumber.activeForeground":"#1F2328","editorIndentGuide.background":"#1F23281F","editorWhitespace.foreground":"#AFB8C1","editorCursor.foreground":"#0969DA","editor.findMatchBackground":"#BF8700","editor.findMatchHighlightBackground":"#FAE17D80","editor.selectionHighlightBackground":"#4AC26B40","editor.wordHighlightBackground":"#EAEEF280","editor.wordHighlightStrongBackground":"#AFB8C14D","editorBracketMatch.background":"#4AC26B40","editorBracketMatch.border":"#4AC26B99","editorInlayHint.background":"#AFB8C133","editorInlayHint.foreground":"#656D76","diffEditor.insertedTextBackground":"#6FDD8B80","diffEditor.removedTextBackground":"#FF818266","scrollbar.shadow":"#6E778133","scrollbarSlider.background":"#8C959F33","scrollbarSlider.hoverBackground":"#8C959F3D","scrollbarSlider.activeBackground":"#8C959F47","editorOverviewRuler.border":"#FFFFFF"}},monokai:{base:"vs-dark",inherit:!0,rules:[{token:"meta.embedded",foreground:"F8F8F2"},{token:"source.groovy.embedded",foreground:"F8F8F2"},{token:"string meta.image.inline.markdown",foreground:"F8F8F2"},{token:"variable.legacy.builtin.python",foreground:"F8F8F2"},{token:"comment",foreground:"88846F"},{token:"string",foreground:"E6DB74"},{token:"punctuation.definition.template-expression",foreground:"F92672"},{token:"punctuation.section.embedded",foreground:"F92672"},{token:"meta.template.expression",foreground:"F8F8F2"},{token:"constant.numeric",foreground:"AE81FF"},{token:"constant.language",foreground:"AE81FF"},{token:"constant.character, constant.other",foreground:"AE81FF"},{token:"variable",foreground:"F8F8F2"},{token:"keyword",foreground:"F92672"},{token:"storage",foreground:"F92672"},{token:"storage.type",foreground:"66D9EF",fontStyle:"italic"},{token:"entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution",foreground:"A6E22E",fontStyle:"underline"},{token:"entity.other.inherited-class",foreground:"A6E22E",fontStyle:"italic underline"},{token:"entity.name.function",foreground:"A6E22E"},{token:"variable.parameter",foreground:"FD971F",fontStyle:"italic"},{token:"entity.name.tag",foreground:"F92672"},{token:"entity.other.attribute-name",foreground:"A6E22E"},{token:"support.function",foreground:"66D9EF"},{token:"support.constant",foreground:"66D9EF"},{token:"support.type, support.class",foreground:"66D9EF",fontStyle:"italic"},{token:"support.other.variable"},{token:"invalid",foreground:"F44747"},{token:"invalid.deprecated",foreground:"F44747"},{token:"meta.structure.dictionary.json string.quoted.double.json",foreground:"CFCFC2"},{token:"meta.diff, meta.diff.header",foreground:"75715E"},{token:"markup.deleted",foreground:"F92672"},{token:"markup.inserted",foreground:"A6E22E"},{token:"markup.changed",foreground:"E6DB74"},{token:"constant.numeric.line-number.find-in-files - match",foreground:"AE81FFA0"},{token:"entity.name.filename.find-in-files",foreground:"E6DB74"},{token:"markup.quote",foreground:"F92672"},{token:"markup.list",foreground:"E6DB74"},{token:"markup.bold, markup.italic",foreground:"66D9EF"},{token:"markup.inline.raw",foreground:"FD971F"},{token:"markup.heading",foreground:"A6E22E"},{token:"markup.heading.setext",foreground:"A6E22E",fontStyle:"bold"},{token:"markup.heading.markdown",fontStyle:"bold"},{token:"markup.quote.markdown",foreground:"75715E",fontStyle:"italic"},{token:"markup.bold.markdown",fontStyle:"bold"},{token:"string.other.link.title.markdown,string.other.link.description.markdown",foreground:"AE81FF"},{token:"markup.underline.link.markdown,markup.underline.link.image.markdown",foreground:"E6DB74"},{token:"markup.italic.markdown",fontStyle:"italic"},{token:"markup.strikethrough",fontStyle:"strikethrough"},{token:"markup.list.unnumbered.markdown, markup.list.numbered.markdown",foreground:"F8F8F2"},{token:"punctuation.definition.list.begin.markdown",foreground:"A6E22E"},{token:"token.info-token",foreground:"6796E6"},{token:"token.warn-token",foreground:"CD9731"},{token:"token.error-token",foreground:"F44747"},{token:"token.debug-token",foreground:"B267E6"},{token:"variable.language",foreground:"FD971F"}],colors:{"dropdown.background":"#414339","list.activeSelectionBackground":"#75715E","list.inactiveSelectionBackground":"#414339","list.hoverBackground":"#3E3D32","list.dropBackground":"#414339","list.highlightForeground":"#F8F8F2","button.background":"#75715E","editor.background":"#272822","editor.foreground":"#F8F8F2","selection.background":"#878B9180","editor.selectionHighlightBackground":"#575B6180","editor.selectionBackground":"#878B9180","editor.wordHighlightBackground":"#4A4A7680","editor.wordHighlightStrongBackground":"#6A6A9680","editor.lineHighlightBackground":"#3E3D32","editorLineNumber.activeForeground":"#C2C2BF","editorCursor.foreground":"#F8F8F0","editorWhitespace.foreground":"#464741","editorIndentGuide.background":"#464741","widget.shadow":"#00000098","progressBar.background":"#75715E","badge.background":"#75715E","badge.foreground":"#F8F8F2","editorLineNumber.foreground":"#90908A","pickerGroup.foreground":"#75715E","input.background":"#414339","inputOption.activeBorder":"#75715E",focusBorder:"#99947C","editorWidget.background":"#1E1F1C","diffEditor.insertedTextBackground":"#4B661680","diffEditor.removedTextBackground":"#90274A70","inputValidation.errorBackground":"#90274A","inputValidation.errorBorder":"#F92672","inputValidation.warningBackground":"#848528","inputValidation.warningBorder":"#E2E22E","inputValidation.infoBackground":"#546190","inputValidation.infoBorder":"#819AFF","editorHoverWidget.background":"#414339","editorHoverWidget.border":"#75715E","editorSuggestWidget.background":"#272822","editorSuggestWidget.border":"#75715E","peekView.border":"#75715E","peekViewEditor.background":"#272822","peekViewResult.background":"#1E1F1C","peekViewTitle.background":"#1E1F1C","peekViewResult.selectionBackground":"#414339","peekViewResult.matchHighlightBackground":"#75715E","peekViewEditor.matchHighlightBackground":"#75715E"}},nord:{base:"vs-dark",inherit:!0,rules:[{token:"emphasis",fontStyle:"italic"},{token:"strong",fontStyle:"bold"},{token:"comment",foreground:"616E88"},{token:"constant.character",foreground:"EBCB8B"},{token:"constant.character.escape",foreground:"EBCB8B"},{token:"constant.language",foreground:"81A1C1"},{token:"constant.numeric",foreground:"B48EAD"},{token:"constant.regexp",foreground:"EBCB8B"},{token:"entity.name.class",foreground:"8FBCBB"},{token:"entity.name.type.class",foreground:"8FBCBB"},{token:"entity.name.function",foreground:"88C0D0"},{token:"entity.name.tag",foreground:"81A1C1"},{token:"entity.other.attribute-name",foreground:"8FBCBB"},{token:"entity.other.inherited-class",foreground:"8FBCBB",fontStyle:"bold"},{token:"invalid.deprecated",foreground:"D8DEE9"},{token:"invalid.illegal",foreground:"D8DEE9"},{token:"keyword",foreground:"81A1C1"},{token:"keyword.operator",foreground:"81A1C1"},{token:"keyword.other.new",foreground:"81A1C1"},{token:"markup.bold",fontStyle:"bold"},{token:"markup.changed",foreground:"EBCB8B"},{token:"markup.deleted",foreground:"BF616A"},{token:"markup.inserted",foreground:"A3BE8C"},{token:"meta.preprocessor",foreground:"5E81AC"},{token:"punctuation",foreground:"ECEFF4"},{token:"punctuation.definition.method-parameters",foreground:"ECEFF4"},{token:"punctuation.definition.function-parameters",foreground:"ECEFF4"},{token:"punctuation.definition.parameters",foreground:"ECEFF4"},{token:"punctuation.definition.tag",foreground:"81A1C1"},{token:"punctuation.definition.comment",foreground:"616E88"},{token:"punctuation.end.definition.comment",foreground:"616E88"},{token:"punctuation.start.definition.comment",foreground:"616E88"},{token:"punctuation.section",foreground:"ECEFF4"},{token:"punctuation.section.embedded.begin",foreground:"81A1C1"},{token:"punctuation.section.embedded.end",foreground:"81A1C1"},{token:"punctuation.terminator",foreground:"81A1C1"},{token:"punctuation.definition.variable",foreground:"81A1C1"},{token:"storage",foreground:"81A1C1"},{token:"string",foreground:"A3BE8C"},{token:"string.regexp",foreground:"EBCB8B"},{token:"support.class",foreground:"8FBCBB"},{token:"support.constant",foreground:"81A1C1"},{token:"support.function",foreground:"88C0D0"},{token:"support.function.construct",foreground:"81A1C1"},{token:"support.type",foreground:"8FBCBB"},{token:"support.type.exception",foreground:"8FBCBB"},{token:"token.debug-token",foreground:"B48EAD"},{token:"token.error-token",foreground:"BF616A"},{token:"token.info-token",foreground:"88C0D0"},{token:"token.warn-token",foreground:"EBCB8B"},{token:"variable.other",foreground:"D8DEE9"},{token:"variable.language",foreground:"81A1C1"},{token:"variable.parameter",foreground:"D8DEE9"},{token:"punctuation.separator.pointer-access.c",foreground:"81A1C1"},{token:"source.c meta.preprocessor.include",foreground:"8FBCBB"},{token:"source.c string.quoted.other.lt-gt.include",foreground:"8FBCBB"},{token:"source.cpp keyword.control.directive.conditional",foreground:"5E81AC",fontStyle:"bold"},{token:"source.cpp punctuation.definition.directive",foreground:"5E81AC",fontStyle:"bold"},{token:"source.c keyword.control.directive.conditional",foreground:"5E81AC",fontStyle:"bold"},{token:"source.c punctuation.definition.directive",foreground:"5E81AC",fontStyle:"bold"},{token:"source.css constant.other.color.rgb-value",foreground:"B48EAD"},{token:"source.css meta.property-value",foreground:"88C0D0"},{token:"source.css keyword.control.at-rule.media",foreground:"D08770"},{token:"source.css keyword.control.at-rule.media punctuation.definition.keyword",foreground:"D08770"},{token:"source.css punctuation.definition.keyword",foreground:"81A1C1"},{token:"source.css support.type.property-name",foreground:"D8DEE9"},{token:"source.diff meta.diff.range.context",foreground:"8FBCBB"},{token:"source.diff meta.diff.header.from-file",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.from-file",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.range",foreground:"8FBCBB"},{token:"source.diff punctuation.definition.separator",foreground:"81A1C1"},{token:"entity.name.type.module.elixir",foreground:"8FBCBB"},{token:"variable.other.readwrite.module.elixir",foreground:"D8DEE9",fontStyle:"bold"},{token:"constant.other.symbol.elixir",foreground:"D8DEE9",fontStyle:"bold"},{token:"variable.other.constant.elixir",foreground:"8FBCBB"},{token:"source.go constant.other.placeholder.go",foreground:"EBCB8B"},{token:"source.java comment.block.documentation.javadoc punctuation.definition.entity.html",foreground:"81A1C1"},{token:"source.java constant.other",foreground:"D8DEE9"},{token:"source.java keyword.other.documentation",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.author.javadoc",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.directive",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.custom",foreground:"8FBCBB"},{token:"source.java keyword.other.documentation.see.javadoc",foreground:"8FBCBB"},{token:"source.java meta.method-call meta.method",foreground:"88C0D0"},{token:"source.java meta.tag.template.link.javadoc",foreground:"8FBCBB"},{token:"source.java string.other.link.title.javadoc",foreground:"8FBCBB"},{token:"source.java meta.tag.template.value.javadoc",foreground:"88C0D0"},{token:"source.java punctuation.definition.keyword.javadoc",foreground:"8FBCBB"},{token:"source.java punctuation.definition.tag.begin.javadoc",foreground:"616E88"},{token:"source.java punctuation.definition.tag.end.javadoc",foreground:"616E88"},{token:"source.java storage.modifier.import",foreground:"8FBCBB"},{token:"source.java storage.modifier.package",foreground:"8FBCBB"},{token:"source.java storage.type",foreground:"8FBCBB"},{token:"source.java storage.type.annotation",foreground:"D08770"},{token:"source.java storage.type.generic",foreground:"8FBCBB"},{token:"source.java storage.type.primitive",foreground:"81A1C1"},{token:"source.js punctuation.decorator",foreground:"D08770"},{token:"source.js meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.js meta.decorator entity.name.function",foreground:"D08770"},{token:"source.js meta.object-literal.key",foreground:"88C0D0"},{token:"source.js storage.type.class.jsdoc",foreground:"8FBCBB"},{token:"source.js string.quoted.template punctuation.quasi.element.begin",foreground:"81A1C1"},{token:"source.js string.quoted.template punctuation.quasi.element.end",foreground:"81A1C1"},{token:"source.js string.template punctuation.definition.template-expression",foreground:"81A1C1"},{token:"source.js string.quoted.template meta.method-call.with-arguments",foreground:"ECEFF4"},{token:"source.js string.template meta.template.expression support.variable.property",foreground:"D8DEE9"},{token:"source.js string.template meta.template.expression variable.other.object",foreground:"D8DEE9"},{token:"source.js support.type.primitive",foreground:"81A1C1"},{token:"source.js variable.other.object",foreground:"D8DEE9"},{token:"source.js variable.other.readwrite.alias",foreground:"8FBCBB"},{token:"source.js meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.js meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"source.js string.quoted.template meta.brace.square",foreground:"ECEFF4"},{token:"source.js string.quoted.template meta.brace.round",foreground:"ECEFF4"},{token:"text.html.basic constant.character.entity.html",foreground:"EBCB8B"},{token:"text.html.basic constant.other.inline-data",foreground:"D08770",fontStyle:"italic"},{token:"text.html.basic meta.tag.sgml.doctype",foreground:"5E81AC"},{token:"text.html.basic punctuation.definition.entity",foreground:"81A1C1"},{token:"source.properties entity.name.section.group-title.ini",foreground:"88C0D0"},{token:"source.properties punctuation.separator.key-value.ini",foreground:"81A1C1"},{token:"text.html.markdown markup.fenced_code.block",foreground:"8FBCBB"},{token:"text.html.markdown markup.fenced_code.block punctuation.definition",foreground:"8FBCBB"},{token:"markup.heading",foreground:"88C0D0"},{token:"text.html.markdown markup.inline.raw",foreground:"8FBCBB"},{token:"text.html.markdown markup.inline.raw punctuation.definition.raw",foreground:"8FBCBB"},{token:"text.html.markdown markup.italic",fontStyle:"italic"},{token:"text.html.markdown markup.underline.link",fontStyle:"underline"},{token:"text.html.markdown beginning.punctuation.definition.list",foreground:"81A1C1"},{token:"text.html.markdown beginning.punctuation.definition.quote",foreground:"8FBCBB"},{token:"text.html.markdown markup.quote",foreground:"616E88"},{token:"text.html.markdown constant.character.math.tex",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.math.begin",foreground:"5E81AC"},{token:"text.html.markdown punctuation.definition.math.end",foreground:"5E81AC"},{token:"text.html.markdown punctuation.definition.function.math.tex",foreground:"88C0D0"},{token:"text.html.markdown punctuation.math.operator.latex",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.heading",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.constant",foreground:"81A1C1"},{token:"text.html.markdown punctuation.definition.string",foreground:"81A1C1"},{token:"text.html.markdown constant.other.reference.link",foreground:"88C0D0"},{token:"text.html.markdown string.other.link.description",foreground:"88C0D0"},{token:"text.html.markdown string.other.link.title",foreground:"88C0D0"},{token:"source.perl punctuation.definition.variable",foreground:"D8DEE9"},{token:"source.php meta.function-call",foreground:"88C0D0"},{token:"source.php meta.function-call.object",foreground:"88C0D0"},{token:"source.python entity.name.function.decorator",foreground:"D08770"},{token:"source.python meta.function.decorator support.type",foreground:"D08770"},{token:"source.python meta.function-call.generic",foreground:"88C0D0"},{token:"source.python support.type",foreground:"88C0D0"},{token:"source.python variable.parameter.function.language",foreground:"D8DEE9"},{token:"source.python meta.function.parameters variable.parameter.function.language.special.self",foreground:"81A1C1"},{token:"source.rust entity.name.type",foreground:"8FBCBB"},{token:"source.rust meta.macro entity.name.function",foreground:"88C0D0",fontStyle:"bold"},{token:"source.rust meta.attribute",foreground:"5E81AC"},{token:"source.rust meta.attribute punctuation",foreground:"5E81AC"},{token:"source.rust meta.attribute keyword.operator",foreground:"5E81AC"},{token:"source.rust entity.name.type.trait",fontStyle:"bold"},{token:"source.rust punctuation.definition.interpolation",foreground:"EBCB8B"},{token:"source.css.scss punctuation.definition.interpolation.begin.bracket.curly",foreground:"81A1C1"},{token:"source.css.scss punctuation.definition.interpolation.end.bracket.curly",foreground:"81A1C1"},{token:"source.css.scss variable.interpolation",foreground:"D8DEE9",fontStyle:"italic"},{token:"source.ts punctuation.decorator",foreground:"D08770"},{token:"source.ts meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.ts meta.decorator entity.name.function",foreground:"D08770"},{token:"source.tsx punctuation.decorator",foreground:"D08770"},{token:"source.tsx meta.decorator variable.other.readwrite",foreground:"D08770"},{token:"source.tsx meta.decorator entity.name.function",foreground:"D08770"},{token:"source.ts meta.object-literal.key",foreground:"D8DEE9"},{token:"source.tsx meta.object-literal.key",foreground:"D8DEE9"},{token:"source.ts meta.object-literal.key entity.name.function",foreground:"88C0D0"},{token:"source.tsx meta.object-literal.key entity.name.function",foreground:"88C0D0"},{token:"source.ts support.class",foreground:"8FBCBB"},{token:"source.ts support.type",foreground:"8FBCBB"},{token:"source.ts entity.name.type",foreground:"8FBCBB"},{token:"source.ts entity.name.class",foreground:"8FBCBB"},{token:"source.tsx support.class",foreground:"8FBCBB"},{token:"source.tsx support.type",foreground:"8FBCBB"},{token:"source.tsx entity.name.type",foreground:"8FBCBB"},{token:"source.tsx entity.name.class",foreground:"8FBCBB"},{token:"source.ts support.constant.math",foreground:"8FBCBB"},{token:"source.ts support.constant.dom",foreground:"8FBCBB"},{token:"source.ts support.constant.json",foreground:"8FBCBB"},{token:"source.tsx support.constant.math",foreground:"8FBCBB"},{token:"source.tsx support.constant.dom",foreground:"8FBCBB"},{token:"source.tsx support.constant.json",foreground:"8FBCBB"},{token:"source.ts support.variable",foreground:"D8DEE9"},{token:"source.tsx support.variable",foreground:"D8DEE9"},{token:"source.ts meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.ts meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"source.tsx meta.embedded.line meta.brace.square",foreground:"ECEFF4"},{token:"source.tsx meta.embedded.line meta.brace.round",foreground:"ECEFF4"},{token:"text.xml entity.name.tag.namespace",foreground:"8FBCBB"},{token:"text.xml keyword.other.doctype",foreground:"5E81AC"},{token:"text.xml meta.tag.preprocessor entity.name.tag",foreground:"5E81AC"},{token:"text.xml string.unquoted.cdata",foreground:"D08770",fontStyle:"italic"},{token:"text.xml string.unquoted.cdata punctuation.definition.string",foreground:"D08770",fontStyle:"italic"},{token:"source.yaml entity.name.tag",foreground:"8FBCBB"}],colors:{focusBorder:"#3B4252",foreground:"#D8DEE9","badge.foreground":"#2E3440","badge.background":"#88C0D0","button.background":"#88C0D0EE","button.foreground":"#2E3440","button.hoverBackground":"#88C0D0",descriptionForeground:"#D8DEE9E6","diffEditor.insertedTextBackground":"#81A1C133","diffEditor.removedTextBackground":"#BF616A4D","dropdown.background":"#3B4252","dropdown.border":"#3B4252","dropdown.foreground":"#D8DEE9","editorCursor.foreground":"#D8DEE9","editorIndentGuide.background":"#434C5EB3","editorInlayHint.background":"#434C5E","editorInlayHint.foreground":"#D8DEE9","editorLineNumber.foreground":"#4C566A","editorLineNumber.activeForeground":"#D8DEE9","editorWhitespace.foreground":"#4C566AB3","editorWidget.background":"#2E3440","editorWidget.border":"#3B4252","editor.background":"#2E3440","editor.foreground":"#D8DEE9","editor.hoverHighlightBackground":"#3B4252","editor.findMatchBackground":"#88C0D066","editor.findMatchHighlightBackground":"#88C0D033","editor.findRangeHighlightBackground":"#88C0D033","editor.lineHighlightBackground":"#3B4252","editor.lineHighlightBorder":"#3B4252","editor.inactiveSelectionBackground":"#434C5ECC","editor.selectionBackground":"#434C5ECC","editor.selectionHighlightBackground":"#434C5ECC","editor.rangeHighlightBackground":"#434C5E52","editor.wordHighlightBackground":"#81A1C166","editor.wordHighlightStrongBackground":"#81A1C199","editorError.foreground":"#BF616A","editorError.border":"#BF616A00","editorWarning.foreground":"#EBCB8B","editorWarning.border":"#EBCB8B00","editorBracketMatch.background":"#2E344000","editorBracketMatch.border":"#88C0D0","editorCodeLens.foreground":"#4C566A","editorGutter.background":"#2E3440","editorHoverWidget.background":"#3B4252","editorHoverWidget.border":"#3B4252","editorLink.activeForeground":"#88C0D0","editorMarkerNavigation.background":"#5E81ACC0","editorMarkerNavigationError.background":"#BF616AC0","editorMarkerNavigationWarning.background":"#EBCB8BC0","editorOverviewRuler.border":"#3B4252","editorOverviewRuler.currentContentForeground":"#3B4252","editorOverviewRuler.incomingContentForeground":"#3B4252","editorRuler.foreground":"#434C5E","editorSuggestWidget.background":"#2E3440","editorSuggestWidget.border":"#3B4252","editorSuggestWidget.foreground":"#D8DEE9","editorSuggestWidget.highlightForeground":"#88C0D0","editorSuggestWidget.selectedBackground":"#434C5E",errorForeground:"#BF616A","input.background":"#3B4252","input.foreground":"#D8DEE9","input.placeholderForeground":"#D8DEE999","input.border":"#3B4252","inputOption.activeBorder":"#5E81AC","inputValidation.errorBackground":"#BF616A","inputValidation.errorBorder":"#BF616A","inputValidation.infoBackground":"#81A1C1","inputValidation.infoBorder":"#81A1C1","inputValidation.warningBackground":"#D08770","inputValidation.warningBorder":"#D08770","list.activeSelectionBackground":"#88C0D0","list.activeSelectionForeground":"#2E3440","list.inactiveSelectionBackground":"#434C5E","list.inactiveSelectionForeground":"#D8DEE9","list.hoverForeground":"#ECEFF4","list.focusForeground":"#D8DEE9","list.focusBackground":"#88C0D099","list.hoverBackground":"#3B4252","list.dropBackground":"#88C0D099","list.highlightForeground":"#88C0D0","peekView.border":"#4C566A","peekViewEditor.background":"#2E3440","peekViewEditorGutter.background":"#2E3440","peekViewEditor.matchHighlightBackground":"#88C0D04D","peekViewResult.background":"#2E3440","peekViewResult.fileForeground":"#88C0D0","peekViewResult.lineForeground":"#D8DEE966","peekViewResult.matchHighlightBackground":"#88C0D0CC","peekViewResult.selectionBackground":"#434C5E","peekViewResult.selectionForeground":"#D8DEE9","peekViewTitle.background":"#3B4252","peekViewTitleDescription.foreground":"#D8DEE9","peekViewTitleLabel.foreground":"#88C0D0","pickerGroup.border":"#3B4252","pickerGroup.foreground":"#88C0D0","progressBar.background":"#88C0D0","scrollbar.shadow":"#00000066","scrollbarSlider.activeBackground":"#434C5EAA","scrollbarSlider.background":"#434C5E99","scrollbarSlider.hoverBackground":"#434C5EAA","selection.background":"#88C0D099","textBlockQuote.background":"#3B4252","textBlockQuote.border":"#81A1C1","textCodeBlock.background":"#4C566A","textLink.activeForeground":"#88C0D0","textLink.foreground":"#88C0D0","textPreformat.foreground":"#8FBCBB","textSeparator.foreground":"#ECEFF4","widget.shadow":"#00000066"}},"one-dark-pro-darker":{base:"vs-dark",inherit:!0,rules:[{token:"meta.embedded",foreground:"ABB2BF"},{token:"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison",foreground:"E06C75"},{token:"variable.other.generic-type.haskell",foreground:"C678DD"},{token:"storage.type.haskell",foreground:"D19A66"},{token:"support.variable.magic.python",foreground:"E06C75"},{token:"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python",foreground:"ABB2BF"},{token:"variable.parameter.function.language.special.self.python",foreground:"E5C07B"},{token:"variable.parameter.function.language.special.cls.python",foreground:"E5C07B"},{token:"storage.modifier.lifetime.rust",foreground:"ABB2BF"},{token:"support.function.std.rust",foreground:"61AFEF"},{token:"entity.name.lifetime.rust",foreground:"E5C07B"},{token:"variable.language.rust",foreground:"E06C75"},{token:"support.constant.edge",foreground:"C678DD"},{token:"constant.other.character-class.regexp",foreground:"E06C75"},{token:"keyword.operator.word",foreground:"C678DD"},{token:"keyword.operator.quantifier.regexp",foreground:"D19A66"},{token:"variable.parameter.function",foreground:"ABB2BF"},{token:"comment markup.link",foreground:"5C6370"},{token:"markup.changed.diff",foreground:"E5C07B"},{token:"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff",foreground:"61AFEF"},{token:"markup.inserted.diff",foreground:"98C379"},{token:"markup.deleted.diff",foreground:"E06C75"},{token:"meta.function.c,meta.function.cpp",foreground:"E06C75"},{token:"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c",foreground:"ABB2BF"},{token:"punctuation.separator.key-value",foreground:"ABB2BF"},{token:"keyword.operator.expression.import",foreground:"61AFEF"},{token:"support.constant.math",foreground:"E5C07B"},{token:"support.constant.property.math",foreground:"D19A66"},{token:"variable.other.constant",foreground:"E5C07B"},{token:"storage.type.annotation.java",foreground:"E5C07B"},{token:"storage.type.object.array.java",foreground:"E5C07B"},{token:"source.java",foreground:"E06C75"},{token:"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java",foreground:"ABB2BF"},{token:"meta.method.java",foreground:"61AFEF"},{token:"storage.modifier.import.java,storage.type.java,storage.type.generic.java",foreground:"E5C07B"},{token:"keyword.operator.instanceof.java",foreground:"C678DD"},{token:"meta.definition.variable.name.java",foreground:"E06C75"},{token:"keyword.operator.logical",foreground:"56B6C2"},{token:"keyword.operator.bitwise",foreground:"56B6C2"},{token:"keyword.operator.channel",foreground:"56B6C2"},{token:"support.constant.property-value.scss,support.constant.property-value.css",foreground:"D19A66"},{token:"keyword.operator.css,keyword.operator.scss,keyword.operator.less",foreground:"56B6C2"},{token:"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss",foreground:"D19A66"},{token:"punctuation.separator.list.comma.css",foreground:"ABB2BF"},{token:"support.constant.color.w3c-standard-color-name.css",foreground:"D19A66"},{token:"support.type.vendored.property-name.css",foreground:"56B6C2"},{token:"support.module.node,support.type.object.module,support.module.node",foreground:"E5C07B"},{token:"entity.name.type.module",foreground:"E5C07B"},{token:"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node",foreground:"E06C75"},{token:"support.constant.json",foreground:"D19A66"},{token:"keyword.operator.expression.instanceof",foreground:"C678DD"},{token:"keyword.operator.new",foreground:"C678DD"},{token:"keyword.operator.ternary",foreground:"C678DD"},{token:"keyword.operator.optional",foreground:"C678DD"},{token:"keyword.operator.expression.keyof",foreground:"C678DD"},{token:"support.type.object.console",foreground:"E06C75"},{token:"support.variable.property.process",foreground:"D19A66"},{token:"entity.name.function,support.function.console",foreground:"61AFEF"},{token:"keyword.operator.misc.rust",foreground:"ABB2BF"},{token:"keyword.operator.sigil.rust",foreground:"C678DD"},{token:"keyword.operator.delete",foreground:"C678DD"},{token:"support.type.object.dom",foreground:"56B6C2"},{token:"support.variable.dom,support.variable.property.dom",foreground:"E06C75"},{token:"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational",foreground:"56B6C2"},{token:"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp",foreground:"C678DD"},{token:"punctuation.separator.delimiter",foreground:"ABB2BF"},{token:"punctuation.separator.c,punctuation.separator.cpp",foreground:"C678DD"},{token:"support.type.posix-reserved.c,support.type.posix-reserved.cpp",foreground:"56B6C2"},{token:"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp",foreground:"C678DD"},{token:"variable.parameter.function.language.python",foreground:"D19A66"},{token:"support.type.python",foreground:"56B6C2"},{token:"keyword.operator.logical.python",foreground:"C678DD"},{token:"variable.parameter.function.python",foreground:"D19A66"},{token:"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python",foreground:"ABB2BF"},{token:"meta.function-call.generic.python",foreground:"61AFEF"},{token:"constant.character.format.placeholder.other.python",foreground:"D19A66"},{token:"keyword.operator",foreground:"ABB2BF"},{token:"keyword.operator.assignment.compound",foreground:"C678DD"},{token:"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts",foreground:"56B6C2"},{token:"keyword",foreground:"C678DD"},{token:"entity.name.namespace",foreground:"E5C07B"},{token:"variable",foreground:"E06C75"},{token:"variable.c",foreground:"ABB2BF"},{token:"variable.language",foreground:"E5C07B"},{token:"token.variable.parameter.java",foreground:"ABB2BF"},{token:"import.storage.java",foreground:"E5C07B"},{token:"token.package.keyword",foreground:"C678DD"},{token:"token.package",foreground:"ABB2BF"},{token:"entity.name.function",foreground:"61AFEF"},{token:"meta.require",foreground:"61AFEF"},{token:"support.function.any-method",foreground:"61AFEF"},{token:"variable.function",foreground:"61AFEF"},{token:"entity.name.type.namespace",foreground:"E5C07B"},{token:"support.class, entity.name.type.class",foreground:"E5C07B"},{token:"entity.name.class.identifier.namespace.type",foreground:"E5C07B"},{token:"entity.name.class",foreground:"E5C07B"},{token:"variable.other.class.js",foreground:"E5C07B"},{token:"variable.other.class.ts",foreground:"E5C07B"},{token:"variable.other.class.php",foreground:"E06C75"},{token:"entity.name.type",foreground:"E5C07B"},{token:"keyword.control",foreground:"C678DD"},{token:"control.elements, keyword.operator.less",foreground:"D19A66"},{token:"keyword.other.special-method",foreground:"61AFEF"},{token:"storage",foreground:"C678DD"},{token:"token.storage",foreground:"C678DD"},{token:"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void",foreground:"C678DD"},{token:"token.storage.type.java",foreground:"E5C07B"},{token:"support.function",foreground:"56B6C2"},{token:"support.type.property-name",foreground:"ABB2BF"},{token:"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml",foreground:"E06C75"},{token:"support.constant.property-value",foreground:"ABB2BF"},{token:"support.constant.font-name",foreground:"D19A66"},{token:"meta.tag",foreground:"ABB2BF"},{token:"string",foreground:"98C379"},{token:"constant.other.symbol",foreground:"56B6C2"},{token:"constant.numeric",foreground:"D19A66"},{token:"constant",foreground:"D19A66"},{token:"punctuation.definition.constant",foreground:"D19A66"},{token:"entity.name.tag",foreground:"E06C75"},{token:"entity.other.attribute-name",foreground:"D19A66"},{token:"entity.other.attribute-name.id",foreground:"61AFEF"},{token:"entity.other.attribute-name.class.css",foreground:"D19A66"},{token:"meta.selector",foreground:"C678DD"},{token:"markup.heading",foreground:"E06C75"},{token:"markup.heading punctuation.definition.heading, entity.name.section",foreground:"61AFEF"},{token:"keyword.other.unit",foreground:"E06C75"},{token:"markup.bold,todo.bold",foreground:"D19A66"},{token:"punctuation.definition.bold",foreground:"E5C07B"},{token:"markup.italic, punctuation.definition.italic,todo.emphasis",foreground:"C678DD"},{token:"emphasis md",foreground:"C678DD"},{token:"entity.name.section.markdown",foreground:"E06C75"},{token:"punctuation.definition.heading.markdown",foreground:"E06C75"},{token:"punctuation.definition.list.begin.markdown",foreground:"E5C07B"},{token:"markup.heading.setext",foreground:"ABB2BF"},{token:"punctuation.definition.bold.markdown",foreground:"D19A66"},{token:"markup.inline.raw.markdown",foreground:"98C379"},{token:"markup.inline.raw.string.markdown",foreground:"98C379"},{token:"punctuation.definition.raw.markdown",foreground:"E5C07B"},{token:"punctuation.definition.list.markdown",foreground:"E5C07B"},{token:"punctuation.definition.string.begin.markdown",foreground:"E06C75"},{token:"punctuation.definition.string.end.markdown",foreground:"E06C75"},{token:"punctuation.definition.metadata.markdown",foreground:"E06C75"},{token:"beginning.punctuation.definition.list.markdown",foreground:"E06C75"},{token:"punctuation.definition.metadata.markdown",foreground:"E06C75"},{token:"markup.underline.link.markdown,markup.underline.link.image.markdown",foreground:"C678DD"},{token:"string.other.link.title.markdown,string.other.link.description.markdown",foreground:"61AFEF"},{token:"markup.raw.monospace.asciidoc",foreground:"98C379"},{token:"punctuation.definition.asciidoc",foreground:"E5C07B"},{token:"markup.list.asciidoc",foreground:"E5C07B"},{token:"markup.link.asciidoc,markup.other.url.asciidoc",foreground:"C678DD"},{token:"string.unquoted.asciidoc,markup.other.url.asciidoc",foreground:"61AFEF"},{token:"string.regexp",foreground:"56B6C2"},{token:"punctuation.section.embedded, variable.interpolation",foreground:"E06C75"},{token:"punctuation.section.embedded.begin,punctuation.section.embedded.end",foreground:"C678DD"},{token:"invalid.illegal",foreground:"FFFFFF"},{token:"invalid.illegal.bad-ampersand.html",foreground:"ABB2BF"},{token:"invalid.illegal.unrecognized-tag.html",foreground:"E06C75"},{token:"invalid.broken",foreground:"FFFFFF"},{token:"invalid.deprecated",foreground:"FFFFFF"},{token:"invalid.deprecated.entity.other.attribute-name.html",foreground:"D19A66"},{token:"invalid.unimplemented",foreground:"FFFFFF"},{token:"source.json meta.structure.dictionary.json > string.quoted.json",foreground:"E06C75"},{token:"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string",foreground:"E06C75"},{token:"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation",foreground:"98C379"},{token:"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json",foreground:"56B6C2"},{token:"support.type.property-name.json",foreground:"E06C75"},{token:"support.type.property-name.json punctuation",foreground:"E06C75"},{token:"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade",foreground:"C678DD"},{token:"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade",foreground:"C678DD"},{token:"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php",foreground:"E5C07B"},{token:"keyword.operator.error-control.php",foreground:"C678DD"},{token:"keyword.operator.type.php",foreground:"C678DD"},{token:"punctuation.section.array.begin.php",foreground:"ABB2BF"},{token:"punctuation.section.array.end.php",foreground:"ABB2BF"},{token:"invalid.illegal.non-null-typehinted.php",foreground:"F44747"},{token:"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php",foreground:"E5C07B"},{token:"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php",foreground:"61AFEF"},{token:"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php",foreground:"ABB2BF"},{token:"support.constant.core.rust",foreground:"D19A66"},{token:"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php",foreground:"D19A66"},{token:"entity.name.goto-label.php,support.other.php",foreground:"61AFEF"},{token:"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php",foreground:"56B6C2"},{token:"keyword.operator.regexp.php",foreground:"C678DD"},{token:"keyword.operator.comparison.php",foreground:"56B6C2"},{token:"keyword.operator.heredoc.php,keyword.operator.nowdoc.php",foreground:"C678DD"},{token:"meta.function.decorator.python",foreground:"61AFEF"},{token:"support.token.decorator.python,meta.function.decorator.identifier.python",foreground:"56B6C2"},{token:"function.parameter",foreground:"ABB2BF"},{token:"function.brace",foreground:"ABB2BF"},{token:"function.parameter.ruby, function.parameter.cs",foreground:"ABB2BF"},{token:"constant.language.symbol.ruby",foreground:"56B6C2"},{token:"constant.language.symbol.hashkey.ruby",foreground:"56B6C2"},{token:"rgb-value",foreground:"56B6C2"},{token:"inline-color-decoration rgb-value",foreground:"D19A66"},{token:"less rgb-value",foreground:"D19A66"},{token:"selector.sass",foreground:"E06C75"},{token:"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx",foreground:"E5C07B"},{token:"block.scope.end,block.scope.begin",foreground:"ABB2BF"},{token:"storage.type.cs",foreground:"E5C07B"},{token:"entity.name.variable.local.cs",foreground:"E06C75"},{token:"token.info-token",foreground:"61AFEF"},{token:"token.warn-token",foreground:"D19A66"},{token:"token.error-token",foreground:"F44747"},{token:"token.debug-token",foreground:"C678DD"},{token:"punctuation.definition.template-expression.begin",foreground:"C678DD"},{token:"punctuation.definition.template-expression.end",foreground:"C678DD"},{token:"punctuation.section.embedded",foreground:"C678DD"},{token:"meta.template.expression",foreground:"ABB2BF"},{token:"keyword.operator.module",foreground:"C678DD"},{token:"support.type.type.flowtype",foreground:"61AFEF"},{token:"support.type.primitive",foreground:"E5C07B"},{token:"meta.property.object",foreground:"E06C75"},{token:"variable.parameter.function.js",foreground:"E06C75"},{token:"keyword.other.template.begin",foreground:"98C379"},{token:"keyword.other.template.end",foreground:"98C379"},{token:"keyword.other.substitution.begin",foreground:"98C379"},{token:"keyword.other.substitution.end",foreground:"98C379"},{token:"keyword.operator.assignment",foreground:"56B6C2"},{token:"keyword.operator.assignment.go",foreground:"E5C07B"},{token:"keyword.operator.arithmetic.go",foreground:"C678DD"},{token:"keyword.operator.address.go",foreground:"C678DD"},{token:"entity.name.package.go",foreground:"E5C07B"},{token:"support.type.prelude.elm",foreground:"56B6C2"},{token:"support.constant.elm",foreground:"D19A66"},{token:"punctuation.quasi.element",foreground:"C678DD"},{token:"constant.character.entity",foreground:"E06C75"},{token:"entity.other.attribute-name.pseudo-element",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class",foreground:"56B6C2"},{token:"entity.global.clojure",foreground:"E5C07B"},{token:"meta.symbol.clojure",foreground:"E06C75"},{token:"constant.keyword.clojure",foreground:"56B6C2"},{token:"meta.arguments.coffee",foreground:"E06C75"},{token:"variable.parameter.function.coffee",foreground:"E06C75"},{token:"source.ini",foreground:"98C379"},{token:"meta.scope.prerequisites.makefile",foreground:"E06C75"},{token:"source.makefile",foreground:"E5C07B"},{token:"storage.modifier.import.groovy",foreground:"E5C07B"},{token:"meta.method.groovy",foreground:"61AFEF"},{token:"meta.definition.variable.name.groovy",foreground:"E06C75"},{token:"meta.definition.class.inherited.classes.groovy",foreground:"98C379"},{token:"support.variable.semantic.hlsl",foreground:"E5C07B"},{token:"support.type.texture.hlsl",foreground:"C678DD"},{token:"support.type.sampler.hlsl",foreground:"C678DD"},{token:"support.type.object.hlsl",foreground:"C678DD"},{token:"support.type.object.rw.hlsl",foreground:"C678DD"},{token:"support.type.fx.hlsl",foreground:"C678DD"},{token:"support.type.object.hlsl",foreground:"C678DD"},{token:"text.variable",foreground:"E06C75"},{token:"text.bracketed",foreground:"E06C75"},{token:"support.type.swift",foreground:"E5C07B"},{token:"support.type.vb.asp",foreground:"E5C07B"},{token:"entity.name.function.xi",foreground:"E5C07B"},{token:"entity.name.class.xi",foreground:"56B6C2"},{token:"constant.character.character-class.regexp.xi",foreground:"E06C75"},{token:"constant.regexp.xi",foreground:"C678DD"},{token:"keyword.control.xi",foreground:"56B6C2"},{token:"invalid.xi",foreground:"ABB2BF"},{token:"beginning.punctuation.definition.quote.markdown.xi",foreground:"98C379"},{token:"beginning.punctuation.definition.list.markdown.xi",foreground:"7F848E"},{token:"constant.character.xi",foreground:"61AFEF"},{token:"accent.xi",foreground:"61AFEF"},{token:"wikiword.xi",foreground:"D19A66"},{token:"constant.other.color.rgb-value.xi",foreground:"FFFFFF"},{token:"punctuation.definition.tag.xi",foreground:"5C6370"},{token:"entity.name.label.cs",foreground:"E5C07B"},{token:"entity.name.scope-resolution.function.call",foreground:"E5C07B"},{token:"entity.name.scope-resolution.function.definition",foreground:"E5C07B"},{token:"entity.name.label.cs",foreground:"E06C75"},{token:"markup.heading.setext.1.markdown",foreground:"E06C75"},{token:"markup.heading.setext.2.markdown",foreground:"E06C75"},{token:" meta.brace.square",foreground:"ABB2BF"},{token:"comment, punctuation.definition.comment",foreground:"7F848E"},{token:"markup.quote.markdown",foreground:"5C6370"},{token:"punctuation.definition.block.sequence.item.yaml",foreground:"ABB2BF"},{token:"constant.language.symbol.elixir",foreground:"56B6C2"},{token:"constant.language.symbol.double-quoted.elixir",foreground:"56B6C2"},{token:"entity.name.variable.parameter.cs",foreground:"E5C07B"},{token:"entity.name.variable.field.cs",foreground:"E06C75"},{token:"markup.deleted",foreground:"E06C75"},{token:"markup.inserted",foreground:"98C379"},{token:"markup.underline",fontStyle:"underline"},{token:"punctuation.section.embedded.begin.php",foreground:"BE5046"},{token:"punctuation.section.embedded.end.php",foreground:"BE5046"},{token:"support.other.namespace.php",foreground:"ABB2BF"},{token:"variable.parameter.function.latex",foreground:"E06C75"},{token:"variable.other.object",foreground:"E5C07B"},{token:"variable.other.constant.property",foreground:"E06C75"},{token:"entity.other.inherited-class",foreground:"E5C07B"},{token:"variable.other.readwrite.c",foreground:"E06C75"},{token:"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php",foreground:"ABB2BF"},{token:"constant.numeric.decimal.asm.x86_64",foreground:"C678DD"},{token:"support.other.parenthesis.regexp",foreground:"D19A66"},{token:"constant.character.escape",foreground:"56B6C2"},{token:"string.regexp",foreground:"E06C75"},{token:"log.info",foreground:"98C379"},{token:"log.warning",foreground:"E5C07B"},{token:"log.error",foreground:"E06C75"},{token:"keyword.operator.expression.is",foreground:"C678DD"},{token:"entity.name.label",foreground:"E06C75"},{token:"enumMember",foreground:"56B6C2"},{token:"variable.constant",foreground:"D19A66"},{token:"variable.defaultLibrary",foreground:"E5C07B"},{token:"variable:dart",foreground:"D19A66"},{token:"property:dart",foreground:"D19A66"},{token:"annotation:dart",foreground:"D19A66"},{token:"parameter.label:dart",foreground:"ABB2BF"},{token:"macro",foreground:"D19A66"},{token:"tomlArrayKey",foreground:"E5C07B"},{token:"memberOperatorOverload",foreground:"C678DD"}],colors:{"badge.background":"#23272E","button.background":"#404754",descriptionForeground:"#ABB2BF","diffEditor.insertedTextBackground":"#00809B33","dropdown.background":"#1E2227","dropdown.border":"#1E2227","editor.background":"#23272E","editor.findMatchBackground":"#D19A6644","editor.findMatchHighlightBackground":"#FFFFFF22","editor.foreground":"#ABB2BF","editorInlayHint.foreground":"#ABB2BF","editorInlayHint.background":"#2C313C","editor.lineHighlightBackground":"#2C313C","editorLineNumber.activeForeground":"#ABB2BF","editor.selectionBackground":"#67769660","editor.selectionHighlightBackground":"#FFFFFF10","editor.wordHighlightBackground":"#D2E0FF2F","editor.wordHighlightStrongBackground":"#ABB2BF26","editorBracketMatch.background":"#515A6B","editorBracketMatch.border":"#515A6B","editorCursor.foreground":"#528BFF","editorError.foreground":"#C24038","editorHoverWidget.background":"#1E2227","editorHoverWidget.border":"#181A1F","editorIndentGuide.background":"#3B4048","editorLineNumber.foreground":"#495162","editorMarkerNavigation.background":"#1E2227","editorRuler.foreground":"#ABB2BF26","editorSuggestWidget.background":"#1E2227","editorSuggestWidget.border":"#181A1F","editorSuggestWidget.selectedBackground":"#2C313A","editorWarning.foreground":"#D19A66","editorWhitespace.foreground":"#FFFFFF1D","editorWidget.background":"#1E2227",focusBorder:"#3E4452","input.background":"#1D1F23","input.foreground":"#ABB2BF","list.activeSelectionBackground":"#2C313A","list.activeSelectionForeground":"#D7DAE0","list.focusBackground":"#323842","list.focusForeground":"#F0F0F0","list.highlightForeground":"#ECEBEB","list.hoverBackground":"#2C313A","list.hoverForeground":"#ABB2BF","list.inactiveSelectionBackground":"#323842","list.inactiveSelectionForeground":"#D7DAE0","peekViewEditor.background":"#1B1D23","peekViewEditor.matchHighlightBackground":"#29244B","peekViewResult.background":"#22262B","scrollbar.shadow":"#23252C","scrollbarSlider.activeBackground":"#747D9180","scrollbarSlider.background":"#4E566660","scrollbarSlider.hoverBackground":"#5A637580","textBlockQuote.background":"#2E3440","textBlockQuote.border":"#4B5362","textLink.foreground":"#61AFEF","textPreformat.foreground":"#D19A66"}},"one-monokai":{base:"vs-dark",inherit:!0,rules:[{token:"comment",foreground:"676F7D"},{token:"string.comment",foreground:"676F7D"},{token:"string",foreground:"E5C07B"},{token:"string.template",foreground:"E5C07B"},{token:"constant.numeric",foreground:"C678DD"},{token:"string.embedded.begin",foreground:"C678DD"},{token:"string.embedded.end",foreground:"C678DD"},{token:"punctuation.definition.template-expression",foreground:"C678DD"},{token:"punctuation.section.embedded",foreground:"C678DD"},{token:"punctuation.section.embedded.begin.js",foreground:"ABB2BF"},{token:"punctuation.section.embedded.end.js",foreground:"ABB2BF"},{token:"punctuation.section.embedded.begin.erb",foreground:"ABB2BF"},{token:"punctuation.section.embedded.end.erb",foreground:"ABB2BF"},{token:"source.elixir.embedded",foreground:"ABB2BF"},{token:"punctuation.separator",foreground:"ABB2BF"},{token:"punctuation.accessor",foreground:"ABB2BF"},{token:"meta.brace",foreground:"ABB2BF"},{token:"constant.language",foreground:"56B6C2"},{token:"constant.character",foreground:"56B6C2"},{token:"constant.other",foreground:"56B6C2"},{token:"variable.language",foreground:"E06C75"},{token:"keyword",foreground:"E06C75"},{token:"keyword.operator.logical",foreground:"E06C75"},{token:"keyword.operator.constructor",foreground:"E06C75"},{token:"keyword.operator",foreground:"E06C75"},{token:"storage",foreground:"E06C75"},{token:"storage.type",foreground:"56B6C2"},{token:"entity.name.class",foreground:"61AFEF"},{token:"entity.name.module",foreground:"61AFEF"},{token:"entity.name.type",foreground:"61AFEF"},{token:"storage.identifier",foreground:"61AFEF"},{token:"support.class",foreground:"61AFEF"},{token:"variable.other.object",foreground:"61AFEF"},{token:"variable.other.constant",foreground:"61AFEF"},{token:"variable.other.global",foreground:"61AFEF"},{token:"variable.other.readwrite.class",foreground:"61AFEF"},{token:"variable.other.readwrite.instance",foreground:"61AFEF"},{token:"variable.other.readwrite.batchfile",foreground:"61AFEF"},{token:"variable.readwrite",foreground:"61AFEF"},{token:"variable.readwrite.other.block",foreground:"61AFEF"},{token:"variable.other",foreground:"ABB2BF"},{token:"variable.other.property",foreground:"ABB2BF"},{token:"variable.other.block",foreground:"ABB2BF"},{token:"entity.other.inherited-class",foreground:"98C379"},{token:"storage.modifier.import",foreground:"61AFEF"},{token:"storage.modifier.package",foreground:"61AFEF"},{token:"entity.name.function",foreground:"98C379"},{token:"support.function",foreground:"98C379"},{token:"variable.parameter",foreground:"D19A66",fontStyle:"italic"},{token:"entity.name.variable.parameter",foreground:"D19A66",fontStyle:"italic"},{token:"parameter.variable",foreground:"D19A66",fontStyle:"italic"},{token:"entity.name.function-call",foreground:"ABB2BF"},{token:"function.support.builtin",foreground:"98C379"},{token:"function.support.core",foreground:"98C379"},{token:"entity.name.tag",foreground:"E06C75"},{token:"entity.name.tag.class.js",foreground:"E06C75"},{token:"entity.name.tag.class",foreground:"56B6C2"},{token:"entity.name.tag.id",foreground:"56B6C2"},{token:"entity.other.attribute-name",foreground:"98C379"},{token:"support.constant",foreground:"56B6C2"},{token:"support.type",foreground:"56B6C2"},{token:"support.variable",foreground:"56B6C2"},{token:"support.dictionary.json",foreground:"56B6C2"},{token:"support.type.property-name.css",foreground:"ABB2BF"},{token:"support.type.property-name.scss",foreground:"ABB2BF"},{token:"support.type.property-name.less",foreground:"ABB2BF"},{token:"support.type.property-name.sass",foreground:"ABB2BF"},{token:"entity.other.attribute-name.pseudo-class.css",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.scss",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.less",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-class.sass",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.css",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.scss",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.less",foreground:"56B6C2"},{token:"entity.other.attribute-name.pseudo-element.sass",foreground:"56B6C2"},{token:"support.constant.css",foreground:"98C379"},{token:"support.constant.scss",foreground:"98C379"},{token:"support.constant.less",foreground:"98C379"},{token:"support.constant.sass",foreground:"98C379"},{token:"variable.css",foreground:"56B6C2"},{token:"variable.scss",foreground:"56B6C2"},{token:"variable.less",foreground:"56B6C2"},{token:"variable.sass",foreground:"56B6C2"},{token:"variable.css.string",foreground:"E5C07B"},{token:"variable.scss.string",foreground:"E5C07B"},{token:"variable.less.string",foreground:"E5C07B"},{token:"variable.sass.string",foreground:"E5C07B"},{token:"unit.css",foreground:"C678DD"},{token:"unit.scss",foreground:"C678DD"},{token:"unit.less",foreground:"C678DD"},{token:"unit.sass",foreground:"C678DD"},{token:"function.css",foreground:"56B6C2"},{token:"function.scss",foreground:"56B6C2"},{token:"function.less",foreground:"56B6C2"},{token:"function.sass",foreground:"56B6C2"},{token:"support.other.variable"},{token:"invalid",foreground:"F8F8F0"},{token:"invalid.deprecated",foreground:"F8F8F0"},{token:"support.type.property-name.json",foreground:"56B6C2"},{token:"string.detected-link",foreground:"61AFEF"},{token:"meta.diff",foreground:"75715E"},{token:"meta.diff.header",foreground:"75715E"},{token:"markup.deleted",foreground:"E06C75"},{token:"markup.inserted",foreground:"98C379"},{token:"markup.changed",foreground:"E5C07B"},{token:"constant.numeric.line-number.find-in-files - match",foreground:"56B6C2A0"},{token:"entity.name.filename.find-in-files",foreground:"E5C07B"},{token:"markup.italic, markup.italic.markdown",fontStyle:"italic"},{token:"punctuation.definition.italic.markdown",foreground:"676F7D"},{token:"punctuation.definition.bold.markdown",foreground:"676F7D"},{token:"punctuation.definition.heading.markdown",foreground:"676F7D"},{token:"punctuation.definition.italic.markdown",fontStyle:"italic"},{token:"markup.underline.link.markdown",foreground:"61AFEF"},{token:"markup.bold.markdown",fontStyle:"bold"},{token:"markup.heading.markdown",foreground:"E06C75",fontStyle:"bold"},{token:"markup.quote.markdown",foreground:"98C379"},{token:"meta.separator.markdown",foreground:"C678DD",fontStyle:"bold"},{token:"markup.raw.inline.markdown",foreground:"56B6C2"},{token:"markup.raw.block.markdown",foreground:"56B6C2"},{token:"punctuation.definition.list_item.markdown",foreground:"FFFFFF",fontStyle:"bold"}],colors:{"button.background":"#528BFF","diffEditor.insertedTextBackground":"#00809B33","dropdown.background":"#1D1F23","dropdown.border":"#181A1F","editor.background":"#282C34","editor.findMatchBackground":"#42557B","editor.findMatchHighlightBackground":"#314365","editor.lineHighlightBackground":"#383E4A","editor.selectionBackground":"#3E4451","editorCursor.foreground":"#F8F8F0","editorError.foreground":"#C24038","editorIndentGuide.background":"#3B4048","editorHoverWidget.background":"#21252B","editorHoverWidget.border":"#181A1F","editorLineNumber.foreground":"#495162","editorRuler.foreground":"#484848","editorSuggestWidget.background":"#21252B","editorSuggestWidget.border":"#181A1F","editorSuggestWidget.selectedBackground":"#2C313A","editorWhitespace.foreground":"#484A50","editorWidget.background":"#21252B","input.background":"#1D1F23","list.activeSelectionBackground":"#2C313A","list.activeSelectionForeground":"#D7DAE0","list.focusBackground":"#383E4A","list.highlightForeground":"#C5C5C5","list.hoverBackground":"#292D35","list.inactiveSelectionBackground":"#2C313A","list.inactiveSelectionForeground":"#D7DAE0","scrollbarSlider.activeBackground":"#747D9180","scrollbarSlider.background":"#4E566680","scrollbarSlider.hoverBackground":"#5A637580"}}};var Ee=({filename:e,endpoint:o,technologies:t,theme:n,externalContext:r,...i})=>{let[u,d]=q.useState(null),g=q.useCallback((f,a)=>{d(a),n&&!U.includes(n)&&(a.editor.defineTheme(n,ce[n]),a.editor.setTheme(n)),i.onMount?.(f,a)},[i,n]);return ge(e,o,t,i.language,r,u),q.createElement(be,{...i,key:n,theme:n,onMount:g,options:v(i.options,$)})},Ce=Ee;import{DiffEditor as Do,useMonaco as vo,loader as wo}from"@monaco-editor/react";export{le as Copilot,Do as DiffEditor,Ce as default,wo as loader,vo as useMonaco};