From a090138d84f3e93b2d57b38159cf0b3b7330fe11 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 13 Jun 2026 15:03:43 -0500 Subject: Update theme studio color columns and defaults --- scripts/theme-studio/README.md | 47 +- scripts/theme-studio/app-core.js | 125 +- scripts/theme-studio/app.js | 138 +- scripts/theme-studio/capture-default-faces.py | 446 + scripts/theme-studio/emacs-default-faces.json | 29487 ++++++++++++++++++++++++ scripts/theme-studio/generate.py | 209 +- scripts/theme-studio/styles.css | 6 +- scripts/theme-studio/test-app-core.mjs | 28 +- scripts/theme-studio/test-families.mjs | 173 +- scripts/theme-studio/theme-studio.html | 304 +- 10 files changed, 30503 insertions(+), 460 deletions(-) create mode 100644 scripts/theme-studio/capture-default-faces.py create mode 100644 scripts/theme-studio/emacs-default-faces.json (limited to 'scripts') diff --git a/scripts/theme-studio/README.md b/scripts/theme-studio/README.md index caee7b24..844d036d 100644 --- a/scripts/theme-studio/README.md +++ b/scripts/theme-studio/README.md @@ -95,29 +95,24 @@ Three tiers of faces, plus the palette: per face, shown in a live mock Emacs buffer. - **Package faces** — per-package face tables with a live preview (below). -## Color families - -The palette is displayed as **families**: colors grouped into vertical columns by -their actual color, dark at the top and light at the bottom, columns arranged left -to right. Grouping is derived from the hex on every render — never from the name — -so renaming a color to anything never moves it between columns. The flat palette -underneath is unchanged (export stays a flat `[hex, name]` list); families are a -view over it, and the per-chip rename/remove still work. - -- **Grouping.** Chromatic colors bucket by their nearest perceptual hue (red, - orange, yellow, green, teal, blue, purple, pink). Near-neutrals — grays, the - background and foreground ramps — collapse into one neutral column ordered by - lightness, using a lightness-scaled chroma threshold so a faint pale tint keeps - its hue while a faint mid gray reads as neutral. Columns sort by hue; the ground - strip (the `bg` and `fg` assignments) pins first, neutrals next. (Hue-adjacent - warm colors like olive-greens and golds can still share a column — a known - limitation, since by hue they really are adjacent.) -- **The count control** under each chromatic column sets how many steps sit on - each side of the family's base (its most-saturated color). Setting N regenerates - the family as a symmetric base ±N tonal ramp via `ramp()` — lighter and darker - steps on the base's hue with chroma easing toward the extremes — *replacing* the - column's current colors. N=0 collapses to the base alone. -- **Editing a base** recolors the whole family: change a base color and the family +## Color columns + +The palette is displayed as **columns**. The ground column is pinned first: `bg` +at one end, `fg` at the other, with optional `ground-N` span colors between them. +Every other color stays in the column where it was created. Columns are not +derived from hue, chroma, lightness, or the visible color name. + +- **Grouping.** Each palette entry carries a stable column id. New colors start + their own column; generated ramp steps inherit the base color's column id. + Renaming a color only changes its label, so a renamed tile stays in its original + column. Older two-field palette entries still load by falling back to the + generated-name stem (`blue-1`, `blue`, `blue+1` -> `blue`). +- **The count control** under each non-ground column sets how many steps sit on + each side of the column's base. Setting N regenerates the column as a symmetric + base ±N tonal ramp via `ramp()` — lighter and darker steps on the base's hue + with chroma easing toward the extremes — *replacing* the column's current + colors. N=0 collapses to the base alone. +- **Editing a base** recolors the whole column: change a base color and the column regenerates from it at the same count. - **References follow.** When a regenerate changes a step's hex, any face assigned to that step is re-pointed to the new hex. A step *removed* by lowering the count @@ -205,7 +200,7 @@ The export (and what a build step consumes): ```json { "name": "dupre", - "palette": [["#67809c", "blue"], ["#e8bd30", "gold"]], + "palette": [["#67809c", "blue", "blue"], ["#e8bd30", "gold", "gold"]], "assignments": {"kw": "#67809c", "str": "#5d9b86", "bg": "#000000", "p": "#ffffff"}, "bold": ["kw", "fnd"], "italic": [], @@ -222,6 +217,10 @@ The export (and what a build step consumes): - `assignments` maps syntax category keys to hexes; `bg` is the `default` face background, `p` the foreground. +- `palette` is a flat list of `[hex, name, columnId]`. `name` is the editable + display label; `columnId` is the durable grouping key that keeps generated + colors in their original column even if they are renamed. Older `[hex, name]` + entries still import and are normalized on save. - `ui` and `packages` faces carry `fg`/`bg` (hex or `null`), `bold`, `italic`, `underline`, `strike`, and for package faces `inherit` (a face name or `null`), `height` (a float, omitted at 1.0), and `source` (`"default"` seeded, diff --git a/scripts/theme-studio/app-core.js b/scripts/theme-studio/app-core.js index 60ee1410..90376d51 100644 --- a/scripts/theme-studio/app-core.js +++ b/scripts/theme-studio/app-core.js @@ -121,81 +121,43 @@ function lMax(hue,chroma,fgSet,target){ return {L:loL,status:at(loL).clamped?'clamp':'ok'}; } -// --- color families (color-families spec, Phase 1) --------------------------- -// Families are a display grouping derived from the hex every render — never from -// names — so renaming a color can't move it. The flat palette stays the editable -// truth; these pure functions group it, regenerate a family's ramp, and plan the +// --- color columns (color-families spec, current UI model) ------------------- +// Columns are structural, not inferred by color. Generated ramp entries are named +// base-1/base/base+1 and remain in that base column regardless of their hex. A +// manually-added color starts as its own singleton column. The flat palette stays +// the editable truth; these pure functions group it, regenerate a ramp, and plan // assignment re-point across a regenerate. function oklchOf(hex){return oklab2oklch(srgb2oklab(hex));} function nameOfHex(palette,hex){const p=palette.find(p=>p[0].toLowerCase()===hex.toLowerCase());return p?p[1]:null;} -function hueDist(a,b){const d=Math.abs(a-b);return Math.min(d,360-d);} - -// A color reads as neutral below this chroma. Lightness-scaled (the Munsell -// insight): the mid-tones need more chroma to read as a hue. Floored at both ends -// rather than tapering to zero, so pale warm grays stay neutral (and pure white, -// C=0 at L=1, doesn't evade a zero threshold) while pale chromatic tints stay -// colored. Tuned on real palettes (Codex + Fable color-sorting reviews). -function neutralThreshold(L){ - if(L<=0.2)return 0.020; - if(L<0.6)return 0.020+0.015*(L-0.2)/0.4; - if(L<0.85)return 0.035-0.017*(L-0.6)/0.25; - return 0.018; -} -// Lightness-conditioned compatibility of two chromatic colors (Fable's LCCL): -// hue must match tightly at equal lightness and may drift across a lightness gap, -// because a tonal ramp drifts in hue with lightness by design. The low-chroma noise -// term widens the hue tolerance where hue is ill-defined (pale tints). A chroma -// clause keeps a vivid accent out of a soft family at the same lightness. <=1 is -// compatible. Source: ~/color-sorting-fable.org. -function pairRatio(a,b){ - const dL=Math.abs(a.L-b.L),dH=hueDist(a.H,b.H); - const noise=Math.min(45,Math.atan(0.015/Math.max(Math.min(a.C,b.C),1e-6))*180/Math.PI); - return Math.max(dH/(12+60*dL+noise),Math.abs(a.C-b.C)/(0.08+0.3*dL)); -} -// Complete-linkage agglomerative clustering on pairRatio: greedily merge the two -// clusters whose worst cross-pair is most compatible, stopping when no merge has -// every cross-pair compatible. Complete linkage makes single-linkage chaining -// structurally impossible — two ramps can't fuse through their converging pale -// ends because their mid-lightness members stay far apart. -function clusterChromatic(ms){ - let cl=ms.map(m=>[m]); - const cd=(A,B)=>Math.max(...A.flatMap(a=>B.map(b=>pairRatio(a,b)))); - for(;;){ - let best=null; - for(let i=0;i1)break; - cl[best.i]=cl[best.i].concat(cl[best.j]);cl.splice(best.j,1); - } - return cl; -} -// A family from its members: base is the most-saturated member (tie toward -// mid-lightness), the anchor for a generated ramp. -function makeFamily(ms,neutral){ - let base=ms[0]; - for(const m of ms)if(m.C>base.C||(m.C===base.C&&Math.abs(m.L-0.5)({hex:m.hex,name:m.name}))}; -} -// Group a flat palette into the ground strip plus families. ground is {bg,fg}: -// those two hexes form the pinned ground strip even when absent from the palette, -// and a palette chip at a ground hex is not duplicated into a family. Near-neutrals -// (chroma below the lightness-scaled threshold) form one neutral family; the rest -// cluster by lightness-conditioned complete linkage (clusterChromatic). +function familyStem(name){return (name||'color').replace(/[+-]\d+$/,'');} +function familyOffset(name){const m=(name||'').match(/([+-]\d+)$/);return m?parseInt(m[1],10):0;} +function columnIdOf(entry){return (entry&&entry[2])||familyStem(entry&&entry[1]);} + +// Group a flat palette into the ground strip plus structural columns. ground is +// {bg,fg}; those endpoint hexes form the pinned ground column even when absent +// from the palette, and ground-N entries are reserved for that column. Everything +// else groups by its stable column id, not by OKLCH hue/chroma or display name. +// Legacy two-field entries fall back to their generated-name stem until edited. function familiesFromPalette(palette,ground){ const bg=ground&&ground.bg,fg=ground&&ground.fg; const gset=new Set([bg,fg].filter(Boolean).map(h=>h.toLowerCase())); const groundStrip=[]; if(bg)groundStrip.push({hex:bg,role:'bg',name:nameOfHex(palette,bg)}); if(fg)groundStrip.push({hex:fg,role:'fg',name:nameOfHex(palette,fg)}); - const neutrals=[],chromatic=[]; - for(const [hex,name] of palette){ + const byColumn=new Map(),families=[]; + for(const entry of palette){ + const [hex,name]=entry; if(gset.has(hex.toLowerCase()))continue; - const c=oklchOf(hex),m={hex,name,L:c.L,C:c.C,H:c.H}; - (c.Cm.offset===0)||f.members[0]).hex; + families.push({base,column:f.column,stem:f.column,members:f.members.map(m=>({hex:m.hex,name:m.name,column:m.column}))}); } - const families=[]; - if(neutrals.length)families.push(makeFamily(neutrals,true)); - for(const cl of clusterChromatic(chromatic))families.push(makeFamily(cl,false)); return {ground:groundStrip,families}; } // Regenerate a family's members as a symmetric ramp around the base: n=0 is the @@ -234,22 +196,25 @@ function stepRepointPlan(oldRanked,newMembers){ return {map,removed}; } -// Order a family's members dark to light by OKLCH lightness. -function sortFamilyMembers(fam){return Object.assign({},fam,{members:[...fam.members].sort((a,b)=>oklchOf(a.hex).L-oklchOf(b.hex).L)});} -// Order families for display: neutrals first (by base lightness), then chromatic -// by base hue, ties broken by base lightness then base hex. Each family's members -// are lightness-sorted. Display-only — the stored palette order is untouched. -function sortFamilies(families){ - const keyed=families.map(f=>{const c=oklchOf(f.base);return {f,neutral:!!f.neutral,H:c.H,L:c.L,base:f.base};}); - keyed.sort((a,b)=>{ - if(a.neutral!==b.neutral)return a.neutral?-1:1; - if(a.neutral&&b.neutral)return a.L-b.L; - const ah=Math.round(a.H),bh=Math.round(b.H); // a hue hair shouldn't outrank lightness - if(ah!==bh)return ah-bh; - if(a.L!==b.L)return a.L-b.L; - return a.base.toLowerCase()b.base.toLowerCase()?1:0; - }); - return keyed.map(k=>sortFamilyMembers(k.f)); +// Preserve structural order. Generated ramps are inserted in offset order, and +// columns are emitted in first-seen palette order. No color sorting happens here. +function sortFamilyMembers(fam){return Object.assign({},fam,{members:[...fam.members]});} +function sortFamilies(families){return families.map(sortFamilyMembers);} + +// Dropdown order for color selection mirrors the visual palette organization: +// ground first, then structural columns in display order. Stored palette order +// stays untouched; this is selection-only organization. +function paletteOptionList(cur,palette,ground){ + const have=cur===''||palette.some(p=>p[0]===cur)||[ground&&ground.bg,ground&&ground.fg].filter(Boolean).includes(cur); + const out=[['','— default —']],seen=new Set(); + if(!have)out.push([cur,'(gone) '+cur]); + const add=(hex,name)=>{if(!hex)return;const key=hex.toLowerCase()+'|'+(name||'');if(seen.has(key))return;seen.add(key);out.push([hex,name||hex]);}; + const grouped=familiesFromPalette(palette,ground||{}); + const groundMembers=grouped.ground.map(g=>({hex:g.hex,name:g.name||g.role})) + .concat(palette.filter(([,name])=>/^ground-\d+$/i.test(name||'')).map(([hex,name])=>({hex,name}))); + sortFamilyMembers({base:(ground&&ground.bg)||'',members:groundMembers}).members.forEach(m=>add(m.hex,m.name)); + sortFamilies(grouped.families).forEach(f=>f.members.forEach(m=>add(m.hex,m.name))); + return out; } -export { nameToHex, buildPkgmap, packagesForExport, mergePackagesInto, effResolve, optList, slugify, ramp, fgSetFor, floor, lMax, COVERED_FACES, familiesFromPalette, regenFamily, rankByLightness, stepRepointPlan, sortFamilies, sortFamilyMembers }; +export { nameToHex, buildPkgmap, packagesForExport, mergePackagesInto, effResolve, optList, paletteOptionList, slugify, ramp, fgSetFor, floor, lMax, COVERED_FACES, familiesFromPalette, regenFamily, rankByLightness, stepRepointPlan, sortFamilies, sortFamilyMembers }; diff --git a/scripts/theme-studio/app.js b/scripts/theme-studio/app.js index aadfd5b7..af33f607 100644 --- a/scripts/theme-studio/app.js +++ b/scripts/theme-studio/app.js @@ -67,9 +67,10 @@ function mkColorDropdown(options,cur,onPick){ t.setValue=h=>{cur=h;paint();}; return t;} // Standard option list for a swatch dropdown: a "default" entry, then the -// palette. If cur is set but no longer in the palette, surface it as a "(gone)" -// entry so the row still shows what it points at. Shared by all three tiers. -function ddList(cur){return optList(cur,PALETTE);} +// palette in the same ground/family order as the palette panel. If cur is set +// but no longer in the palette, surface it as a "(gone)" entry so the row still +// shows what it points at. Shared by all three tiers. +function ddList(cur){return paletteOptionList(cur,PALETTE,{bg:MAP['bg'],fg:MAP['p']});} // Shared lock toggle for any table row. lockKey is namespaced per tier (bare // syntax kind, 'ui:'+face, 'pkg:'+app+':'+face). els are the row's editable // controls — native selects/buttons/inputs are disabled; the custom swatch @@ -155,6 +156,47 @@ function repointHex(oldHex,newHex){ // On adding a color, if its name matches a recently-deleted one, re-bind the // stranded assignments to the new hex. Returns true when a heal context existed. function healGone(name,newHex){const k=name.toLowerCase();if(!(k in lastGone))return false;const g=lastGone[k];delete lastGone[k];repointHex(g,newHex);return true;} +function normalizePaletteEntry(entry){ + const hex=entry&&entry[0],name=(entry&&entry[1])||'color'; + return [hex,name,(entry&&entry[2])||familyStem(name)]; +} +function normalizePalette(){PALETTE=PALETTE.map(normalizePaletteEntry);} +// The ground column is explicit: bg pins the dark endpoint, fg pins the light +// endpoint, and generated ground-N steps live between them. +function groundColumnMembers(){ + const members=[]; + for(const [hex,name] of PALETTE)if(hex.toLowerCase()===MAP['bg'].toLowerCase()||hex.toLowerCase()===MAP['p'].toLowerCase()||/^ground-\d+$/i.test(name||''))members.push({hex,name}); + if(!members.some(m=>m.hex.toLowerCase()===MAP['bg'].toLowerCase()))members.push({hex:MAP['bg'],name:'bg'}); + if(!members.some(m=>m.hex.toLowerCase()===MAP['p'].toLowerCase()))members.push({hex:MAP['p'],name:'fg'}); + return members.sort((a,b)=>oklab2oklch(srgb2oklab(a.hex)).L-oklab2oklch(srgb2oklab(b.hex)).L); +} +function groundSpanCount(){return PALETTE.filter(([,name])=>/^ground-\d+$/i.test(name||'')).length;} +function groundSpanControl(){ + const d=document.createElement('div');d.className='fcount'; + d.innerHTML=`span `; + d.querySelector('input').onchange=(e)=>setGroundSpan(Math.max(0,Math.min(8,parseInt(e.target.value,10)||0))); + return d; +} +function setGroundSpan(n){ + const old=PALETTE.filter(([,name])=>/^ground-\d+$/i.test(name||'')); + const bg=srgb2oklab(MAP['bg']),fg=srgb2oklab(MAP['p']); + const entries=[]; + for(let i=1;i<=n;i++){ + const t=i/(n+1); + const lab={L:bg.L+(fg.L-bg.L)*t,a:bg.a+(fg.a-bg.a)*t,b:bg.b+(fg.b-bg.b)*t}; + entries.push([lrgb2hex(oklab2lrgb(lab.L,lab.a,lab.b)),'ground-'+i,'ground']); + } + for(const [oldHex,oldName] of old){ + const next=entries.find(([,name])=>name===oldName); + if(next&&next[0].toLowerCase()!==oldHex.toLowerCase())repointHex(oldHex,next[0]); + } + for(let i=PALETTE.length-1;i>=0;i--)if(/^ground-\d+$/i.test(PALETTE[i][1]||''))PALETTE.splice(i,1); + let at=PALETTE.findIndex(([hex])=>hex.toLowerCase()===MAP['bg'].toLowerCase()); + if(at<0)at=0; else at+=1; + PALETTE.splice(Math.min(at,PALETTE.length),0,...entries); + selectedIdx=null;renderPalette();buildTable();buildUITable();renderCode();applyGround(); + notify('set ground span to '+n,false); +} // Pairwise OKLab ΔE over the palette. Returns the sub-threshold pairs (sorted // closest-first) and each color's nearest-neighbor distance for its chip title. // Pure pairwise ΔE analysis lives in colormath.js (paletteWarnings); this renders it. @@ -180,31 +222,38 @@ function paletteChip(i,nearest){ d.onclick=(e)=>{if(e.target.closest('.rm')||e.target.closest('.nm'))return;selectColor(i);}; return d; } -// Render the palette as hue families: the pinned ground strip, then hue-sorted -// family strips, each dark to light. Grouping is derived from the hex by -// familiesFromPalette every render, so renaming a color never moves it. The flat -// PALETTE stays the editable truth; chips keep their per-chip controls. +// Render the palette as structural color columns: pinned ground column, then +// first-seen palette columns. Grouping uses the stable column id stored on each +// palette entry, so renaming a color never moves it. function renderPalette(){ + normalizePalette(); const p=document.getElementById('pals');p.innerHTML=''; const {warnings,overflow,nearest}=paletteWarnings(PALETTE,DELTAE_MIN,5); const {ground,families}=familiesFromPalette(PALETTE,{bg:MAP['bg'],fg:MAP['p']}); const used=new Set(); const idxOf=(hex,name)=>{for(let i=0;i{const s=document.createElement('div');s.className='fstrip'+(cls||'');p.appendChild(s);return s;}; - const gs=strip(' ground');gs.dataset.family='ground'; - ground.forEach(g=>{ - const i=PALETTE.findIndex((pp,k)=>!used.has(k)&&pp[0]===g.hex); - if(i>=0){used.add(i);gs.appendChild(paletteChip(i,nearest));} - else{const tc=textOn(g.hex),sw=document.createElement('div');sw.className='pchip';sw.style.background=g.hex;sw.title=(g.role||'')+' '+g.hex; - sw.innerHTML=`
${g.hex}
`;gs.appendChild(sw);} - }); + if(ground.length){ + const gs=strip(' ground');gs.dataset.family='ground'; + const gh=document.createElement('div');gh.className='fhead';gh.textContent='ground';gs.appendChild(gh); + gs.appendChild(groundSpanControl()); + groundColumnMembers().forEach(m=>{ + const i=idxOf(m.hex,m.name); + if(i>=0)gs.appendChild(paletteChip(i,nearest)); + else{const tc=textOn(m.hex),sw=document.createElement('div');sw.className='pchip';sw.style.background=m.hex;sw.title=(m.name||'ground')+' '+m.hex; + sw.innerHTML=`
${m.hex}
`;gs.appendChild(sw);} + }); + } // The too-similar warning stays on the full flat palette: a generated ramp's // steps are a stepL apart (well above the warning's ΔE threshold), so they never // trigger it, and any pair that does is a genuine near-duplicate worth flagging. sortFamilies(families).forEach(f=>{ - const s=strip(f.neutral?' neutral':'');s.dataset.family=f.base; + const s=strip('');s.dataset.family=f.column||f.base; + const h=document.createElement('div');h.className='fhead'; + h.textContent=(f.members.find(m=>m.hex.toLowerCase()===f.base.toLowerCase())||{}).name||f.column||f.base; + s.appendChild(h); + s.appendChild(familyCountControl(f)); f.members.forEach(m=>{const i=idxOf(m.hex,m.name);if(i>=0)s.appendChild(paletteChip(i,nearest));}); - if(!f.neutral)s.appendChild(familyCountControl(f)); }); renderPaletteWarnings(warnings,overflow); buildUITable();if(document.getElementById('pkgbody'))buildPkgTable(); @@ -214,7 +263,7 @@ function renderPalette(){ function familyCountControl(f){ const per=Math.max(0,...rankByLightness(f.members.map(m=>m.hex),f.base).map(m=>Math.abs(m.offset))); const d=document.createElement('div');d.className='fcount'; - d.innerHTML=`± `; + d.innerHTML=`span ± `; d.querySelector('input').onchange=(e)=>setFamilyCount(f.base,Math.max(0,Math.min(4,parseInt(e.target.value,10)||0))); return d; } @@ -225,7 +274,7 @@ function familyCountControl(f){ // Replace oldHexes in the palette with a fresh base ±n ramp, repointing surviving // references and leaving removed ones on their now-gone hex. Returns the removed // count, or null on a bad base. Shared by the count control and the base edit. -function regenFamilyInPlace(oldHexes,baseHex,baseName,n){ +function regenFamilyInPlace(oldHexes,baseHex,baseName,n,columnId){ const r=regenFamily(baseHex,n,{}); if(r.error){notify('cannot regenerate from '+baseHex,true);return null;} const plan=stepRepointPlan(rankByLightness(oldHexes,baseHex),r.members); @@ -233,7 +282,8 @@ function regenFamilyInPlace(oldHexes,baseHex,baseName,n){ let at=PALETTE.length; for(let i=0;i=0;i--)if(oldSet.has(PALETTE[i][0].toLowerCase()))PALETTE.splice(i,1); - const entries=r.members.map(m=>[m.hex,m.offset===0?baseName:baseName+(m.offset>0?'+'+m.offset:String(m.offset))]); + const col=columnId||familyStem(baseName); + const entries=r.members.map(m=>[m.hex,m.offset===0?baseName:baseName+(m.offset>0?'+'+m.offset:String(m.offset)),col]); PALETTE.splice(Math.min(at,PALETTE.length),0,...entries); for(const [o,nw] of plan.map)repointHex(o,nw); return plan.removed.length; @@ -243,7 +293,7 @@ function setFamilyCount(baseHex,n){ const fam=families.find(f=>f.base.toLowerCase()===baseHex.toLowerCase()); if(!fam)return; const baseName=(fam.members.find(m=>m.hex.toLowerCase()===baseHex.toLowerCase())||{}).name||'color'; - const removed=regenFamilyInPlace(fam.members.map(m=>m.hex),baseHex,baseName,n); + const removed=regenFamilyInPlace(fam.members.map(m=>m.hex),baseHex,baseName,n,fam.column); if(removed===null)return; selectedIdx=null;renderPalette();buildTable();buildUITable();renderCode();applyGround(); notify('regenerated "'+baseName+'" to ±'+n+(removed?(' — '+removed+' removed step(s) show "(gone)" where used'):''),false); @@ -259,13 +309,14 @@ function updateColor(){ if(PALETTE.some((p,j)=>j!==i&&p[1].toLowerCase()===newName.toLowerCase())){notify('another color is already named "'+newName+'" — names must be unique',true);return;} // If the edited color is a family base with a ramp, recolor the whole family: regenerate from the new base at the same count. const fams=familiesFromPalette(PALETTE,{bg:MAP['bg'],fg:MAP['p']}).families; - const fam=fams.find(f=>!f.neutral&&f.base.toLowerCase()===oldHex.toLowerCase()); + const fam=fams.find(f=>f.base.toLowerCase()===oldHex.toLowerCase()); const count=fam?Math.max(0,...rankByLightness(fam.members.map(m=>m.hex),fam.base).map(m=>Math.abs(m.offset))):0; - PALETTE[i]=[newHex,newName]; + const columnId=PALETTE[i][2]||familyStem(PALETTE[i][1]); + PALETTE[i]=[newHex,newName,columnId]; repointHex(oldHex,newHex); if(fam&&count>0){ const oldHexes=fam.members.map(m=>m.hex.toLowerCase()===oldHex.toLowerCase()?newHex:m.hex); - regenFamilyInPlace(oldHexes,newHex,newName,count); + regenFamilyInPlace(oldHexes,newHex,newName,count,fam.column||columnId); closePicker();selectedIdx=null;renderPalette();buildTable();buildUITable();renderCode();applyGround();notify('recolored "'+newName+'" family from the new base',false);return; } closePicker();renderPalette();buildTable();buildUITable();renderCode();applyGround();notify('updated "'+newName+'"',false); @@ -363,13 +414,13 @@ function initPicker(){const sw=document.getElementById('swatch');if(!sw)return;s function addColor(){const h=curHex();const name=document.getElementById('newname').value.trim(); if(!name){notify('name the color before adding it',true);return;} if(PALETTE.some(p=>p[1].toLowerCase()===name.toLowerCase())){notify('a color named "'+name+'" already exists — select it and use Update selected to change its value',true);return;} - PALETTE.push([h,name]);const healed=healGone(name,h);document.getElementById('newname').value='';selectedIdx=null;closePicker(); + PALETTE.push([h,name,familyStem(name)]);const healed=healGone(name,h);document.getElementById('newname').value='';selectedIdx=null;closePicker(); renderPalette();buildTable();buildUITable(); if(healed){renderCode();applyGround();if(document.getElementById('pkgbody'))buildPkgTable();buildPkgPreview();} notify(healed?('added "'+name+'" and reconnected its assignments'):('added "'+name+'"'),false);} function themeName(){return (document.getElementById('themename').value||'theme').trim()||'theme';} function fileSlug(){return slugify(themeName());} -function exportObj(){const a={};CATS.forEach(c=>a[c[0]]=MAP[c[0]]);const o={name:themeName(),palette:PALETTE,assignments:a,bold:Object.keys(BOLD).filter(k=>BOLD[k]),italic:Object.keys(ITALIC).filter(k=>ITALIC[k]),ui:UIMAP};if(LOCKED.size)o.locks=[...LOCKED];const pk=packagesForExport(PKGMAP);if(Object.keys(pk).length)o.packages=pk;return o;} +function exportObj(){normalizePalette();const a={};CATS.forEach(c=>a[c[0]]=MAP[c[0]]);const o={name:themeName(),palette:PALETTE,assignments:a,bold:Object.keys(BOLD).filter(k=>BOLD[k]),italic:Object.keys(ITALIC).filter(k=>ITALIC[k]),ui:UIMAP};if(LOCKED.size)o.locks=[...LOCKED];const pk=packagesForExport(PKGMAP);if(Object.keys(pk).length)o.packages=pk;return o;} function exportState(){const t=document.getElementById('export');t.value=JSON.stringify(exportObj(),null,1);t.style.display='block';t.focus();t.select();} function toggleJSON(){const t=document.getElementById('export'),b=document.getElementById('jsonbtn');if(t.style.display==='block'){t.style.display='none';b.textContent='show';}else{exportState();b.textContent='hide';}} function updateTitle(){const n=document.getElementById('themename').value.trim();document.getElementById('pagetitle').textContent=(n||'Untitled')+': theme';const sb=document.getElementById('savebtn');if(sb){sb.style.display=n||fileHandle?'':'none';sb.title=fileHandle?'overwrite the imported/saved file':'choose where to save';}} @@ -380,7 +431,7 @@ async function saveTheme(){const data=JSON.stringify(exportObj(),null,1); try{if(!fileHandle)fileHandle=await window.showSaveFilePicker({suggestedName:fileSlug()+'.json',types:[{description:'theme JSON',accept:{'application/json':['.json']}}]}); const w=await fileHandle.createWritable();await w.write(data);await w.close();notify('saved "'+themeName()+'"',false);updateTitle(); }catch(e){if(e&&e.name!=='AbortError')notify('save failed: '+e.message,true);}} -function applyImported(text){const d=JSON.parse(text);lastGone={};if(d.name)document.getElementById('themename').value=d.name;if(d.palette)PALETTE=d.palette;if(d.assignments)Object.assign(MAP,d.assignments); +function applyImported(text){const d=JSON.parse(text);lastGone={};if(d.name)document.getElementById('themename').value=d.name;if(d.palette)PALETTE=d.palette.map(normalizePaletteEntry);if(d.assignments)Object.assign(MAP,d.assignments); BOLD={};(d.bold||[]).forEach(k=>BOLD[k]=true);ITALIC={};(d.italic||[]).forEach(k=>ITALIC[k]=true); LOCKED=new Set(d.locks||[]); if(d.ui)Object.assign(UIMAP,d.ui); @@ -979,7 +1030,7 @@ if(location.hash==='#mocktest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c const curCell=Q('[data-face="cursor"]'); A(curCell&&curCell.textContent.trim().length===1,'cursor-on-glyph'); const laz=Q('[data-face="lazy-highlight"]'); - A(laz&&/underline/.test(laz.getAttribute('style')||''),'overlay-honors-style'); + A(laz&&/background:\s*(?!transparent)/.test(laz.getAttribute('style')||''),'overlay-honors-background-style'); A([...document.querySelectorAll('#mockframe .fr')].some(e=>e.textContent.trim()),'fringe-indicator-present'); const mlbar=Q('[data-face="mode-line"]'); A(mlbar&&/box-shadow/.test(mlbar.getAttribute('style')||''),'mode-line-box'); @@ -1051,6 +1102,7 @@ if(location.hash==='#readouttest'){const hex='#67809c';document.getElementById(' // out-of-scope face keeps the single-pair readout, and an empty set reads "no fg set". if(location.hash==='#contrasttest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c){ok=false;notes.push(n);}}; const saveMAP=Object.assign({},MAP),saveUI=JSON.parse(JSON.stringify(UIMAP)); + CATS.forEach(c=>{if(c[0]!=='bg'&&c[0]!=='p')MAP[c[0]]='';}); MAP['p']='#f0fef0';MAP['kw']='#67809c';MAP['str']='#a3b18a';MAP['bg']='#000000'; UIMAP['region']={fg:null,bg:'#202830',bold:false,italic:false,underline:false,strike:false}; buildUITable(); @@ -1157,17 +1209,18 @@ if(location.hash==='#healtest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c renderPalette();buildTable();buildUITable();if(document.getElementById('pkgbody'))buildPkgTable(); document.title='HEALTEST '+(ok?'PASS':'FAIL'); const d=document.createElement('div');d.id='healtest';d.textContent='HEALTEST '+(ok?'PASS':'FAIL')+(notes.length?' | '+notes.join(' ; '):'');document.body.appendChild(d);} -// Family-strip gate (open with #familytest): the palette renders as the pinned -// ground strip plus hue families, chips keep their controls, and renaming a color -// to anything leaves it in the same strip (grouping is by hex, not name). +// Family-strip gate (open with #familytest): the palette renders as a pinned +// ground column plus structural columns, chips keep their controls, and renaming +// a color leaves it in the same strip because the column id is stable. if(location.hash==='#familytest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c){ok=false;notes.push(n);}}; const saveP=PALETTE.slice(),saveM=Object.assign({},MAP),saveSel=selectedIdx; MAP['bg']='#0d0b0a';MAP['p']='#f0fef0'; PALETTE=[['#0d0b0a','ground'],['#f0fef0','fg'],['#c0402a','red'],['#3a6ea5','blue'],['#808080','gray']];selectedIdx=null;renderPalette(); const strips=[...document.querySelectorAll('#pals .fstrip')]; - A(strips.length&&strips[0].classList.contains('ground'),'ground strip is pinned first'); - A(strips[0].querySelectorAll('.pchip').length===2,'ground strip carries bg + fg'); - A(strips.length>=4,'ground + neutral + red + blue strips, got '+strips.length); + A(strips.length&&strips[0].dataset.family==='ground','ground column is pinned first'); + A(strips[0].querySelectorAll('.pchip').length===2,'ground column carries bg + fg endpoints'); + A(!!strips[0].querySelector('.fhead + .fcount + .pchip'),'span control sits between header and tiles for ground'); + A(strips.length>=4,'ground + red + blue + gray columns, got '+strips.length); const redChip=[...document.querySelectorAll('#pals .pchip')].find(c=>c.querySelector('.nm')&&c.querySelector('.nm').value==='red'); A(!!redChip&&!!redChip.querySelector('.rm')&&!!redChip.querySelector('.nm'),'a family chip keeps remove + rename controls'); const redFamily=redChip&&redChip.closest('.fstrip').dataset.family; @@ -1183,8 +1236,15 @@ if(location.hash==='#familytest'){let ok=true;const notes=[];const A=(c,n)=>{if( // is left on its old (now-gone) hex. if(location.hash==='#counttest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c){ok=false;notes.push(n);}}; const saveP=PALETTE.slice(),saveM=Object.assign({},MAP),saveU=JSON.parse(JSON.stringify(UIMAP)),saveSel=selectedIdx; - MAP['bg']='#000000';MAP['p']='#f0fef0'; - PALETTE=[['#0d0b0a','ground'],['#f0fef0','fg']]; + MAP['bg']='#204060';MAP['p']='#f0fef0'; + PALETTE=[['#204060','bg'],['#f0fef0','fg']]; + setGroundSpan(2); + A(MAP['bg']==='#204060'&&MAP['p']==='#f0fef0','spanning ground keeps bg/fg assignments on endpoints'); + A(PALETTE.some(p=>p[1]==='ground-1')&&PALETTE.some(p=>p[1]==='ground-2'),'spanning ground adds interior ground-N entries'); + A(document.querySelector('#pals .fstrip[data-family="ground"] .fhead + .fcount + .pchip'),'ground span control renders before tiles'); + setGroundSpan(1); + A(!PALETTE.some(p=>p[1]==='ground-2'),'lowering ground span removes dropped interior steps'); + PALETTE=[['#204060','bg'],['#f0fef0','fg']]; regenFamily('#67809c',2).members.forEach(m=>PALETTE.push([m.hex,m.offset===0?'blue':'blue'+(m.offset>0?'+'+m.offset:m.offset)])); const innerOld=regenFamily('#67809c',2).members.find(m=>m.offset===1).hex; // survives a count change const outerOld=regenFamily('#67809c',2).members.find(m=>m.offset===2).hex; // dropped on count-down @@ -1217,7 +1277,7 @@ if(location.hash==='#baseedittest'){let ok=true;const notes=[];const A=(c,n)=>{i selectedIdx=PALETTE.findIndex(p=>p[0].toLowerCase()==='#67809c'); document.getElementById('newhexstr').value='#3a8a8a';document.getElementById('newname').value='teal'; updateColor(); - const fam=familiesFromPalette(PALETTE,{bg:MAP['bg'],fg:MAP['p']}).families.find(f=>!f.neutral); + const fam=familiesFromPalette(PALETTE,{bg:MAP['bg'],fg:MAP['p']}).families[0]; A(fam&&fam.members.some(m=>m.hex.toLowerCase()==='#3a8a8a'),'family base recolored to the new hex'); A(fam&&fam.members.length===5,'count preserved (±2 → 5 members), got '+(fam&&fam.members.length)); A(!new Set(PALETTE.map(p=>p[0].toLowerCase())).has('#67809c'),'old base removed from palette'); @@ -1230,14 +1290,14 @@ if(location.hash==='#baseedittest'){let ok=true;const notes=[];const A=(c,n)=>{i PALETTE=saveP;for(const k in MAP)delete MAP[k];Object.assign(MAP,saveM);for(const f in UIMAP)delete UIMAP[f];Object.assign(UIMAP,saveU);selectedIdx=saveSel;renderPalette(); document.title='BASEEDITTEST '+(ok?'PASS':'FAIL'); const d=document.createElement('div');d.id='baseedittest';d.textContent='BASEEDITTEST '+(ok?'PASS':'FAIL')+(notes.length?' | '+notes.join(' ; '):'');document.body.appendChild(d);} -// Round-trip gate (open with #roundtriptest): export stays a flat palette and -// import needs no family reconstruction, so export → import → export is identical. +// Round-trip gate (open with #roundtriptest): export stays a flat palette with +// stable column ids, and import does not need color-derived family reconstruction. if(location.hash==='#roundtriptest'){let ok=true;const notes=[];const A=(c,n)=>{if(!c){ok=false;notes.push(n);}}; const before=JSON.stringify(exportObj()); applyImported(before); const after=JSON.stringify(exportObj()); A(before===after,'export → import → export is byte-identical'); const obj=JSON.parse(after); - A(Array.isArray(obj.palette)&&obj.palette.every(e=>Array.isArray(e)&&e.length===2),'exported palette is still a flat [hex,name] list'); + A(Array.isArray(obj.palette)&&obj.palette.every(e=>Array.isArray(e)&&e.length>=3&&typeof e[2]==='string'),'exported palette carries flat [hex,name,columnId] entries'); document.title='ROUNDTRIPTEST '+(ok?'PASS':'FAIL'); const d=document.createElement('div');d.id='roundtriptest';d.textContent='ROUNDTRIPTEST '+(ok?'PASS':'FAIL')+(notes.length?' | '+notes.join(' ; '):'');document.body.appendChild(d);} diff --git a/scripts/theme-studio/capture-default-faces.py b/scripts/theme-studio/capture-default-faces.py new file mode 100644 index 00000000..60f8967d --- /dev/null +++ b/scripts/theme-studio/capture-default-faces.py @@ -0,0 +1,446 @@ +#!/usr/bin/env python3 +"""Capture Emacs' default face attributes for theme-studio. + +The output is a checked-in snapshot used to seed/review theme-studio defaults. +It runs `emacs -Q --batch`, loads the files that define each `defface`, stores +the raw `face-default-spec`, then selects the normal GUI/light/24-bit branch in +Python. This avoids opening a visible white `emacs -Q` frame while still keeping +the default data reproducible. +""" + +from __future__ import annotations + +import json +import os +import pathlib +import re +import subprocess +import tempfile + +HERE = pathlib.Path(__file__).resolve().parent +ROOT = HERE.parents[1] +OUT = HERE / "emacs-default-faces.json" +INVENTORY = HERE / "package-inventory.json" +PROGRESS = pathlib.Path("/tmp/theme-studio-default-face-capture-progress.txt") + +SYNTAX = { + "bg": ["default"], + "p": ["default"], + "kw": ["font-lock-keyword-face"], + "bi": ["font-lock-builtin-face"], + "pp": ["font-lock-preprocessor-face"], + "fnd": ["font-lock-function-name-face"], + "fnc": ["font-lock-function-call-face"], + "dec": [], + "ty": ["font-lock-type-face"], + "prop": ["font-lock-property-name-face", "font-lock-property-use-face"], + "con": ["font-lock-constant-face"], + "num": ["font-lock-number-face"], + "str": ["font-lock-string-face"], + "esc": ["font-lock-escape-face"], + "re": ["font-lock-regexp-face"], + "doc": ["font-lock-doc-face"], + "cm": ["font-lock-comment-face"], + "cmd": ["font-lock-comment-delimiter-face"], + "var": ["font-lock-variable-name-face", "font-lock-variable-use-face"], + "op": ["font-lock-operator-face"], + "punc": [ + "font-lock-punctuation-face", + "font-lock-bracket-face", + "font-lock-delimiter-face", + "font-lock-misc-punctuation-face", + ], +} + +UI = [ + "cursor", + "region", + "hl-line", + "highlight", + "mode-line", + "mode-line-inactive", + "fringe", + "line-number", + "line-number-current-line", + "minibuffer-prompt", + "isearch", + "lazy-highlight", + "isearch-fail", + "show-paren-match", + "show-paren-mismatch", + "link", + "error", + "warning", + "success", + "vertical-border", +] + +BUILTIN_FEATURES = [ + "font-lock", + "hl-line", + "isearch", + "paren", + "button", + "display-line-numbers", + "shr", +] + +ATTRS = { + ":foreground": "foreground", + ":background": "background", + ":weight": "weight", + ":slant": "slant", + ":underline": "underline", + ":strike-through": "strike", + ":box": "box", + ":height": "height", + ":inherit": "inherit", + ":inverse-video": "inverseVideo", + ":extend": "extend", + ":distant-foreground": "distantForeground", +} + + +def x11_colors() -> dict[str, str]: + colors: dict[str, str] = {} + paths = [pathlib.Path("/usr/share/X11/rgb.txt")] + paths.extend(pathlib.Path("/usr/share/emacs").glob("*/etc/rgb.txt")) + path = next((p for p in paths if p.exists()), None) + if path: + for line in path.read_text(errors="ignore").splitlines(): + if not line or line.startswith("!"): + continue + parts = line.split() + if len(parts) < 4: + continue + try: + r, g, b = [int(x) for x in parts[:3]] + except ValueError: + continue + name = " ".join(parts[3:]).lower().replace(" ", "") + colors[name] = f"#{r:02x}{g:02x}{b:02x}" + return colors + + +X11_COLORS = x11_colors() + + +def color_hex(value: object) -> str | None: + if not isinstance(value, str): + return None + if re.fullmatch(r"#[0-9a-fA-F]{6}", value): + return value.lower() + key = value.lower().replace(" ", "") + if key in X11_COLORS: + return X11_COLORS[key] + m = re.fullmatch(r"gr[ae]y(\d{1,3})", key) + if m: + n = max(0, min(100, int(m.group(1)))) + v = round(255 * n / 100) + return f"#{v:02x}{v:02x}{v:02x}" + return None + + +def plist_to_dict(items: object) -> dict[str, object]: + if isinstance(items, list) and len(items) == 1 and isinstance(items[0], list): + items = items[0] + if not isinstance(items, list): + return {} + out: dict[str, object] = {} + i = 0 + while i + 1 < len(items): + key = items[i] + val = items[i + 1] + if isinstance(key, str) and key in ATTRS: + out[ATTRS[key]] = normalize_value(val) + elif key == ":bold" and val in (True, "t"): + out["weight"] = "bold" + elif key == ":italic" and val in (True, "t"): + out["slant"] = "italic" + i += 2 + return out + + +def normalize_value(value: object) -> object: + if isinstance(value, list): + as_plist = plist_to_dict(value) + if as_plist: + return as_plist + return [normalize_value(v) for v in value] + return value + + +def condition_matches(condition: object) -> bool: + if condition in (True, "t", None): + return True + if condition == "default": + return False + if isinstance(condition, dict): + if "class" in condition: + vals = condition["class"] or [] + if "color" not in vals and "grayscale" not in vals: + return False + if "min-colors" in condition: + vals = condition["min-colors"] or [] + if vals and isinstance(vals[0], int) and vals[0] > 16777216: + return False + if "background" in condition: + vals = condition["background"] or [] + if vals and "light" not in vals: + return False + if "type" in condition and "tty" in (condition["type"] or []): + return False + return True + if not isinstance(condition, list): + return False + for clause in condition: + if not isinstance(clause, list) or not clause: + continue + key = clause[0] + vals = clause[1:] + if key == "class": + if "color" not in vals and "grayscale" not in vals: + return False + elif key == "min-colors": + if vals and isinstance(vals[0], int) and vals[0] > 16777216: + return False + elif key == "background": + if vals and "light" not in vals: + return False + elif key == "type": + if "tty" in vals: + return False + return True + + +def choose_gui_light(default_spec: object) -> dict[str, object]: + chosen: dict[str, object] = {} + if not isinstance(default_spec, list): + return chosen + for entry in default_spec: + if not isinstance(entry, list) or not entry: + continue + condition = entry[0] + attrs = plist_to_dict(entry[1:]) + if condition == "default": + chosen.update(attrs) + elif condition_matches(condition): + chosen.update(attrs) + break + for key in ("foreground", "background", "distantForeground"): + if key in chosen: + hx = color_hex(chosen[key]) + if hx: + chosen[key + "Hex"] = hx + return chosen + + +def inherit_list(value: object) -> list[str]: + if value in (None, False): + return [] + if isinstance(value, str): + return [value] + if isinstance(value, list): + return [v for v in value if isinstance(v, str)] + return [] + + +def enrich_chosen_defaults(data: dict[str, object]) -> None: + faces: dict[str, dict[str, object]] = data["faces"] + for face, info in faces.items(): + info["chosenGuiLight"] = choose_gui_light(info.get("default-spec")) + + fallback = { + "foreground": "black", + "foregroundHex": "#000000", + "background": "white", + "backgroundHex": "#ffffff", + "weight": "normal", + "slant": "normal", + "underline": None, + "strike": None, + "box": None, + "height": 1, + } + + def effective(face: str, seen: set[str] | None = None) -> dict[str, object]: + seen = seen or set() + if face in seen: + return dict(fallback) + seen.add(face) + info = faces.get(face, {}) + own = dict(info.get("chosenGuiLight") or {}) + result = dict(fallback) + inherits = inherit_list(own.get("inherit")) + for parent in inherits: + result.update({k: v for k, v in effective(parent, seen).items() if v is not None}) + result.update({k: v for k, v in own.items() if v is not None}) + for key in ("foreground", "background", "distantForeground"): + if key in result: + hx = color_hex(result[key]) + if hx: + result[key + "Hex"] = hx + else: + result.pop(key + "Hex", None) + if inherits: + result["selectedInherits"] = inherits + return result + + for face, info in faces.items(): + info["effectiveGuiLight"] = effective(face) + + +def package_dirs(pkg: str) -> list[pathlib.Path]: + roots = [ROOT / "elpa", ROOT / "straight" / "build", ROOT / "site-lisp"] + out: list[pathlib.Path] = [] + for root in roots: + if not root.exists(): + continue + out.extend( + p + for p in root.iterdir() + if p.is_dir() and (p.name == pkg or p.name.startswith(pkg + "-")) + ) + return out + + +def defface_files(inventory: dict[str, list[str]]) -> tuple[dict[str, dict[str, str]], dict[str, list[str]], list[str]]: + found: dict[str, dict[str, str]] = {} + missing: dict[str, list[str]] = {} + load_paths: list[str] = [] + for pkg, faces in inventory.items(): + dirs = package_dirs(pkg) + load_paths.extend(str(d) for d in dirs) + by_face: dict[str, str] = {} + pending = set(faces) + for directory in dirs: + for path in directory.rglob("*.el"): + if not pending: + break + try: + text = path.read_text(errors="ignore") + except OSError: + continue + for face in list(pending): + pat = r"\(\s*defface\s+" + re.escape(face) + r"\b" + if re.search(pat, text): + by_face[face] = str(path) + pending.remove(face) + if not pending: + break + found[pkg] = by_face + if pending: + missing[pkg] = sorted(pending) + return found, missing, sorted(set(load_paths)) + + +def elisp_quote(value: object) -> str: + return json.dumps(value) + + +def main() -> None: + inventory = json.loads(INVENTORY.read_text()) + face_files, missing, load_paths = defface_files(inventory) + package_faces = sorted({face for faces in inventory.values() for face in faces}) + package_files = sorted(set(face_files[pkg][face] for pkg in face_files for face in face_files[pkg])) + all_faces = sorted(set(UI) | {f for faces in SYNTAX.values() for f in faces} | set(package_faces)) + + script = f""" +(require 'json) +(require 'cl-lib) +(setq json-object-type 'alist) +(setq json-array-type 'list) +(setq json-key-type 'symbol) +(defconst ts-probe-load-paths (json-read-from-string {elisp_quote(json.dumps(load_paths))})) +(defconst ts-probe-builtin-features (json-read-from-string {elisp_quote(json.dumps(BUILTIN_FEATURES))})) +(defconst ts-probe-package-files (json-read-from-string {elisp_quote(json.dumps(package_files))})) +(defconst ts-probe-syntax-map (json-read-from-string {elisp_quote(json.dumps(SYNTAX))})) +(defconst ts-probe-ui-faces (json-read-from-string {elisp_quote(json.dumps(UI))})) +(defconst ts-probe-package-inventory (json-read-from-string {elisp_quote(json.dumps(inventory))})) +(defconst ts-probe-package-defface-files (json-read-from-string {elisp_quote(json.dumps(face_files))})) +(defconst ts-probe-package-unresolved-faces (json-read-from-string {elisp_quote(json.dumps(missing))})) +(defconst ts-probe-all-faces (json-read-from-string {elisp_quote(json.dumps(all_faces))})) +(dolist (dir ts-probe-load-paths) + (add-to-list 'load-path dir)) +(dolist (feature (mapcar #'intern ts-probe-builtin-features)) + (ignore-errors (require feature))) +(dolist (file ts-probe-package-files) + (with-temp-file {elisp_quote(str(PROGRESS))} (insert file)) + (ignore-errors (load file nil t))) +(defun ts-probe--proper-list-p (value) + (or (null value) + (and (consp value) (ts-probe--proper-list-p (cdr value))))) +(defun ts-probe--safe (value) + (cond ((keywordp value) (symbol-name value)) + ((symbolp value) (symbol-name value)) + ((and (consp value) (ts-probe--proper-list-p value)) + (vconcat (mapcar #'ts-probe--safe value))) + ((consp value) + (vector "cons" (ts-probe--safe (car value)) (ts-probe--safe (cdr value)))) + ((vectorp value) (mapcar #'ts-probe--safe (append value nil))) + (t value))) +(defun ts-probe--json-bool (v) (if v t :json-false)) +(defun ts-probe--attr (face attr) + (let ((v (face-attribute face attr nil 'default))) + (cond ((eq v 'unspecified) nil) + ((eq v 'unspecified-fg) nil) + ((eq v 'unspecified-bg) nil) + (t v)))) +(defun ts-probe--face (name) + (let ((face (intern name))) + (if (not (facep face)) + `((exists . :json-false)) + `((exists . t) + (foreground . ,(ts-probe--safe (ts-probe--attr face :foreground))) + (background . ,(ts-probe--safe (ts-probe--attr face :background))) + (weight . ,(ts-probe--safe (ts-probe--attr face :weight))) + (slant . ,(ts-probe--safe (ts-probe--attr face :slant))) + (underline . ,(ts-probe--safe (ts-probe--attr face :underline))) + (strike . ,(ts-probe--safe (ts-probe--attr face :strike-through))) + (box . ,(ts-probe--safe (ts-probe--attr face :box))) + (height . ,(ts-probe--safe (ts-probe--attr face :height))) + (inherit . ,(ts-probe--safe (ts-probe--attr face :inherit))) + (default-spec . ,(ts-probe--safe (face-default-spec face))))))) +(let ((json-encoding-pretty-print t)) + (with-temp-file {elisp_quote(str(OUT))} + (insert + (json-encode + `((meta . ((captured-by . "scripts/theme-studio/capture-default-faces.py") + (emacs-version . ,emacs-version) + (resolution-model . "gui-light-24bit-from-face-default-spec") + (window-system . "batch") + (display-color-cells . 16777216) + (default-foreground . "black") + (default-background . "white") + (package-face-count . ,{len(package_faces)}) + (loaded-defface-file-count . ,{len(package_files)}))) + (syntax-map . ,ts-probe-syntax-map) + (ui-faces . ,ts-probe-ui-faces) + (package-inventory . ,ts-probe-package-inventory) + (package-defface-files . ,ts-probe-package-defface-files) + (package-unresolved-faces . ,ts-probe-package-unresolved-faces) + (faces . ,(mapcar (lambda (face) (cons (intern face) (ts-probe--face face))) + ts-probe-all-faces))))))) +(kill-emacs) +""" + with tempfile.NamedTemporaryFile("w", suffix=".el", delete=False) as f: + f.write(script) + probe = f.name + try: + subprocess.run(["emacs", "-Q", "--batch", "-l", probe], cwd=ROOT, check=True, timeout=240) + finally: + try: + os.unlink(probe) + except OSError: + pass + + data = json.loads(OUT.read_text()) + enrich_chosen_defaults(data) + data["meta"]["package-unresolved-face-count"] = sum(len(v) for v in missing.values()) + OUT.write_text(json.dumps(data, indent=2, sort_keys=True) + "\n") + print(f"wrote {OUT}") + print(json.dumps(data["meta"], indent=2, sort_keys=True)) + + +if __name__ == "__main__": + main() diff --git a/scripts/theme-studio/emacs-default-faces.json b/scripts/theme-studio/emacs-default-faces.json new file mode 100644 index 00000000..51db612d --- /dev/null +++ b/scripts/theme-studio/emacs-default-faces.json @@ -0,0 +1,29487 @@ +{ + "faces": { + "alert-high-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Dark Orange", + "foregroundHex": "#ff8c00", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "Dark Orange", + ":bold", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Dark Orange", + "foregroundHex": "#ff8c00", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "Dark Orange", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "alert-low-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Dark Blue", + "foregroundHex": "#00008b" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "Dark Blue" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Dark Blue", + "foregroundHex": "#00008b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "Dark Blue", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "alert-moderate-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Gold", + "foregroundHex": "#ffd700", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "Gold", + ":bold", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gold", + "foregroundHex": "#ffd700", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "Gold", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "alert-normal-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "alert-trivial-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Dark Violet", + "foregroundHex": "#9400d3" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "Dark Violet" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Dark Violet", + "foregroundHex": "#9400d3", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "Dark Violet", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "alert-urgent-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Red", + "foregroundHex": "#ff0000", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "Red", + ":bold", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red", + "foregroundHex": "#ff0000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "Red", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "all-the-icons-blue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6A9FB5", + "foregroundHex": "#6a9fb5" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#6A9FB5" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#6A9FB5" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6A9FB5", + "foregroundHex": "#6a9fb5", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#6A9FB5", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-blue-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#2188b6", + "foregroundHex": "#2188b6" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#2188b6" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#2188b6" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#2188b6", + "foregroundHex": "#2188b6", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#2188b6", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-cyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#75B5AA", + "foregroundHex": "#75b5aa" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#75B5AA" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#75B5AA" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#75B5AA", + "foregroundHex": "#75b5aa", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#75B5AA", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-cyan-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#0595bd", + "foregroundHex": "#0595bd" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#61dafb" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#0595bd" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#0595bd", + "foregroundHex": "#0595bd", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#61dafb", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dblue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#446674", + "foregroundHex": "#446674" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#446674" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#446674" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#446674", + "foregroundHex": "#446674", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#446674", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dcyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#48746D", + "foregroundHex": "#48746d" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#48746D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#48746D" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#48746D", + "foregroundHex": "#48746d", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#48746D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dgreen": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6D8143", + "foregroundHex": "#6d8143" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#6D8143" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#6D8143" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6D8143", + "foregroundHex": "#6d8143", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#6D8143", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dmaroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#72584B", + "foregroundHex": "#72584b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#72584B" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#72584B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#72584B", + "foregroundHex": "#72584b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#72584B", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dorange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#915B2D", + "foregroundHex": "#915b2d" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#915B2D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#915B2D" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#915B2D", + "foregroundHex": "#915b2d", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#915B2D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dpink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#7E5D5F", + "foregroundHex": "#7e5d5f" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B18286" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#7E5D5F" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#7E5D5F", + "foregroundHex": "#7e5d5f", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B18286", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dpurple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#694863", + "foregroundHex": "#694863" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#694863" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#694863" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#694863", + "foregroundHex": "#694863", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#694863", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dred": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#843031", + "foregroundHex": "#843031" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#843031" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#843031" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#843031", + "foregroundHex": "#843031", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#843031", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dsilver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#838484", + "foregroundHex": "#838484" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#838484" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#838484" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#838484", + "foregroundHex": "#838484", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#838484", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-dyellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#B48D56", + "foregroundHex": "#b48d56" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B48D56" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#B48D56" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#B48D56", + "foregroundHex": "#b48d56", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B48D56", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-green": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#90A959", + "foregroundHex": "#90a959" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#90A959" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#90A959" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#90A959", + "foregroundHex": "#90a959", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#90A959", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lblue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#677174", + "foregroundHex": "#677174" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#8FD7F4" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#677174" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#677174", + "foregroundHex": "#677174", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#8FD7F4", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lcyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#2C7D6E", + "foregroundHex": "#2c7d6e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#A5FDEC" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#2C7D6E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#2C7D6E", + "foregroundHex": "#2c7d6e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#A5FDEC", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lgreen": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#3D6837", + "foregroundHex": "#3d6837" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#C6E87A" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#3D6837" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#3D6837", + "foregroundHex": "#3d6837", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#C6E87A", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lmaroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#CE7A4E", + "foregroundHex": "#ce7a4e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#CE7A4E" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#CE7A4E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#CE7A4E", + "foregroundHex": "#ce7a4e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#CE7A4E", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lorange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FFA500", + "foregroundHex": "#ffa500" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFA500" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FFA500" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FFA500", + "foregroundHex": "#ffa500", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFA500", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lpink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FF505B", + "foregroundHex": "#ff505b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFBDC1" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FF505B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FF505B", + "foregroundHex": "#ff505b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFBDC1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lpurple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#E69DD6", + "foregroundHex": "#e69dd6" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#E69DD6" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#E69DD6" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#E69DD6", + "foregroundHex": "#e69dd6", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#E69DD6", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lred": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#EB595A", + "foregroundHex": "#eb595a" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#EB595A" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#EB595A" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#EB595A", + "foregroundHex": "#eb595a", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#EB595A", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lsilver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#7F7869", + "foregroundHex": "#7f7869" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B9B6AA" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#7F7869" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#7F7869", + "foregroundHex": "#7f7869", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B9B6AA", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-lyellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FF9300", + "foregroundHex": "#ff9300" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFC16D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FF9300" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FF9300", + "foregroundHex": "#ff9300", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFC16D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-maroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#8F5536", + "foregroundHex": "#8f5536" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#8F5536" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#8F5536" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#8F5536", + "foregroundHex": "#8f5536", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#8F5536", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-orange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#D4843E", + "foregroundHex": "#d4843e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#D4843E" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#D4843E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#D4843E", + "foregroundHex": "#d4843e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#D4843E", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-pink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FC505B", + "foregroundHex": "#fc505b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#F2B4B8" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FC505B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FC505B", + "foregroundHex": "#fc505b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#F2B4B8", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-purple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#68295B", + "foregroundHex": "#68295b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#AA759F" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#68295B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#68295B", + "foregroundHex": "#68295b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#AA759F", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-purple-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#5D54E1", + "foregroundHex": "#5d54e1" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#5D54E1" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#5D54E1" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#5D54E1", + "foregroundHex": "#5d54e1", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#5D54E1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-red": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#AC4142", + "foregroundHex": "#ac4142" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#AC4142" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#AC4142" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#AC4142", + "foregroundHex": "#ac4142", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#AC4142", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-red-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#843031", + "foregroundHex": "#843031" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#ce5643" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#843031" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#843031", + "foregroundHex": "#843031", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#ce5643", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-silver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#716E68", + "foregroundHex": "#716e68" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#716E68" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#716E68" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#716E68", + "foregroundHex": "#716e68", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#716E68", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "all-the-icons-yellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FFCC0E", + "foregroundHex": "#ffcc0e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFD446" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FFCC0E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FFCC0E", + "foregroundHex": "#ffcc0e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFD446", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-box-annotation": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-box-background": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-box-candidate": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-box-numbers": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-box-scrollbar": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-box-selection": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "company-echo": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": "nil", + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-echo-common": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + [ + ":foreground", + "firebrick4" + ] + ], + [ + [ + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "firebrick1" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "firebrick1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-preview": { + "background": "green", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "company-tooltip-selection", + "company-tooltip" + ] + }, + "default-spec": [ + [ + "default", + ":inherit", + [ + "company-tooltip-selection", + "company-tooltip" + ] + ] + ], + "effectiveGuiLight": { + "background": "cornsilk", + "backgroundHex": "#fff8dc", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": [ + "company-tooltip-selection", + "company-tooltip" + ], + "selectedInherits": [ + "company-tooltip-selection", + "company-tooltip" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": [ + "company-tooltip-selection", + "company-tooltip" + ], + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-preview-common": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-common-selection" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-common-selection" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "darkred", + "foregroundHex": "#8b0000", + "height": 1, + "inherit": "company-tooltip-common-selection", + "selectedInherits": [ + "company-tooltip-common-selection" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "pale turquoise", + "height": 1, + "inherit": "company-tooltip-common-selection", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-preview-search": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-common-selection" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-common-selection" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "darkred", + "foregroundHex": "#8b0000", + "height": 1, + "inherit": "company-tooltip-common-selection", + "selectedInherits": [ + "company-tooltip-common-selection" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "pale turquoise", + "height": 1, + "inherit": "company-tooltip-common-selection", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip": { + "background": "yellow", + "box": "nil", + "chosenGuiLight": { + "background": "cornsilk", + "backgroundHex": "#fff8dc", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "black", + ":background", + "cornsilk" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + [ + ":background", + "gray26" + ] + ], + [ + "t", + [ + ":foreground", + "black", + ":background", + "yellow" + ] + ] + ], + "effectiveGuiLight": { + "background": "cornsilk", + "backgroundHex": "#fff8dc", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-annotation": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "firebrick4" + ], + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "LightCyan3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "LightCyan3", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-annotation-selection": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-annotation" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-annotation" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a", + "height": 1, + "inherit": "company-tooltip-annotation", + "selectedInherits": [ + "company-tooltip-annotation" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "LightCyan3", + "height": 1, + "inherit": "company-tooltip-annotation", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-common": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "darkred", + "foregroundHex": "#8b0000" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "darkred" + ], + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "pale turquoise" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "darkred", + "foregroundHex": "#8b0000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "pale turquoise", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-common-selection": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-common" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-common" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "darkred", + "foregroundHex": "#8b0000", + "height": 1, + "inherit": "company-tooltip-common", + "selectedInherits": [ + "company-tooltip-common" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "pale turquoise", + "height": 1, + "inherit": "company-tooltip-common", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-deprecated": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "strike": "t" + }, + "default-spec": [ + [ + "t", + [ + ":strike-through", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": "t", + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "t", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-mouse": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "default", + ":inherit", + "highlight" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-quick-access": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-annotation" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-annotation" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a", + "height": 1, + "inherit": "company-tooltip-annotation", + "selectedInherits": [ + "company-tooltip-annotation" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "LightCyan3", + "height": 1, + "inherit": "company-tooltip-annotation", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-quick-access-selection": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "company-tooltip-annotation-selection" + }, + "default-spec": [ + [ + "default", + ":inherit", + "company-tooltip-annotation-selection" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "firebrick4", + "foregroundHex": "#8b1a1a", + "height": 1, + "inherit": "company-tooltip-annotation-selection", + "selectedInherits": [ + "company-tooltip-annotation-selection" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "LightCyan3", + "height": 1, + "inherit": "company-tooltip-annotation-selection", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-scrollbar-thumb": { + "background": "gray33", + "box": "nil", + "chosenGuiLight": { + "background": "indian red", + "backgroundHex": "#cd5c5c" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + ":background", + "indian red" + ], + [ + [ + [ + "background", + "dark" + ] + ], + ":background", + "gray33" + ] + ], + "effectiveGuiLight": { + "background": "indian red", + "backgroundHex": "#cd5c5c", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-scrollbar-track": { + "background": "gray28", + "box": "nil", + "chosenGuiLight": { + "background": "wheat", + "backgroundHex": "#f5deb3" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + ":background", + "wheat" + ], + [ + [ + [ + "background", + "dark" + ] + ], + ":background", + "gray28" + ] + ], + "effectiveGuiLight": { + "background": "wheat", + "backgroundHex": "#f5deb3", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-search": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "default", + ":inherit", + "highlight" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-search-selection": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "default", + ":inherit", + "highlight" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "company-tooltip-selection": { + "background": "green", + "box": "nil", + "chosenGuiLight": { + "background": "light blue", + "backgroundHex": "#add8e6" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "light blue" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + [ + ":background", + "gray31" + ] + ], + [ + "t", + [ + ":background", + "green" + ] + ] + ], + "effectiveGuiLight": { + "background": "light blue", + "backgroundHex": "#add8e6", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-async-failed": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-async-finished": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-async-running": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "consult-narrow-indicator" + }, + "default-spec": [ + [ + "t", + ":inherit", + "consult-narrow-indicator" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "consult-narrow-indicator", + "selectedInherits": [ + "consult-narrow-indicator" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "consult-narrow-indicator", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-async-split": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-negation-char-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-negation-char-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-negation-char-face", + "selectedInherits": [ + "font-lock-negation-char-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-negation-char-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-bookmark": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "consult-buffer": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-file": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-grep-context": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-help": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-highlight-mark": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "consult-highlight-match" + }, + "default-spec": [ + [ + "t", + ":inherit", + "consult-highlight-match" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "consult-highlight-match", + "selectedInherits": [ + "consult-highlight-match" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "consult-highlight-match", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-highlight-match": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "match" + }, + "default-spec": [ + [ + "t", + ":inherit", + "match" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "match", + "selectedInherits": [ + "match" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "match", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-key": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-line-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "consult-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "consult-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "consult-key", + "selectedInherits": [ + "consult-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "consult-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-line-number-prefix": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "line-number" + }, + "default-spec": [ + [ + "t", + ":inherit", + "line-number" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "line-number", + "selectedInherits": [ + "line-number" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "line-number", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-line-number-wrapped": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-warning-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "consult-line-number-prefix", + ":inherit", + "font-lock-warning-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-warning-face", + "selectedInherits": [ + "font-lock-warning-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-warning-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-narrow-indicator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "consult-preview-insertion": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "region" + }, + "default-spec": [ + [ + "t", + ":inherit", + "region" + ] + ], + "effectiveGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "region", + "selectedInherits": [ + "region" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "region", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-preview-line": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "extend": "t", + "inherit": "consult-preview-insertion" + }, + "default-spec": [ + [ + "t", + ":inherit", + "consult-preview-insertion", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "consult-preview-insertion", + "selectedInherits": [ + "consult-preview-insertion" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "consult-preview-insertion", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-preview-match": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "isearch" + }, + "default-spec": [ + [ + "t", + ":inherit", + "isearch" + ] + ], + "effectiveGuiLight": { + "background": "magenta3", + "backgroundHex": "#cd00cd", + "box": null, + "foreground": "lightskyblue1", + "foregroundHex": "#b0e2ff", + "height": 1, + "inherit": "isearch", + "selectedInherits": [ + "isearch" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "isearch", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "consult-separator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#ccc" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#ccc" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#333" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#ccc", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "cursor": { + "background": "white", + "box": "nil", + "chosenGuiLight": { + "background": "black", + "backgroundHex": "#000000" + }, + "default-spec": [ + [ + [ + [ + "background", + "light" + ] + ], + ":background", + "black" + ], + [ + [ + [ + "background", + "dark" + ] + ], + ":background", + "white" + ] + ], + "effectiveGuiLight": { + "background": "black", + "backgroundHex": "#000000", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dashboard-banner-logo-title": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "t", + ":inherit", + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dashboard-footer-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-doc-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-doc-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-doc-face", + "selectedInherits": [ + "font-lock-doc-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-doc-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dashboard-footer-icon-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dashboard-footer-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dashboard-footer-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "dashboard-footer-face", + "selectedInherits": [ + "dashboard-footer-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dashboard-footer-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dashboard-heading": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-keyword-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dashboard-items-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "widget-button" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "widget-button" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "widget-button", + "selectedInherits": [ + "widget-button" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "widget-button", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dashboard-navigator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-keyword-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dashboard-no-items-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "widget-button" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "widget-button" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "widget-button", + "selectedInherits": [ + "widget-button" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "widget-button", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dashboard-text-banner": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-keyword-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "default": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-collapse-dir-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dired-directory" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dired-directory" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "dired-directory", + "selectedInherits": [ + "dired-directory" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dired-directory", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-collapse-empty-dir-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "shadow" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-collapse-file-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-emerge-group-title": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dired-ignored" + }, + "default-spec": [ + [ + "t", + ":inherit", + "dired-ignored" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "dired-ignored", + "selectedInherits": [ + "dired-ignored" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dired-ignored", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-file-device-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dirvish-file-link-number" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dirvish-file-link-number" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "dirvish-file-link-number", + "selectedInherits": [ + "dirvish-file-link-number" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dirvish-file-link-number", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "dirvish-file-group-id": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dirvish-file-user-id" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dirvish-file-user-id" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "dirvish-file-user-id", + "selectedInherits": [ + "dirvish-file-user-id" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dirvish-file-user-id", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-file-inode-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "dirvish-file-link-number" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dirvish-file-link-number" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "dirvish-file-link-number", + "selectedInherits": [ + "dirvish-file-link-number" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dirvish-file-link-number", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "dirvish-file-link-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-constant-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "dirvish-file-modes": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6b6b6b", + "foregroundHex": "#6b6b6b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#a9a1e1" + ] + ], + [ + "t", + [ + ":foreground", + "#6b6b6b" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6b6b6b", + "foregroundHex": "#6b6b6b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#a9a1e1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-file-size": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "completions-annotations", + "underline": "nil" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "completions-annotations", + ":underline", + "nil", + ":italic", + "nil" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "completions-annotations", + "selectedInherits": [ + "completions-annotations" + ], + "slant": "normal", + "strike": null, + "underline": "nil", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "completions-annotations", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-file-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#979797", + "foregroundHex": "#979797" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#5699AF" + ] + ], + [ + "t", + [ + ":foreground", + "#979797" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#979797", + "foregroundHex": "#979797", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#5699AF", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-file-user-id": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-preprocessor-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-preprocessor-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "selectedInherits": [ + "font-lock-preprocessor-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-free-space": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-constant-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "dirvish-git-commit-message-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "unspecified", + "inherit": "dired-ignored", + "underline": "nil" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dired-ignored", + ":underline", + "nil", + ":background", + "unspecified" + ] + ] + ], + "effectiveGuiLight": { + "background": "unspecified", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "dired-ignored", + "selectedInherits": [ + "dired-ignored" + ], + "slant": "normal", + "strike": null, + "underline": "nil", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dired-ignored", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-hl-line": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "extend": "t", + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + ":inherit", + "highlight", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-hl-line-inactive": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "extend": "t", + "inherit": "region" + }, + "default-spec": [ + [ + "t", + ":inherit", + "region", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "region", + "selectedInherits": [ + "region" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "region", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-inactive": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-media-info-heading": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "dired-header", + "bold" + ] + }, + "default-spec": [ + [ + "t", + ":inherit", + [ + "dired-header", + "bold" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": [ + "dired-header", + "bold" + ], + "selectedInherits": [ + "dired-header", + "bold" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "dired-header", + "bold" + ], + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "dirvish-media-info-property-key": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "italic" + ] + }, + "default-spec": [ + [ + "t", + ":inherit", + [ + "italic" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": [ + "italic" + ], + "selectedInherits": [ + "italic" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "italic" + ], + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-narrow-match-face-0": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#223fbf", + "foregroundHex": "#223fbf", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#72a4ff" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#223fbf" + ], + [ + "t", + ":foreground", + "blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#223fbf", + "foregroundHex": "#223fbf", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "blue", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-narrow-match-face-1": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#8f0075", + "foregroundHex": "#8f0075", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#ed92f8" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#8f0075" + ], + [ + "t", + ":foreground", + "magenta" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#8f0075", + "foregroundHex": "#8f0075", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "magenta", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-narrow-match-face-2": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#145a00", + "foregroundHex": "#145a00", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#90d800" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#145a00" + ], + [ + "t", + ":foreground", + "green" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#145a00", + "foregroundHex": "#145a00", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "green", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-narrow-match-face-3": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#804000", + "foregroundHex": "#804000", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#f0ce43" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#804000" + ], + [ + "t", + ":foreground", + "yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#804000", + "foregroundHex": "#804000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "yellow", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-narrow-split": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-negation-char-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-negation-char-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-negation-char-face", + "selectedInherits": [ + "font-lock-negation-char-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-negation-char-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-proc-failed": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-proc-finished": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-proc-running": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "dirvish-subtree-guide": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "unspecified", + "inherit": "dired-ignored", + "underline": "nil" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dired-ignored", + ":underline", + "nil", + ":background", + "unspecified" + ] + ] + ], + "effectiveGuiLight": { + "background": "unspecified", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "dired-ignored", + "selectedInherits": [ + "dired-ignored" + ], + "slant": "normal", + "strike": null, + "underline": "nil", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dired-ignored", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-subtree-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "unspecified", + "inherit": "dired-ignored", + "underline": "nil" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "dired-ignored", + ":underline", + "nil", + ":background", + "unspecified" + ] + ] + ], + "effectiveGuiLight": { + "background": "unspecified", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "dired-ignored", + "selectedInherits": [ + "dired-ignored" + ], + "slant": "normal", + "strike": null, + "underline": "nil", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "dired-ignored", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-added-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-locally-added-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-locally-added-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-locally-added-state", + "selectedInherits": [ + "vc-locally-added-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-locally-added-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-conflict-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-conflict-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-conflict-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-conflict-state", + "selectedInherits": [ + "vc-conflict-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-conflict-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-edited-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-edited-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-edited-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-edited-state", + "selectedInherits": [ + "vc-edited-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-edited-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-locked-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-locked-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-locked-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-locked-state", + "selectedInherits": [ + "vc-locked-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-locked-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-missing-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-missing-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-missing-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-missing-state", + "selectedInherits": [ + "vc-missing-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-missing-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-needs-merge-face": { + "background": "#500f29", + "box": "nil", + "chosenGuiLight": { + "background": "#efcbcf", + "backgroundHex": "#efcbcf" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + [ + ":background", + "#500f29" + ] + ], + [ + "t", + [ + ":background", + "#efcbcf" + ] + ] + ], + "effectiveGuiLight": { + "background": "#efcbcf", + "backgroundHex": "#efcbcf", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-needs-update-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-needs-update-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-needs-update-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-needs-update-state", + "selectedInherits": [ + "vc-needs-update-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-needs-update-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-removed-state": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vc-removed-state" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vc-removed-state" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vc-removed-state", + "selectedInherits": [ + "vc-removed-state" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vc-removed-state", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "dirvish-vc-unregistered-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-constant-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "elfeed-log-date-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "elfeed-log-debug-level-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "magenta2", + "foregroundHex": "#ee00ee" + }, + "default-spec": [ + [ + "t", + ":foreground", + "magenta2" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "magenta2", + "foregroundHex": "#ee00ee", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "magenta2", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-log-error-level-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "red", + "foregroundHex": "#ff0000" + }, + "default-spec": [ + [ + "t", + ":foreground", + "red" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "red", + "foregroundHex": "#ff0000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "red", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-log-info-level-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "deep sky blue", + "foregroundHex": "#00bfff" + }, + "default-spec": [ + [ + "t", + ":foreground", + "deep sky blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "deep sky blue", + "foregroundHex": "#00bfff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "deep sky blue", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-log-warn-level-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "goldenrod", + "foregroundHex": "#daa520" + }, + "default-spec": [ + [ + "t", + ":foreground", + "goldenrod" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "goldenrod", + "foregroundHex": "#daa520", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "goldenrod", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-date-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#aaa" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "#aaa" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#77a" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#aaa", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-feed-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#aa0" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "#aa0" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#ff0" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#aa0", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-filter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "mode-line-buffer-id" + }, + "default-spec": [ + [ + "t", + ":inherit", + "mode-line-buffer-id" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "mode-line-buffer-id", + "selectedInherits": [ + "mode-line-buffer-id" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "mode-line-buffer-id", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "elfeed-search-last-update-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-tag-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#070" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "#070" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#0f0" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#070", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-title-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "#000" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#fff" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-unread-count-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "#000" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "#fff" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "elfeed-search-unread-title-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "embark-collect-annotation": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "completions-annotations" + }, + "default-spec": [ + [ + "t", + ":inherit", + "completions-annotations" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "completions-annotations", + "selectedInherits": [ + "completions-annotations" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "completions-annotations", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-collect-candidate": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "t", + ":inherit", + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-collect-group-separator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "strike": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow", + ":strike-through", + "t", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": "t", + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "t", + "underline": "nil", + "weight": "normal" + }, + "embark-collect-group-title": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-keybinding": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "embark-keybinding-repeat": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "embark-keymap": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-selected": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "match" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "match" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "match", + "selectedInherits": [ + "match" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "match", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-target": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + ":inherit", + "highlight" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-verbose-indicator-documentation": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "completions-annotations" + }, + "default-spec": [ + [ + "t", + ":inherit", + "completions-annotations" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "completions-annotations", + "selectedInherits": [ + "completions-annotations" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "completions-annotations", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-verbose-indicator-shadowed": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "embark-verbose-indicator-title": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.1, + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":height", + 1.1, + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1.1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "emms-browser-album-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-albumartist-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-artist-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-composer-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-performer-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-track-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-browser-year/genre-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "emms-metaplaylist-mode-current-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "red3", + "backgroundHex": "#cd0000", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "red2" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "red3", + ":foreground", + "white" + ] + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + [ + ":inverse-video", + "t" + ] + ], + [ + "t", + [ + ":background", + "red3" + ] + ] + ], + "effectiveGuiLight": { + "background": "red3", + "backgroundHex": "#cd0000", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "emms-metaplaylist-mode-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "red3", + "foregroundHex": "#cd0000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "AntiqueWhite3" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "red3" + ] + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + [ + ":inverse-video", + "t" + ] + ], + [ + "t", + [ + ":background", + "WhiteSmoke" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "red3", + "foregroundHex": "#cd0000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "emms-playlist-selected-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "blue3", + "backgroundHex": "#0000cd", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "SteelBlue3" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "blue3", + ":foreground", + "white" + ] + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + [ + ":inverse-video", + "t" + ] + ], + [ + "t", + [ + ":background", + "blue3" + ] + ] + ], + "effectiveGuiLight": { + "background": "blue3", + "backgroundHex": "#0000cd", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "emms-playlist-track-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Blue", + "foregroundHex": "#0000ff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + [ + ":foreground", + "DarkSeaGreen" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + [ + ":foreground", + "Blue" + ] + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + [ + ":inverse-video", + "t" + ] + ], + [ + "t", + [ + ":background", + "Blue" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue", + "foregroundHex": "#0000ff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Red1", + "foregroundHex": "#ff0000", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Red1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Pink" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Red1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Pink" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "red" + ], + [ + "t", + ":inverse-video", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-delimited-error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "underline": [ + ":style", + "wave", + ":color", + "Red1" + ] + }, + "default-spec": [ + [ + [ + [ + "supports", + ":underline", + [ + ":style", + "wave" + ] + ] + ], + ":underline", + [ + ":style", + "wave", + ":color", + "Red1" + ] + ], + [ + "t", + ":underline", + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": [ + ":style", + "wave", + ":color", + "Red1" + ], + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "flycheck-error-delimiter": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error-list-checker-name": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-error-list-column-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error-list-error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-error-list-error-message": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error-list-filename": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "mode-line-buffer-id" + }, + "default-spec": [ + [ + "t", + ":inherit", + "mode-line-buffer-id", + ":bold", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "mode-line-buffer-id", + "selectedInherits": [ + "mode-line-buffer-id" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "mode-line-buffer-id", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error-list-highlight": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":bold", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-error-list-id": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "flycheck-error-list-id-with-explainer": { + "background": "unspecified-bg", + "box": [ + ":style", + "released-button" + ], + "chosenGuiLight": { + "box": [ + ":style", + "released-button" + ], + "inherit": "flycheck-error-list-id" + }, + "default-spec": [ + [ + "t", + ":inherit", + "flycheck-error-list-id", + ":box", + [ + ":style", + "released-button" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":style", + "released-button" + ], + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "flycheck-error-list-id", + "selectedInherits": [ + "flycheck-error-list-id" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "flycheck-error-list-id", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "flycheck-error-list-info": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-error-list-line-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-error-list-warning": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-fringe-error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-fringe-info": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-fringe-warning": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "flycheck-info": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "underline": [ + ":style", + "wave", + ":color", + "ForestGreen" + ] + }, + "default-spec": [ + [ + [ + [ + "supports", + ":underline", + [ + ":style", + "wave" + ] + ] + ], + ":underline", + [ + ":style", + "wave", + ":color", + "ForestGreen" + ] + ], + [ + "t", + ":underline", + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": [ + ":style", + "wave", + ":color", + "ForestGreen" + ], + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "flycheck-verify-select-checker": { + "background": "unspecified-bg", + "box": [ + ":style", + "released-button" + ], + "chosenGuiLight": { + "box": [ + ":style", + "released-button" + ] + }, + "default-spec": [ + [ + "t", + ":box", + [ + ":style", + "released-button" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":style", + "released-button" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "flycheck-warning": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "underline": [ + ":style", + "wave", + ":color", + "DarkOrange" + ] + }, + "default-spec": [ + [ + [ + [ + "supports", + ":underline", + [ + ":style", + "wave" + ] + ] + ], + ":underline", + [ + ":style", + "wave", + ":color", + "DarkOrange" + ] + ], + [ + "t", + ":underline", + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": [ + ":style", + "wave", + ":color", + "DarkOrange" + ], + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "flyspell-correct-highlight-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "isearch" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "isearch" + ] + ] + ], + "effectiveGuiLight": { + "background": "magenta3", + "backgroundHex": "#cd00cd", + "box": null, + "foreground": "lightskyblue1", + "foregroundHex": "#b0e2ff", + "height": 1, + "inherit": "isearch", + "selectedInherits": [ + "isearch" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "isearch", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-bracket-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-punctuation-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-punctuation-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-punctuation-face", + "selectedInherits": [ + "font-lock-punctuation-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-punctuation-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-builtin-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "LightGray", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "DimGray", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "dark slate blue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSteelBlue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Orchid" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSteelBlue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "blue", + ":weight", + "bold" + ], + [ + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-comment-delimiter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "default", + ":inherit", + "font-lock-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "DimGray", + "foregroundHex": "#696969", + "slant": "italic", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "DimGray", + ":weight", + "bold", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightGray", + ":weight", + "bold", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Firebrick" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "chocolate1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "red" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "red1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "red" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "yellow" + ], + [ + "t", + ":weight", + "bold", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-constant-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "underline": "t", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "LightGray", + ":weight", + "bold", + ":underline", + "t" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Gray50", + ":weight", + "bold", + ":underline", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "dark cyan" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Aquamarine" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "CadetBlue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Aquamarine" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "magenta" + ], + [ + "t", + ":weight", + "bold", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "font-lock-delimiter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-punctuation-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-punctuation-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-punctuation-face", + "selectedInherits": [ + "font-lock-punctuation-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-punctuation-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-doc-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-escape-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-regexp-grouping-backslash" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-regexp-grouping-backslash" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-regexp-grouping-backslash", + "selectedInherits": [ + "font-lock-regexp-grouping-backslash" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-regexp-grouping-backslash", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-function-call-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-function-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Blue1", + "foregroundHex": "#0000ff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Blue1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSkyBlue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Blue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSkyBlue" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "blue", + ":weight", + "bold" + ], + [ + "t", + ":inverse-video", + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-keyword-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "LightGray", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "DimGray", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Purple" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Cyan1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Purple" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Cyan" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "cyan", + ":weight", + "bold" + ], + [ + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-misc-punctuation-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-punctuation-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-punctuation-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-punctuation-face", + "selectedInherits": [ + "font-lock-punctuation-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-punctuation-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-number-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-operator-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-preprocessor-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-property-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-property-use-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-property-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-property-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-property-name-face", + "selectedInherits": [ + "font-lock-property-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-property-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-punctuation-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-regexp-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "DimGray", + "foregroundHex": "#696969", + "slant": "italic" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "DimGray", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightGray", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "VioletRed4" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSalmon" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "RosyBrown" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightSalmon" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "green" + ], + [ + "t", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "font-lock-type-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Gray90", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "DimGray", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "ForestGreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "PaleGreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "ForestGreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "PaleGreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "green" + ], + [ + "t", + ":weight", + "bold", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "font-lock-variable-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "slant": "italic", + "weight": "bold" + }, + "default-spec": [ + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Gray90", + ":weight", + "bold", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "grayscale" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "DimGray", + ":weight", + "bold", + ":slant", + "italic" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "sienna" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightGoldenrod" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "DarkGoldenrod" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "LightGoldenrod" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "yellow", + ":weight", + "light" + ], + [ + "t", + ":weight", + "bold", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "font-lock-variable-use-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "fringe": { + "background": "gray", + "box": "nil", + "chosenGuiLight": { + "background": "grey95", + "backgroundHex": "#f2f2f2" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":background", + "grey95" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":background", + "grey10" + ], + [ + "t", + ":background", + "gray" + ] + ], + "effectiveGuiLight": { + "background": "grey95", + "backgroundHex": "#f2f2f2", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-black": { + "background": "black", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-black" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-black" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-black", + "selectedInherits": [ + "ansi-color-black" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "ansi-color-black", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-blue": { + "background": "blue2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-blue" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-blue", + "selectedInherits": [ + "ansi-color-blue" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "blue2", + "height": 1, + "inherit": "ansi-color-blue", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-black": { + "background": "gray30", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-black" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-black" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-black", + "selectedInherits": [ + "ansi-color-bright-black" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "gray30", + "height": 1, + "inherit": "ansi-color-bright-black", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-blue": { + "background": "blue1", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-blue" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-blue", + "selectedInherits": [ + "ansi-color-bright-blue" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "blue1", + "height": 1, + "inherit": "ansi-color-bright-blue", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-cyan": { + "background": "cyan2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-cyan" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-cyan" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-cyan", + "selectedInherits": [ + "ansi-color-bright-cyan" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "cyan2", + "height": 1, + "inherit": "ansi-color-bright-cyan", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-green": { + "background": "green2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-green" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-green" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-green", + "selectedInherits": [ + "ansi-color-bright-green" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "green2", + "height": 1, + "inherit": "ansi-color-bright-green", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-magenta": { + "background": "magenta2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-magenta" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-magenta" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-magenta", + "selectedInherits": [ + "ansi-color-bright-magenta" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "magenta2", + "height": 1, + "inherit": "ansi-color-bright-magenta", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-red": { + "background": "red2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-red" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-red" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-red", + "selectedInherits": [ + "ansi-color-bright-red" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "red2", + "height": 1, + "inherit": "ansi-color-bright-red", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-white": { + "background": "white", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-white" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-white" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-white", + "selectedInherits": [ + "ansi-color-bright-white" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "white", + "height": 1, + "inherit": "ansi-color-bright-white", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-bright-yellow": { + "background": "yellow2", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-bright-yellow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-bright-yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-bright-yellow", + "selectedInherits": [ + "ansi-color-bright-yellow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "yellow2", + "height": 1, + "inherit": "ansi-color-bright-yellow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-cyan": { + "background": "cyan3", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-cyan" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-cyan" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-cyan", + "selectedInherits": [ + "ansi-color-cyan" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "cyan3", + "height": 1, + "inherit": "ansi-color-cyan", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-green": { + "background": "green3", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-green" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-green" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-green", + "selectedInherits": [ + "ansi-color-green" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "green3", + "height": 1, + "inherit": "ansi-color-green", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-magenta": { + "background": "magenta3", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-magenta" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-magenta" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-magenta", + "selectedInherits": [ + "ansi-color-magenta" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "magenta3", + "height": 1, + "inherit": "ansi-color-magenta", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-red": { + "background": "red3", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-red" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-red" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-red", + "selectedInherits": [ + "ansi-color-red" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "red3", + "height": 1, + "inherit": "ansi-color-red", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-white": { + "background": "gray90", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-white" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-white" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-white", + "selectedInherits": [ + "ansi-color-white" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "grey90", + "height": 1, + "inherit": "ansi-color-white", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-color-yellow": { + "background": "yellow3", + "box": "nil", + "chosenGuiLight": { + "inherit": "ansi-color-yellow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "ansi-color-yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "ansi-color-yellow", + "selectedInherits": [ + "ansi-color-yellow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "yellow3", + "height": 1, + "inherit": "ansi-color-yellow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-default": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "t", + ":inherit", + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-fake-cursor": { + "background": "unspecified-bg", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ] + ], + "chosenGuiLight": { + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ] + ] + }, + "default-spec": [ + [ + "t", + ":box", + [ + ":line-width", + [ + "cons", + -1, + -1 + ] + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ] + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "ghostel-fake-cursor-box": { + "background": "white", + "box": "nil", + "chosenGuiLight": { + "inherit": "cursor" + }, + "default-spec": [ + [ + "t", + ":inherit", + "cursor" + ] + ], + "effectiveGuiLight": { + "background": "black", + "backgroundHex": "#000000", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "cursor", + "selectedInherits": [ + "cursor" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "cursor", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "git-commit-comment-action": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-comment-branch-local": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-comment-branch-remote": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-comment-detached": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-comment-file": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-comment-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-keyword": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-nonempty-second-line": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-overlong-summary": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-summary": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-trailer-token": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-commit-trailer-value": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "git-gutter:added": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "green", + "foregroundHex": "#00ff00", + "inherit": "default", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "green", + ":weight", + "bold", + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "green", + "foregroundHex": "#00ff00", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "green", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "git-gutter:deleted": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "red", + "foregroundHex": "#ff0000", + "inherit": "default", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "red", + ":weight", + "bold", + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "red", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "red", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "git-gutter:modified": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "magenta", + "foregroundHex": "#ff00ff", + "inherit": "default", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "magenta", + ":weight", + "bold", + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "magenta", + "foregroundHex": "#ff00ff", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "magenta", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "git-gutter:separator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "cyan", + "foregroundHex": "#00ffff", + "inherit": "default", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":foreground", + "cyan", + ":weight", + "bold", + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "cyan", + "foregroundHex": "#00ffff", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "cyan", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "git-gutter:unchanged": { + "background": "yellow", + "box": "nil", + "chosenGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "inherit": "default" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "yellow", + ":inherit", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":background", + "darkseagreen2" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":background", + "darkolivegreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":background", + "darkseagreen2" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":background", + "darkolivegreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":background", + "green", + ":foreground", + "black" + ], + [ + "t", + ":inverse-video", + "t" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-character-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-even-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-odd-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-stack-character-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-stack-even-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-stack-odd-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-top-character-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-top-even-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "highlight-indent-guides-top-odd-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "hl-line": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "extend": "t", + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + ":inherit", + "highlight", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "hl-todo": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#cc9393", + "foregroundHex": "#cc9393", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":bold", + "t", + ":foreground", + "#cc9393" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#cc9393", + "foregroundHex": "#cc9393", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "#cc9393", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "hl-todo-flymake-type": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "isearch": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "magenta3", + "backgroundHex": "#cd00cd", + "foreground": "lightskyblue1", + "foregroundHex": "#b0e2ff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "magenta3", + ":foreground", + "lightskyblue1" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + [ + ":background", + "palevioletred2", + ":foreground", + "brown4" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ] + ], + [ + ":background", + "magenta4", + ":foreground", + "cyan1" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + [ + ":background", + "magenta4", + ":foreground", + "cyan1" + ] + ], + [ + "t", + [ + ":inverse-video", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "magenta3", + "backgroundHex": "#cd00cd", + "box": null, + "foreground": "lightskyblue1", + "foregroundHex": "#b0e2ff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "isearch-fail": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "RosyBrown1", + "backgroundHex": "#ffc1c1" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "RosyBrown1" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + [ + ":background", + "red4" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ] + ], + [ + ":background", + "red" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + [ + ":background", + "red" + ] + ], + [ + [ + [ + "class", + "color", + "grayscale" + ] + ], + ":foreground", + "grey" + ], + [ + "t", + [ + ":inverse-video", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "RosyBrown1", + "backgroundHex": "#ffc1c1", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "json-mode-object-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "lazy-highlight": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "paleturquoise", + "backgroundHex": "#afeeee", + "distantForeground": "black", + "distantForegroundHex": "#000000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + [ + ":background", + "paleturquoise", + ":distant-foreground", + "black" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + [ + ":background", + "paleturquoise4", + ":distant-foreground", + "white" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ] + ], + [ + ":background", + "turquoise3", + ":distant-foreground", + "white" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + [ + ":background", + "turquoise3", + ":distant-foreground", + "white" + ] + ], + [ + "t", + [ + ":underline", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "paleturquoise", + "backgroundHex": "#afeeee", + "box": null, + "distantForeground": "black", + "distantForegroundHex": "#000000", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "line-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "shadow", + "default" + ] + }, + "default-spec": [ + [ + "t", + ":inherit", + [ + "shadow", + "default" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": [ + "shadow", + "default" + ], + "selectedInherits": [ + "shadow", + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "shadow", + "default" + ], + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "line-number-current-line": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "line-number" + }, + "default-spec": [ + [ + "t", + ":inherit", + "line-number" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "line-number", + "selectedInherits": [ + "line-number" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "line-number", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "link": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "RoyalBlue3", + "foregroundHex": "#3a5fcd", + "underline": "t" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "RoyalBlue3", + ":underline", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "blue", + ":underline", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "cyan1", + ":underline", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "cyan", + ":underline", + "t" + ], + [ + "t", + ":inherit", + "underline" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "RoyalBlue3", + "foregroundHex": "#3a5fcd", + "height": 1, + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "underline", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "llama-##-macro": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-call-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-call-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-call-face", + "selectedInherits": [ + "font-lock-function-call-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-call-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "llama-deleted-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "red", + ":style", + "nil" + ] + }, + "default-spec": [ + [ + [ + [ + "supports", + ":box", + "t" + ] + ], + ":box", + [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "red", + ":style", + "nil" + ] + ], + [ + [ + [ + "supports", + ":underline", + "t" + ] + ], + ":underline", + "red" + ], + [ + "t", + ":inherit", + "font-lock-warning-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "red", + ":style", + "nil" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-warning-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "llama-llama-macro": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "llama-mandatory-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-use-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-use-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-use-face", + "selectedInherits": [ + "font-lock-variable-use-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-use-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "llama-optional-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "lsp-details-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-face-highlight-read": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-face-highlight-textual": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-face-highlight-write": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-face-rename": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-inlay-hint-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-inlay-hint-parameter-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-inlay-hint-type-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-installation-buffer-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-installation-finished-buffer-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-rename-placeholder-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-signature-face": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-signature-highlight-function-argument": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lsp-signature-posframe": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "lv-separator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "grey80", + "backgroundHex": "#cccccc" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":background", + "grey80" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":background", + "grey30" + ] + ], + "effectiveGuiLight": { + "background": "grey80", + "backgroundHex": "#cccccc", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "magit-bisect-bad": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-bisect-good": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-bisect-skip": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-date": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-dimmed": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-hash": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-margin": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-name": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-blame-summary": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-current": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-local": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-remote": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-remote-head": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-upstream": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-branch-warning": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-cherry-equivalent": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-cherry-unmatched": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-added": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-added-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-base": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-base-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-conflict-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-conflict-heading-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-context": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-context-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-file-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-file-heading-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-file-heading-selection": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-hunk-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-hunk-heading-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-hunk-heading-selection": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-hunk-region": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-lines-boundary": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-lines-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-our": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-our-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-removed": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-removed-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-revision-summary": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-revision-summary-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-their": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-their-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diff-whitespace-warning": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diffstat-added": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-diffstat-removed": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-dimmed": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-filename": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-hash": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-head": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-header-line": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-header-line-key": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-header-line-log-select": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-keyword": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-keyword-squash": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-left-margin": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-log-author": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-log-date": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-log-graph": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-mode-line-process": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-mode-line-process-error": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-process-ng": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-process-ok": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-amend": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-checkout": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-cherry-pick": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-commit": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-merge": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-other": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-rebase": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-remote": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-reflog-reset": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-refname": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-refname-pullreq": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-refname-stash": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-refname-wip": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-section-child-count": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-section-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-section-heading-selection": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-section-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-section-secondary-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-done": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-drop": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-exec": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-head": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-onto": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-part": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-pick": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-sequence-stop": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-bad": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-error": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-expired": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-expired-key": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-good": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-revoked": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-signature-untrusted": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "magit-tag": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "malyon-face-bold": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "bold", + "selectedInherits": [ + "bold" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "bold", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "malyon-face-error": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "malyon-face-italic": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "italic", + "selectedInherits": [ + "italic" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "italic", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "malyon-face-plain": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "t", + ":inherit", + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "malyon-face-reverse": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default", + "inverseVideo": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "default", + ":inverse-video", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "inverseVideo": "t", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-archive": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-char": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-key", + "selectedInherits": [ + "marginalia-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-date": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-key", + "selectedInherits": [ + "marginalia-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-documentation": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "completions-annotations" + }, + "default-spec": [ + [ + "t", + ":inherit", + "completions-annotations" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "completions-annotations", + "selectedInherits": [ + "completions-annotations" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "completions-annotations", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-file-name": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-documentation" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-documentation" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "marginalia-documentation", + "selectedInherits": [ + "marginalia-documentation" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-documentation", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-file-owner": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-preprocessor-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-preprocessor-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "selectedInherits": [ + "font-lock-preprocessor-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-file-priv-dir": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-file-priv-exec": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-file-priv-link": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-file-priv-no": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-file-priv-other": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-file-priv-rare": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-file-priv-read": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-file-priv-write": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-function": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-installed": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-key": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-lighter": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-size" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-size" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-size", + "selectedInherits": [ + "marginalia-size" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-size", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-list": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-mode": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-key", + "selectedInherits": [ + "marginalia-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-modified": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-negation-char-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-negation-char-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-negation-char-face", + "selectedInherits": [ + "font-lock-negation-char-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-negation-char-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-null": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-number": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-off": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-on": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-size": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-number" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-number" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-number", + "selectedInherits": [ + "marginalia-number" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-number", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-string": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "marginalia-symbol": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "marginalia-true": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-type": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-key", + "selectedInherits": [ + "marginalia-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-value": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-key" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-key" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-key", + "selectedInherits": [ + "marginalia-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-key", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "marginalia-version": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "marginalia-number" + }, + "default-spec": [ + [ + "t", + ":inherit", + "marginalia-number" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "marginalia-number", + "selectedInherits": [ + "marginalia-number" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "marginalia-number", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-blockquote-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-doc-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-doc-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-doc-face", + "selectedInherits": [ + "font-lock-doc-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-doc-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-bold-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "bold" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "bold", + "selectedInherits": [ + "bold" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "bold", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-code-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "fixed-pitch" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "fixed-pitch" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "fixed-pitch", + "selectedInherits": [ + "fixed-pitch" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "fixed-pitch", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-comment-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-footnote-marker-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-footnote-text-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-comment-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-gfm-checkbox-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-builtin-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-delimiter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-header-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "font-lock-function-name-face" + ], + "weight": "bold" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + [ + "font-lock-function-name-face" + ], + ":weight", + "bold" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": [ + "font-lock-function-name-face" + ], + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-1": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-2": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-3": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-4": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-5": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-face-6": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "height": 1.0, + "inherit": "markdown-header-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-header-face", + ":height", + 1.0 + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1.0, + "inherit": "markdown-header-face", + "selectedInherits": [ + "markdown-header-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-header-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-header-rule-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-highlight-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "highlight" + ] + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-highlighting-face": { + "background": "yellow", + "box": "nil", + "chosenGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "yellow", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-hr-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-html-attr-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-variable-name-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-html-attr-value-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-string-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-html-entity-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-variable-name-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-html-tag-delimiter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-html-tag-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-type-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-inline-code-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ] + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + [ + "markdown-code-face", + "font-lock-constant-face" + ] + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "selectedInherits": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-italic-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "italic" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "italic" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "italic", + "selectedInherits": [ + "italic" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "italic", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-language-info-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-string-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-language-keyword-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-type-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-line-break-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face", + "underline": "t" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-constant-face", + ":underline", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-link-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "link" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "link" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "RoyalBlue3", + "foregroundHex": "#3a5fcd", + "height": 1, + "inherit": "link", + "selectedInherits": [ + "link" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "link", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "markdown-link-title-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-comment-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-list-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-markup-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "slant": "normal", + "weight": "normal" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "shadow", + ":slant", + "normal", + ":weight", + "normal" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-math-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-string-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-metadata-key-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-variable-name-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-metadata-value-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-string-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-missing-link-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-warning-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-warning-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-warning-face", + "selectedInherits": [ + "font-lock-warning-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-warning-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "markdown-plain-url-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-link-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-link-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "RoyalBlue3", + "foregroundHex": "#3a5fcd", + "height": 1, + "inherit": "markdown-link-face", + "selectedInherits": [ + "markdown-link-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-link-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "markdown-pre-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ] + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + [ + "markdown-code-face", + "font-lock-constant-face" + ] + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "selectedInherits": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "markdown-code-face", + "font-lock-constant-face" + ], + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "markdown-reference-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "markdown-markup-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "markdown-markup-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "markdown-markup-face", + "selectedInherits": [ + "markdown-markup-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "markdown-markup-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-strike-through-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "strike": "t" + }, + "default-spec": [ + [ + "t", + [ + ":strike-through", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": "t", + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "t", + "underline": "nil", + "weight": "normal" + }, + "markdown-table-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "markdown-code-face" + ] + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + [ + "markdown-code-face" + ] + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": [ + "markdown-code-face" + ], + "selectedInherits": [ + "markdown-code-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "markdown-code-face" + ], + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "markdown-url-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "font-lock-string-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "minibuffer-prompt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "magenta", + "foregroundHex": "#ff00ff" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "cyan" + ], + [ + [ + [ + "type", + "pc" + ] + ], + ":foreground", + "magenta" + ], + [ + "t", + ":foreground", + "medium blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "magenta", + "foregroundHex": "#ff00ff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "cyan", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "mode-line": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "grey75", + "backgroundHex": "#bfbfbf", + "box": [ + ":line-width", + -1, + ":style", + "released-button" + ], + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + [ + [ + "class", + "color", + "grayscale" + ], + [ + "min-colors", + 88 + ] + ], + ":box", + [ + ":line-width", + -1, + ":style", + "released-button" + ], + ":background", + "grey75", + ":foreground", + "black" + ], + [ + "t", + ":inverse-video", + "t" + ] + ], + "effectiveGuiLight": { + "background": "grey75", + "backgroundHex": "#bfbfbf", + "box": [ + ":line-width", + -1, + ":style", + "released-button" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "mode-line-inactive": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "grey90", + "backgroundHex": "#e5e5e5", + "box": [ + ":line-width", + -1, + ":color", + "grey75", + ":style", + "nil" + ], + "foreground": "grey20", + "foregroundHex": "#333333", + "inherit": "mode-line", + "weight": "light" + }, + "default-spec": [ + [ + "default", + ":inherit", + "mode-line" + ], + [ + [ + [ + "class", + "color", + "grayscale" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":weight", + "light", + ":box", + [ + ":line-width", + -1, + ":color", + "grey75", + ":style", + "nil" + ], + ":foreground", + "grey20", + ":background", + "grey90" + ], + [ + [ + [ + "class", + "color", + "grayscale" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":weight", + "light", + ":box", + [ + ":line-width", + -1, + ":color", + "grey40", + ":style", + "nil" + ], + ":foreground", + "grey80", + ":background", + "grey30" + ] + ], + "effectiveGuiLight": { + "background": "grey90", + "backgroundHex": "#e5e5e5", + "box": [ + ":line-width", + -1, + ":color", + "grey75", + ":style", + "nil" + ], + "foreground": "grey20", + "foregroundHex": "#333333", + "height": 1, + "inherit": "mode-line", + "selectedInherits": [ + "mode-line" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "light" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "mode-line", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-blue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6A9FB5", + "foregroundHex": "#6a9fb5" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#6A9FB5" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#6A9FB5" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6A9FB5", + "foregroundHex": "#6a9fb5", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#6A9FB5", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-blue-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#2188b6", + "foregroundHex": "#2188b6" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#2188b6" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#2188b6" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#2188b6", + "foregroundHex": "#2188b6", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#2188b6", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-completion-dir-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "t", + "nil" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-cyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#75B5AA", + "foregroundHex": "#75b5aa" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#75B5AA" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#75B5AA" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#75B5AA", + "foregroundHex": "#75b5aa", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#75B5AA", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-cyan-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#0595bd", + "foregroundHex": "#0595bd" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#61dafb" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#0595bd" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#0595bd", + "foregroundHex": "#0595bd", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#61dafb", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dblue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#446674", + "foregroundHex": "#446674" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#446674" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#446674" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#446674", + "foregroundHex": "#446674", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#446674", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dcyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#48746D", + "foregroundHex": "#48746d" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#48746D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#48746D" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#48746D", + "foregroundHex": "#48746d", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#48746D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dgreen": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6D8143", + "foregroundHex": "#6d8143" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#6D8143" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#6D8143" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6D8143", + "foregroundHex": "#6d8143", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#6D8143", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dmaroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#72584B", + "foregroundHex": "#72584b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#72584B" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#72584B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#72584B", + "foregroundHex": "#72584b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#72584B", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dorange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#915B2D", + "foregroundHex": "#915b2d" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#915B2D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#915B2D" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#915B2D", + "foregroundHex": "#915b2d", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#915B2D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dpink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#7E5D5F", + "foregroundHex": "#7e5d5f" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B18286" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#7E5D5F" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#7E5D5F", + "foregroundHex": "#7e5d5f", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B18286", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dpurple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#694863", + "foregroundHex": "#694863" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#694863" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#694863" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#694863", + "foregroundHex": "#694863", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#694863", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dred": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#843031", + "foregroundHex": "#843031" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#843031" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#843031" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#843031", + "foregroundHex": "#843031", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#843031", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dsilver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#838484", + "foregroundHex": "#838484" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#838484" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#838484" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#838484", + "foregroundHex": "#838484", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#838484", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-dyellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#B48D56", + "foregroundHex": "#b48d56" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B48D56" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#B48D56" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#B48D56", + "foregroundHex": "#b48d56", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B48D56", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-green": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#90A959", + "foregroundHex": "#90a959" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#90A959" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#90A959" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#90A959", + "foregroundHex": "#90a959", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#90A959", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lblue": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#677174", + "foregroundHex": "#677174" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#8FD7F4" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#677174" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#677174", + "foregroundHex": "#677174", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#8FD7F4", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lcyan": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#2C7D6E", + "foregroundHex": "#2c7d6e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#A5FDEC" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#2C7D6E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#2C7D6E", + "foregroundHex": "#2c7d6e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#A5FDEC", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lgreen": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#3D6837", + "foregroundHex": "#3d6837" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#C6E87A" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#3D6837" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#3D6837", + "foregroundHex": "#3d6837", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#C6E87A", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lmaroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#CE7A4E", + "foregroundHex": "#ce7a4e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#CE7A4E" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#CE7A4E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#CE7A4E", + "foregroundHex": "#ce7a4e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#CE7A4E", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lorange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FFA500", + "foregroundHex": "#ffa500" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFA500" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FFA500" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FFA500", + "foregroundHex": "#ffa500", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFA500", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lpink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FF505B", + "foregroundHex": "#ff505b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFBDC1" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FF505B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FF505B", + "foregroundHex": "#ff505b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFBDC1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lpurple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#E69DD6", + "foregroundHex": "#e69dd6" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#E69DD6" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#E69DD6" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#E69DD6", + "foregroundHex": "#e69dd6", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#E69DD6", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lred": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#EB595A", + "foregroundHex": "#eb595a" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#EB595A" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#EB595A" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#EB595A", + "foregroundHex": "#eb595a", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#EB595A", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lsilver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#7F7869", + "foregroundHex": "#7f7869" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#B9B6AA" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#7F7869" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#7F7869", + "foregroundHex": "#7f7869", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#B9B6AA", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-lyellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FF9300", + "foregroundHex": "#ff9300" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFC16D" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FF9300" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FF9300", + "foregroundHex": "#ff9300", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFC16D", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-maroon": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#8F5536", + "foregroundHex": "#8f5536" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#8F5536" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#8F5536" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#8F5536", + "foregroundHex": "#8f5536", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#8F5536", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-orange": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#D4843E", + "foregroundHex": "#d4843e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#D4843E" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#D4843E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#D4843E", + "foregroundHex": "#d4843e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#D4843E", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-pink": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FC505B", + "foregroundHex": "#fc505b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#F2B4B8" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FC505B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FC505B", + "foregroundHex": "#fc505b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#F2B4B8", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-purple": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#68295B", + "foregroundHex": "#68295b" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#AA759F" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#68295B" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#68295B", + "foregroundHex": "#68295b", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#AA759F", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-purple-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#5D54E1", + "foregroundHex": "#5d54e1" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#5D54E1" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#5D54E1" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#5D54E1", + "foregroundHex": "#5d54e1", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#5D54E1", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-red": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#AC4142", + "foregroundHex": "#ac4142" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#AC4142" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#AC4142" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#AC4142", + "foregroundHex": "#ac4142", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#AC4142", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-red-alt": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#843031", + "foregroundHex": "#843031" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#ce5643" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#843031" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#843031", + "foregroundHex": "#843031", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#ce5643", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-silver": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#716E68", + "foregroundHex": "#716e68" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#716E68" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#716E68" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#716E68", + "foregroundHex": "#716e68", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#716E68", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "nerd-icons-yellow": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#FFCC0E", + "foregroundHex": "#ffcc0e" + }, + "default-spec": [ + [ + [ + [ + "background", + "dark" + ] + ], + ":foreground", + "#FFD446" + ], + [ + [ + [ + "background", + "light" + ] + ], + ":foreground", + "#FFCC0E" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#FFCC0E", + "foregroundHex": "#ffcc0e", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#FFD446", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "orderless-match-face-0": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#223fbf", + "foregroundHex": "#223fbf", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#72a4ff" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#223fbf" + ], + [ + "t", + ":foreground", + "blue" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#223fbf", + "foregroundHex": "#223fbf", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "blue", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "orderless-match-face-1": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#8f0075", + "foregroundHex": "#8f0075", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#ed92f8" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#8f0075" + ], + [ + "t", + ":foreground", + "magenta" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#8f0075", + "foregroundHex": "#8f0075", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "magenta", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "orderless-match-face-2": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#145a00", + "foregroundHex": "#145a00", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#90d800" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#145a00" + ], + [ + "t", + ":foreground", + "green" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#145a00", + "foregroundHex": "#145a00", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "green", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "orderless-match-face-3": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#804000", + "foregroundHex": "#804000", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#f0ce43" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#804000" + ], + [ + "t", + ":foreground", + "yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#804000", + "foregroundHex": "#804000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "yellow", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "org-roam-dailies-calendar-note": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-dim": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-header-line": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-olp": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-preview-heading": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-preview-heading-highlight": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-preview-heading-selection": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-preview-region": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-roam-title": { + "chosenGuiLight": {}, + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": false + }, + "org-superstar-first": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "org-warning" + }, + "default-spec": [ + [ + "default", + ":inherit", + "org-warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "org-warning", + "selectedInherits": [ + "org-warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "org-warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "org-superstar-header-bullet": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "org-superstar-item": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "default" + }, + "default-spec": [ + [ + "default", + ":inherit", + "default" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "org-superstar-leading": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "gray", + "foregroundHex": "#bebebe", + "inherit": "default" + }, + "default-spec": [ + [ + "default", + ":inherit", + "default", + ":foreground", + "gray" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "gray", + "foregroundHex": "#bebebe", + "height": 1, + "inherit": "default", + "selectedInherits": [ + "default" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "gray", + "height": 1, + "inherit": "default", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "prescient-primary-highlight": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "prescient-secondary-highlight": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "prescient-primary-highlight", + "underline": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "prescient-primary-highlight", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "prescient-primary-highlight", + "selectedInherits": [ + "prescient-primary-highlight" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "prescient-primary-highlight", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "rainbow-delimiters-base-error-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#88090B", + "foregroundHex": "#88090b", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + "t", + [ + ":foreground", + "#88090B" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#88090B", + "foregroundHex": "#88090b", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#88090B", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-base-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "unspecified" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "unspecified" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "unspecified", + "selectedInherits": [ + "unspecified" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-1-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#707183", + "foregroundHex": "#707183", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#707183" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "grey55" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#707183", + "foregroundHex": "#707183", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-2-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#7388d6", + "foregroundHex": "#7388d6", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#7388d6" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#93a8c6" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#7388d6", + "foregroundHex": "#7388d6", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-3-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#909183", + "foregroundHex": "#909183", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#909183" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#b0b1a3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#909183", + "foregroundHex": "#909183", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-4-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#709870", + "foregroundHex": "#709870", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#709870" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#97b098" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#709870", + "foregroundHex": "#709870", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-5-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#907373", + "foregroundHex": "#907373", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#907373" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#aebed8" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#907373", + "foregroundHex": "#907373", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-6-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#6276ba", + "foregroundHex": "#6276ba", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#6276ba" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#b0b0b3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#6276ba", + "foregroundHex": "#6276ba", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-7-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#858580", + "foregroundHex": "#858580", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#858580" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#90a890" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#858580", + "foregroundHex": "#858580", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-8-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#80a880", + "foregroundHex": "#80a880", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#80a880" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#a2b6da" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#80a880", + "foregroundHex": "#80a880", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-depth-9-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#887070", + "foregroundHex": "#887070", + "inherit": "rainbow-delimiters-base-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-face" + ] + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#887070" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#9cb6ad" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#887070", + "foregroundHex": "#887070", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "selectedInherits": [ + "rainbow-delimiters-base-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "rainbow-delimiters-base-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-mismatched-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "rainbow-delimiters-unmatched-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-unmatched-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#88090B", + "foregroundHex": "#88090b", + "height": 1, + "inherit": "rainbow-delimiters-unmatched-face", + "selectedInherits": [ + "rainbow-delimiters-unmatched-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#88090B", + "height": 1, + "inherit": "rainbow-delimiters-unmatched-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "rainbow-delimiters-unmatched-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "rainbow-delimiters-base-error-face" + }, + "default-spec": [ + [ + "default", + [ + ":inherit", + "rainbow-delimiters-base-error-face" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#88090B", + "foregroundHex": "#88090b", + "height": 1, + "inherit": "rainbow-delimiters-base-error-face", + "selectedInherits": [ + "rainbow-delimiters-base-error-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#88090B", + "height": 1, + "inherit": "rainbow-delimiters-base-error-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "region": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "extend": "t" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":background", + "blue3", + ":extend", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":background", + "lightgoldenrod2", + ":extend", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":background", + "blue3", + ":extend", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":background", + "lightgoldenrod2", + ":extend", + "t" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":background", + "blue", + ":foreground", + "white", + ":extend", + "t" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":background", + "gray", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "show-paren-match": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "turquoise", + "backgroundHex": "#40e0d0" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":background", + "turquoise" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":background", + "steelblue3" + ], + [ + [ + [ + "background", + "dark" + ], + [ + "min-colors", + 4 + ] + ], + ":background", + "grey50" + ], + [ + [ + [ + "background", + "light" + ], + [ + "min-colors", + 4 + ] + ], + ":background", + "gray" + ], + [ + "t", + ":inherit", + "underline" + ] + ], + "effectiveGuiLight": { + "background": "turquoise", + "backgroundHex": "#40e0d0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "underline", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "show-paren-mismatch": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "purple", + "backgroundHex": "#a020f0", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ] + ], + [ + ":foreground", + "white", + ":background", + "purple" + ] + ], + [ + "t", + [ + ":inverse-video", + "t" + ] + ] + ], + "effectiveGuiLight": { + "background": "purple", + "backgroundHex": "#a020f0", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "success": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "ForestGreen" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Green1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Green" + ], + [ + [ + [ + "class", + "color" + ] + ], + ":foreground", + "green" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "symbol-overlay-default-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "highlight" + ] + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-1": { + "background": "dodger blue", + "box": "nil", + "chosenGuiLight": { + "background": "dodger blue", + "backgroundHex": "#1e90ff", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "dodger blue", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "dodger blue", + "backgroundHex": "#1e90ff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-2": { + "background": "hot pink", + "box": "nil", + "chosenGuiLight": { + "background": "hot pink", + "backgroundHex": "#ff69b4", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "hot pink", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "hot pink", + "backgroundHex": "#ff69b4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-3": { + "background": "yellow", + "box": "nil", + "chosenGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "yellow", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-4": { + "background": "orchid", + "box": "nil", + "chosenGuiLight": { + "background": "orchid", + "backgroundHex": "#da70d6", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "orchid", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "orchid", + "backgroundHex": "#da70d6", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-5": { + "background": "red", + "box": "nil", + "chosenGuiLight": { + "background": "red", + "backgroundHex": "#ff0000", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "red", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "red", + "backgroundHex": "#ff0000", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-6": { + "background": "salmon", + "box": "nil", + "chosenGuiLight": { + "background": "salmon", + "backgroundHex": "#fa8072", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "salmon", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "salmon", + "backgroundHex": "#fa8072", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-7": { + "background": "spring green", + "box": "nil", + "chosenGuiLight": { + "background": "spring green", + "backgroundHex": "#00ff7f", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "spring green", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "spring green", + "backgroundHex": "#00ff7f", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "symbol-overlay-face-8": { + "background": "turquoise", + "box": "nil", + "chosenGuiLight": { + "background": "turquoise", + "backgroundHex": "#40e0d0", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + [ + ":background", + "turquoise", + ":foreground", + "black" + ] + ] + ], + "effectiveGuiLight": { + "background": "turquoise", + "backgroundHex": "#40e0d0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "tmr-description": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "bold", + "selectedInherits": [ + "bold" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "bold", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-duration": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": "nil", + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "tmr-end-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-finished": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "error" + }, + "default-spec": [ + [ + "t", + ":inherit", + "error" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Red1", + "foregroundHex": "#ff0000", + "height": 1, + "inherit": "error", + "selectedInherits": [ + "error" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "error", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-is-acknowledged": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-must-be-acknowledged": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "warning" + }, + "default-spec": [ + [ + "t", + ":inherit", + "warning" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "inherit": "warning", + "selectedInherits": [ + "warning" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "warning", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-start-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "success" + }, + "default-spec": [ + [ + "t", + ":inherit", + "success" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "ForestGreen", + "foregroundHex": "#228b22", + "height": 1, + "inherit": "success", + "selectedInherits": [ + "success" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "success", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-tabulated-acknowledgement": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "bold", + "selectedInherits": [ + "bold" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "bold", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "tmr-tabulated-description": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-doc-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-doc-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-doc-face", + "selectedInherits": [ + "font-lock-doc-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-doc-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "tmr-tabulated-end-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#800040", + "foregroundHex": "#800040" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#800040" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#e59fc6" + ], + [ + "t", + ":foreground", + "magenta" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#800040", + "foregroundHex": "#800040", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "magenta", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "tmr-tabulated-remaining-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#603f00", + "foregroundHex": "#603f00" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#603f00" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#deba66" + ], + [ + "t", + ":foreground", + "yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#603f00", + "foregroundHex": "#603f00", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "yellow", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "tmr-tabulated-start-time": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#004476", + "foregroundHex": "#004476" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "#004476" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "#c0d0ef" + ], + [ + "t", + ":foreground", + "cyan" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#004476", + "foregroundHex": "#004476", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "cyan", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-active-infix": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + ":inherit", + "highlight" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-delimiter": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-disabled-suffix": { + "background": "red", + "box": "nil", + "chosenGuiLight": { + "background": "red", + "backgroundHex": "#ff0000", + "foreground": "black", + "foregroundHex": "#000000", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":background", + "red", + ":foreground", + "black", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "red", + "backgroundHex": "#ff0000", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-enabled-suffix": { + "background": "green", + "box": "nil", + "chosenGuiLight": { + "background": "green", + "backgroundHex": "#00ff00", + "foreground": "black", + "foregroundHex": "#000000", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":background", + "green", + ":foreground", + "black", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "green", + "backgroundHex": "#00ff00", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-heading": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-higher-level": { + "background": "unspecified-bg", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "grey60" + ], + "chosenGuiLight": { + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "grey60" + ] + }, + "default-spec": [ + [ + "t", + ":box", + [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "grey60" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "grey60" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-inactive-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-inactive-value": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-inapt-argument": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-inapt-suffix": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "transient-key-exit": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#aa2222", + "foregroundHex": "#aa2222", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#aa2222" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#ffdddd" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#aa2222", + "foregroundHex": "#aa2222", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key-noop": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "grey80", + "foregroundHex": "#cccccc", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "grey80" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "grey30" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "grey80", + "foregroundHex": "#cccccc", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key-recurse": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#2266ff", + "foregroundHex": "#2266ff", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#2266ff" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#2299ff" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#2266ff", + "foregroundHex": "#2266ff", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key-return": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#aaaa11", + "foregroundHex": "#aaaa11", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#aaaa11" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#ffffcc" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#aaaa11", + "foregroundHex": "#aaaa11", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key-stack": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#dd4488", + "foregroundHex": "#dd4488", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#dd4488" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#ff6699" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#dd4488", + "foregroundHex": "#dd4488", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-key-stay": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#22aa22", + "foregroundHex": "#22aa22", + "inherit": "transient-key" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "background", + "light" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#22aa22" + ], + [ + [ + [ + "class", + "color" + ], + [ + "background", + "dark" + ] + ], + ":inherit", + "transient-key", + ":foreground", + "#ddffdd" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#22aa22", + "foregroundHex": "#22aa22", + "height": 1, + "inherit": "transient-key", + "selectedInherits": [ + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-mismatched-key": { + "background": "unspecified-bg", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "magenta" + ], + "chosenGuiLight": { + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "magenta" + ] + }, + "default-spec": [ + [ + "t", + ":box", + [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "magenta" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "magenta" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-nonstandard-key": { + "background": "unspecified-bg", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "cyan" + ], + "chosenGuiLight": { + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "cyan" + ] + }, + "default-spec": [ + [ + "t", + ":box", + [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "cyan" + ] + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": [ + ":line-width", + [ + "cons", + -1, + -1 + ], + ":color", + "cyan" + ], + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-unreachable": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-unreachable-key": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": [ + "shadow", + "transient-key" + ], + "weight": "normal" + }, + "default-spec": [ + [ + "t", + ":inherit", + [ + "shadow", + "transient-key" + ], + ":weight", + "normal" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": [ + "shadow", + "transient-key" + ], + "selectedInherits": [ + "shadow", + "transient-key" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": [ + "shadow", + "transient-key" + ], + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "transient-value": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "twentyfortyeight-face-1024": { + "background": "gold", + "box": "nil", + "chosenGuiLight": { + "background": "gold", + "backgroundHex": "#ffd700", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "gold", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "gold", + "backgroundHex": "#ffd700", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-128": { + "background": "dark red", + "box": "nil", + "chosenGuiLight": { + "background": "dark red", + "backgroundHex": "#8b0000", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + "t", + ":background", + "dark red", + ":foreground", + "white" + ] + ], + "effectiveGuiLight": { + "background": "dark red", + "backgroundHex": "#8b0000", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "white", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-16": { + "background": "orange", + "box": "nil", + "chosenGuiLight": { + "background": "orange", + "backgroundHex": "#ffa500", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "orange", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "orange", + "backgroundHex": "#ffa500", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-2": { + "background": "khaki", + "box": "nil", + "chosenGuiLight": { + "background": "khaki", + "backgroundHex": "#f0e68c", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "khaki", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "khaki", + "backgroundHex": "#f0e68c", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-2048": { + "background": "yellow", + "box": "nil", + "chosenGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "yellow", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "yellow", + "backgroundHex": "#ffff00", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-256": { + "background": "dark magenta", + "box": "nil", + "chosenGuiLight": { + "background": "dark magenta", + "backgroundHex": "#8b008b", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + "t", + ":background", + "dark magenta", + ":foreground", + "white" + ] + ], + "effectiveGuiLight": { + "background": "dark magenta", + "backgroundHex": "#8b008b", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "white", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-32": { + "background": "orange red", + "box": "nil", + "chosenGuiLight": { + "background": "orange red", + "backgroundHex": "#ff4500", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "orange red", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "orange red", + "backgroundHex": "#ff4500", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-4": { + "background": "burlywood", + "box": "nil", + "chosenGuiLight": { + "background": "burlywood", + "backgroundHex": "#deb887", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "burlywood", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "burlywood", + "backgroundHex": "#deb887", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-512": { + "background": "magenta", + "box": "nil", + "chosenGuiLight": { + "background": "magenta", + "backgroundHex": "#ff00ff", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "magenta", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "magenta", + "backgroundHex": "#ff00ff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-64": { + "background": "firebrick", + "box": "nil", + "chosenGuiLight": { + "background": "firebrick", + "backgroundHex": "#b22222", + "foreground": "white", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + "t", + ":background", + "firebrick", + ":foreground", + "white" + ] + ], + "effectiveGuiLight": { + "background": "firebrick", + "backgroundHex": "#b22222", + "box": null, + "foreground": "white", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "white", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "twentyfortyeight-face-8": { + "background": "orange3", + "box": "nil", + "chosenGuiLight": { + "background": "orange3", + "backgroundHex": "#cd8500", + "foreground": "black", + "foregroundHex": "#000000" + }, + "default-spec": [ + [ + "t", + ":background", + "orange3", + ":foreground", + "black" + ] + ], + "effectiveGuiLight": { + "background": "orange3", + "backgroundHex": "#cd8500", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "black", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "vertical-border": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": [ + [ + [ + [ + "type", + "tty" + ] + ], + ":inherit", + "mode-line-inactive" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "mode-line-inactive", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "vertico-current": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "extend": "t", + "inherit": "highlight" + }, + "default-spec": [ + [ + "t", + ":inherit", + "highlight", + ":extend", + "t" + ] + ], + "effectiveGuiLight": { + "background": "darkseagreen2", + "backgroundHex": "#b4eeb4", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "highlight", + "selectedInherits": [ + "highlight" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "highlight", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "vertico-group-separator": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "vertico-group-title", + "strike": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "vertico-group-title", + ":strike-through", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "vertico-group-title", + "selectedInherits": [ + "vertico-group-title" + ], + "slant": "italic", + "strike": "t", + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "vertico-group-title", + "slant": "italic", + "strike": "t", + "underline": "nil", + "weight": "normal" + }, + "vertico-group-title": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "vertico-multiline": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "shadow" + }, + "default-spec": [ + [ + "t", + ":inherit", + "shadow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "shadow", + "selectedInherits": [ + "shadow" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "shadow", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "warning": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "weight": "bold" + }, + "default-spec": [ + [ + "default", + ":weight", + "bold" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ] + ], + ":foreground", + "DarkOrange" + ], + [ + [ + [ + "class", + "color" + ] + ], + ":foreground", + "yellow" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DarkOrange", + "foregroundHex": "#ff8c00", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-annotation-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-annotation-html-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-annotation-face", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-annotation-face", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-annotation-face", + "selectedInherits": [ + "web-mode-annotation-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-annotation-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-annotation-tag-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-annotation-face", + "underline": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-annotation-face", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-annotation-face", + "selectedInherits": [ + "web-mode-annotation-face" + ], + "slant": "italic", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-annotation-face", + "slant": "italic", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "web-mode-annotation-type-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-annotation-face", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-annotation-face", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-annotation-face", + "selectedInherits": [ + "web-mode-annotation-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-annotation-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-annotation-value-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-annotation-face", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-annotation-face", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-annotation-face", + "selectedInherits": [ + "web-mode-annotation-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-annotation-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-block-attr-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#8fbc8f", + "foregroundHex": "#8fbc8f" + }, + "default-spec": [ + [ + "t", + ":foreground", + "#8fbc8f" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#8fbc8f", + "foregroundHex": "#8fbc8f", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#8fbc8f", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-block-attr-value-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "#5f9ea0", + "foregroundHex": "#5f9ea0" + }, + "default-spec": [ + [ + "t", + ":foreground", + "#5f9ea0" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "#5f9ea0", + "foregroundHex": "#5f9ea0", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#5f9ea0", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-block-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-block-control-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-preprocessor-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-preprocessor-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "selectedInherits": [ + "font-lock-preprocessor-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-block-delimiter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-preprocessor-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-preprocessor-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "selectedInherits": [ + "font-lock-preprocessor-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-block-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":background", + "Black" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":background", + "LightYellow1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":background", + "Grey18" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":background", + "LightYellow1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":background", + "Black" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":background", + "Grey" + ] + ], + "effectiveGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-block-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-bold-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":weight", + "bold" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-builtin-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-comment-face", + "selectedInherits": [ + "font-lock-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-comment-keyword-face": { + "background": "unspecified-bg", + "box": 1, + "chosenGuiLight": { + "box": "t", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":weight", + "bold", + ":box", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-constant-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "web-mode-css-at-rule-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-constant-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-constant-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-constant-face", + "selectedInherits": [ + "font-lock-constant-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-constant-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "web-mode-css-color-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-function-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-priority-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-property-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-pseudo-class-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-builtin-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-builtin-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-builtin-face", + "selectedInherits": [ + "font-lock-builtin-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-builtin-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-selector-class-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-selector-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-selector-tag-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-css-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-css-variable-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-variable-name-face", + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-variable-name-face", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "web-mode-variable-name-face", + "selectedInherits": [ + "web-mode-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-current-column-highlight-face": { + "background": "#3e3c36", + "box": "nil", + "chosenGuiLight": { + "background": "#3e3c36", + "backgroundHex": "#3e3c36" + }, + "default-spec": [ + [ + "t", + ":background", + "#3e3c36" + ] + ], + "effectiveGuiLight": { + "background": "#3e3c36", + "backgroundHex": "#3e3c36", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-current-element-highlight-face": { + "background": "#000000", + "box": "nil", + "chosenGuiLight": { + "background": "#000000", + "backgroundHex": "#000000", + "foreground": "#ffffff", + "foregroundHex": "#ffffff" + }, + "default-spec": [ + [ + "t", + ":background", + "#000000", + ":foreground", + "#ffffff" + ] + ], + "effectiveGuiLight": { + "background": "#000000", + "backgroundHex": "#000000", + "box": null, + "foreground": "#ffffff", + "foregroundHex": "#ffffff", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "#ffffff", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-doctype-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Grey", + "foregroundHex": "#bebebe" + }, + "default-spec": [ + [ + "t", + ":foreground", + "Grey" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Grey", + "foregroundHex": "#bebebe", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "Grey", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-error-face": { + "background": "red", + "box": "nil", + "chosenGuiLight": { + "background": "red", + "backgroundHex": "#ff0000" + }, + "default-spec": [ + [ + "t", + ":background", + "red" + ] + ], + "effectiveGuiLight": { + "background": "red", + "backgroundHex": "#ff0000", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-filter-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-folded-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "underline": "t" + }, + "default-spec": [ + [ + "t", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "web-mode-function-call-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-function-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-function-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-function-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Blue1", + "foregroundHex": "#0000ff", + "height": 1, + "inherit": "font-lock-function-name-face", + "selectedInherits": [ + "font-lock-function-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-function-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-html-attr-custom-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-html-attr-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-html-attr-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "inherit": "web-mode-html-attr-name-face", + "selectedInherits": [ + "web-mode-html-attr-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-html-attr-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-attr-engine-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-block-delimiter-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-block-delimiter-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "web-mode-block-delimiter-face", + "selectedInherits": [ + "web-mode-block-delimiter-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-block-delimiter-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-html-attr-equal-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-html-attr-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-html-attr-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "inherit": "web-mode-html-attr-name-face", + "selectedInherits": [ + "web-mode-html-attr-name-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-html-attr-name-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-attr-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Snow4", + "foregroundHex": "#8b8989" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Snow4" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Grey13" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":foreground", + "Snow4" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-attr-value-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-entity-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-tag-bracket-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Grey14", + "foregroundHex": "#242424" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Grey14" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Grey14" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "Snow3" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":foreground", + "Snow3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Grey14", + "foregroundHex": "#242424", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-tag-custom-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-html-tag-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-html-tag-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "inherit": "web-mode-html-tag-face", + "selectedInherits": [ + "web-mode-html-tag-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-html-tag-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-tag-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Snow4", + "foregroundHex": "#8b8989" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow4" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Snow4" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":foreground", + "Snow4" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":foreground", + "Grey15" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":foreground", + "Snow4" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":foreground", + "Snow4" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-html-tag-namespaced-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-block-control-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-block-control-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "web-mode-block-control-face", + "selectedInherits": [ + "web-mode-block-control-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-block-control-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-html-tag-unclosed-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-html-tag-face", + "underline": "t" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-html-tag-face", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow4", + "foregroundHex": "#8b8989", + "height": 1, + "inherit": "web-mode-html-tag-face", + "selectedInherits": [ + "web-mode-html-tag-face" + ], + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-html-tag-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "web-mode-inlay-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0" + }, + "default-spec": [ + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "dark" + ] + ], + ":background", + "Black" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 88 + ], + [ + "background", + "light" + ] + ], + ":background", + "LightYellow1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "dark" + ] + ], + ":background", + "Brey18" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 16 + ], + [ + "background", + "light" + ] + ], + ":background", + "LightYellow1" + ], + [ + [ + [ + "class", + "color" + ], + [ + "min-colors", + 8 + ] + ], + ":background", + "Black" + ], + [ + [ + [ + "type", + "tty" + ], + [ + "class", + "mono" + ] + ], + ":inverse-video", + "t" + ], + [ + "t", + ":background", + "Grey" + ] + ], + "effectiveGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-interpolate-color1-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-interpolate-color2-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-interpolate-color3-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-interpolate-color4-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-italic-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "slant": "italic" + }, + "default-spec": [ + [ + "t", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-javascript-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-javascript-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-json-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-json-context-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "orchid3", + "foregroundHex": "#cd69c9" + }, + "default-spec": [ + [ + "t", + ":foreground", + "orchid3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "orchid3", + "foregroundHex": "#cd69c9", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "orchid3", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-json-key-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "plum", + "foregroundHex": "#dda0dd" + }, + "default-spec": [ + [ + "t", + ":foreground", + "plum" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "plum", + "foregroundHex": "#dda0dd", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "plum", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-json-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-jsx-depth-1-face": { + "background": "#000053", + "box": "nil", + "chosenGuiLight": { + "background": "#000053", + "backgroundHex": "#000053" + }, + "default-spec": [ + [ + "t", + ":background", + "#000053" + ] + ], + "effectiveGuiLight": { + "background": "#000053", + "backgroundHex": "#000053", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-jsx-depth-2-face": { + "background": "#001970", + "box": "nil", + "chosenGuiLight": { + "background": "#001970", + "backgroundHex": "#001970" + }, + "default-spec": [ + [ + "t", + ":background", + "#001970" + ] + ], + "effectiveGuiLight": { + "background": "#001970", + "backgroundHex": "#001970", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-jsx-depth-3-face": { + "background": "#002984", + "box": "nil", + "chosenGuiLight": { + "background": "#002984", + "backgroundHex": "#002984" + }, + "default-spec": [ + [ + "t", + ":background", + "#002984" + ] + ], + "effectiveGuiLight": { + "background": "#002984", + "backgroundHex": "#002984", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-jsx-depth-4-face": { + "background": "#49599a", + "box": "nil", + "chosenGuiLight": { + "background": "#49599a", + "backgroundHex": "#49599a" + }, + "default-spec": [ + [ + "t", + ":background", + "#49599a" + ] + ], + "effectiveGuiLight": { + "background": "#49599a", + "backgroundHex": "#49599a", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-jsx-depth-5-face": { + "background": "#9499b7", + "box": "nil", + "chosenGuiLight": { + "background": "#9499b7", + "backgroundHex": "#9499b7" + }, + "default-spec": [ + [ + "t", + ":background", + "#9499b7" + ] + ], + "effectiveGuiLight": { + "background": "#9499b7", + "backgroundHex": "#9499b7", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-keyword-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-keyword-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-keyword-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-keyword-face", + "selectedInherits": [ + "font-lock-keyword-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-keyword-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-param-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "Snow3", + "foregroundHex": "#cdc9c9" + }, + "default-spec": [ + [ + "t", + ":foreground", + "Snow3" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Snow3", + "foregroundHex": "#cdc9c9", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "Snow3", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-part-comment-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-comment-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-comment-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-comment-face", + "selectedInherits": [ + "web-mode-comment-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-comment-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-part-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-block-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-block-face" + ] + ], + "effectiveGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "web-mode-block-face", + "selectedInherits": [ + "web-mode-block-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-block-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-part-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "web-mode-string-face", + "selectedInherits": [ + "web-mode-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-preprocessor-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-preprocessor-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-preprocessor-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "LightGray", + "foregroundHex": "#d3d3d3", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "selectedInherits": [ + "font-lock-preprocessor-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-preprocessor-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-script-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-part-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-part-face" + ] + ], + "effectiveGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "web-mode-part-face", + "selectedInherits": [ + "web-mode-part-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-part-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-sql-keyword-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "slant": "italic", + "weight": "bold" + }, + "default-spec": [ + [ + "t", + ":weight", + "bold", + ":slant", + "italic" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-string-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-string-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-string-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "DimGray", + "foregroundHex": "#696969", + "height": 1, + "inherit": "font-lock-string-face", + "selectedInherits": [ + "font-lock-string-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-string-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-style-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "web-mode-part-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "web-mode-part-face" + ] + ], + "effectiveGuiLight": { + "background": "LightYellow1", + "backgroundHex": "#ffffe0", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "web-mode-part-face", + "selectedInherits": [ + "web-mode-part-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "web-mode-part-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-symbol-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "foreground": "goldenrod2", + "foregroundHex": "#eeb422" + }, + "default-spec": [ + [ + "t", + ":foreground", + "goldenrod2" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "goldenrod2", + "foregroundHex": "#eeb422", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "goldenrod2", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "web-mode-type-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-type-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-type-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-type-face", + "selectedInherits": [ + "font-lock-type-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-type-face", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "bold" + }, + "web-mode-underline-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "underline": "t" + }, + "default-spec": [ + [ + "t", + ":underline", + "t" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": "t", + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "t", + "weight": "normal" + }, + "web-mode-variable-name-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-variable-name-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-variable-name-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "Gray90", + "foregroundHex": "#e5e5e5", + "height": 1, + "inherit": "font-lock-variable-name-face", + "selectedInherits": [ + "font-lock-variable-name-face" + ], + "slant": "italic", + "strike": null, + "underline": null, + "weight": "bold" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-variable-name-face", + "slant": "italic", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-warning-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "font-lock-warning-face" + }, + "default-spec": [ + [ + "t", + ":inherit", + "font-lock-warning-face" + ] + ], + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "font-lock-warning-face", + "selectedInherits": [ + "font-lock-warning-face" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "font-lock-warning-face", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "bold" + }, + "web-mode-whitespace-face": { + "background": "DarkOrchid4", + "box": "nil", + "chosenGuiLight": { + "background": "DarkOrchid4", + "backgroundHex": "#68228b" + }, + "default-spec": [ + [ + "t", + ":background", + "DarkOrchid4" + ] + ], + "effectiveGuiLight": { + "background": "DarkOrchid4", + "backgroundHex": "#68228b", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "yas--field-debug-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": {}, + "default-spec": "nil", + "effectiveGuiLight": { + "background": "white", + "backgroundHex": "#ffffff", + "box": null, + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "nil", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + }, + "yas-field-highlight-face": { + "background": "unspecified-bg", + "box": "nil", + "chosenGuiLight": { + "inherit": "region" + }, + "default-spec": [ + [ + "t", + [ + ":inherit", + "region" + ] + ] + ], + "effectiveGuiLight": { + "background": "lightgoldenrod2", + "backgroundHex": "#eedc82", + "box": null, + "extend": "t", + "foreground": "black", + "foregroundHex": "#000000", + "height": 1, + "inherit": "region", + "selectedInherits": [ + "region" + ], + "slant": "normal", + "strike": null, + "underline": null, + "weight": "normal" + }, + "exists": true, + "foreground": "unspecified-fg", + "height": 1, + "inherit": "region", + "slant": "normal", + "strike": "nil", + "underline": "nil", + "weight": "normal" + } + }, + "meta": { + "captured-by": "scripts/theme-studio/capture-default-faces.py", + "default-background": "white", + "default-foreground": "black", + "display-color-cells": 16777216, + "emacs-version": "30.2", + "loaded-defface-file-count": 56, + "package-face-count": 643, + "package-unresolved-face-count": 23, + "resolution-model": "gui-light-24bit-from-face-default-spec", + "window-system": "batch" + }, + "package-defface-files": { + "2048-game": { + "twentyfortyeight-face-1024": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-128": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-16": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-2": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-2048": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-256": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-32": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-4": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-512": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-64": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el", + "twentyfortyeight-face-8": "/home/cjennings/.emacs.d/elpa/2048-game-20230809.356/2048-game.el" + }, + "alert": { + "alert-high-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el", + "alert-low-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el", + "alert-moderate-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el", + "alert-normal-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el", + "alert-trivial-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el", + "alert-urgent-face": "/home/cjennings/.emacs.d/elpa/alert-20250615.1845/alert.el" + }, + "all-the-icons": { + "all-the-icons-blue": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-blue-alt": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-cyan": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-cyan-alt": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dblue": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dcyan": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dgreen": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dmaroon": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dorange": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dpink": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dpurple": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dred": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dsilver": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-dyellow": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-green": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lblue": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lcyan": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lgreen": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lmaroon": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lorange": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lpink": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lpurple": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lred": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lsilver": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-lyellow": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-maroon": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-orange": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-pink": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-purple": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-purple-alt": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-red": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-red-alt": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-silver": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el", + "all-the-icons-yellow": "/home/cjennings/.emacs.d/elpa/all-the-icons-20250527.927/all-the-icons-faces.el" + }, + "company": { + "company-echo": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-echo-common": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-preview": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-preview-common": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-preview-search": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-annotation": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-annotation-selection": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-common": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-common-selection": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-deprecated": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-mouse": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-quick-access": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-quick-access-selection": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-scrollbar-thumb": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-scrollbar-track": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-search": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-search-selection": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el", + "company-tooltip-selection": "/home/cjennings/.emacs.d/elpa/company-1.0.2/company.el" + }, + "company-box": { + "company-box-annotation": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el", + "company-box-background": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el", + "company-box-candidate": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el", + "company-box-numbers": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el", + "company-box-scrollbar": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el", + "company-box-selection": "/home/cjennings/.emacs.d/elpa/company-box-20240320.921/company-box.el" + }, + "consult": { + "consult-async-failed": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-async-finished": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-async-running": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-async-split": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-bookmark": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-buffer": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-file": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-grep-context": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-help": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-highlight-mark": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-highlight-match": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-key": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-line-number": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-line-number-prefix": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-line-number-wrapped": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-narrow-indicator": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-preview-insertion": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-preview-line": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-preview-match": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el", + "consult-separator": "/home/cjennings/.emacs.d/elpa/consult-2.6/consult.el" + }, + "dashboard": { + "dashboard-banner-logo-title": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-footer-face": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-footer-icon-face": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-heading": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-items-face": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-navigator": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-no-items-face": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el", + "dashboard-text-banner": "/home/cjennings/.emacs.d/elpa/dashboard-20250708.57/dashboard-widgets.el" + }, + "dirvish": { + "dirvish-collapse-dir-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-collapse.el", + "dirvish-collapse-empty-dir-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-collapse.el", + "dirvish-collapse-file-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-collapse.el", + "dirvish-emerge-group-title": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-emerge.el", + "dirvish-file-device-number": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-group-id": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-inode-number": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-link-number": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-modes": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-size": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-time": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-file-user-id": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-free-space": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-git-commit-message-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-hl-line": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-hl-line-inactive": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-inactive": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-media-info-heading": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-media-info-property-key": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish-widgets.el", + "dirvish-narrow-match-face-0": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-narrow.el", + "dirvish-narrow-match-face-1": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-narrow.el", + "dirvish-narrow-match-face-2": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-narrow.el", + "dirvish-narrow-match-face-3": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-narrow.el", + "dirvish-narrow-split": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-narrow.el", + "dirvish-proc-failed": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-proc-finished": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-proc-running": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/dirvish.el", + "dirvish-subtree-guide": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-subtree.el", + "dirvish-subtree-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-subtree.el", + "dirvish-vc-added-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-conflict-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-edited-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-locked-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-missing-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-needs-merge-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-needs-update-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-removed-state": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el", + "dirvish-vc-unregistered-face": "/home/cjennings/.emacs.d/elpa/dirvish-2.3.0/extensions/dirvish-vc.el" + }, + "elfeed": { + "elfeed-log-date-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-log.el", + "elfeed-log-debug-level-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-log.el", + "elfeed-log-error-level-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-log.el", + "elfeed-log-info-level-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-log.el", + "elfeed-log-warn-level-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-log.el", + "elfeed-search-date-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-feed-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-filter-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-last-update-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-tag-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-title-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-unread-count-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el", + "elfeed-search-unread-title-face": "/home/cjennings/.emacs.d/elpa/elfeed-20241202.22/elfeed-search.el" + }, + "embark": { + "embark-collect-annotation": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-collect-candidate": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-collect-group-separator": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-collect-group-title": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-keybinding": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-keybinding-repeat": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-keymap": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-selected": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-target": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-verbose-indicator-documentation": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-verbose-indicator-shadowed": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el", + "embark-verbose-indicator-title": "/home/cjennings/.emacs.d/elpa/embark-1.1/embark.el" + }, + "emms": { + "emms-metaplaylist-mode-current-face": "/home/cjennings/.emacs.d/elpa/emms-24/emms-metaplaylist-mode.el", + "emms-metaplaylist-mode-face": "/home/cjennings/.emacs.d/elpa/emms-24/emms-metaplaylist-mode.el", + "emms-playlist-selected-face": "/home/cjennings/.emacs.d/elpa/emms-24/emms-playlist-mode.el", + "emms-playlist-track-face": "/home/cjennings/.emacs.d/elpa/emms-24/emms-playlist-mode.el" + }, + "flycheck": { + "flycheck-delimited-error": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-delimiter": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-checker-name": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-column-number": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-error": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-error-message": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-filename": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-highlight": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-id": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-id-with-explainer": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-info": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-line-number": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-error-list-warning": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-fringe-error": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-fringe-info": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-fringe-warning": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-info": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-verify-select-checker": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el", + "flycheck-warning": "/home/cjennings/.emacs.d/elpa/flycheck-35.0/flycheck.el" + }, + "flyspell-correct": { + "flyspell-correct-highlight-face": "/home/cjennings/.emacs.d/elpa/flyspell-correct-20220520.630/flyspell-correct.el" + }, + "ghostel": { + "ghostel-color-black": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-blue": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-black": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-blue": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-cyan": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-green": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-magenta": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-red": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-white": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-bright-yellow": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-cyan": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-green": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-magenta": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-red": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-white": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-color-yellow": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-default": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-fake-cursor": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el", + "ghostel-fake-cursor-box": "/home/cjennings/.emacs.d/elpa/ghostel-20260604.2049/ghostel.el" + }, + "git-gutter": { + "git-gutter:added": "/home/cjennings/.emacs.d/elpa/git-gutter-20241212.1415/git-gutter.el", + "git-gutter:deleted": "/home/cjennings/.emacs.d/elpa/git-gutter-20241212.1415/git-gutter.el", + "git-gutter:modified": "/home/cjennings/.emacs.d/elpa/git-gutter-20241212.1415/git-gutter.el", + "git-gutter:separator": "/home/cjennings/.emacs.d/elpa/git-gutter-20241212.1415/git-gutter.el", + "git-gutter:unchanged": "/home/cjennings/.emacs.d/elpa/git-gutter-20241212.1415/git-gutter.el" + }, + "highlight-indent-guides": { + "highlight-indent-guides-character-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-even-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-odd-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-stack-character-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-stack-even-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-stack-odd-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-top-character-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-top-even-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el", + "highlight-indent-guides-top-odd-face": "/home/cjennings/.emacs.d/elpa/highlight-indent-guides-20241229.2012/highlight-indent-guides.el" + }, + "hl-todo": { + "hl-todo": "/home/cjennings/.emacs.d/elpa/hl-todo-20250531.2218/hl-todo.el", + "hl-todo-flymake-type": "/home/cjennings/.emacs.d/elpa/hl-todo-20250531.2218/hl-todo.el" + }, + "json-mode": { + "json-mode-object-name-face": "/home/cjennings/.emacs.d/elpa/json-mode-0.2/json-mode.el" + }, + "llama": { + "llama-deleted-argument": "/home/cjennings/.emacs.d/elpa/llama-1.0.0/llama.el", + "llama-llama-macro": "/home/cjennings/.emacs.d/elpa/llama-1.0.0/llama.el", + "llama-mandatory-argument": "/home/cjennings/.emacs.d/elpa/llama-1.0.0/llama.el", + "llama-optional-argument": "/home/cjennings/.emacs.d/elpa/llama-1.0.0/llama.el" + }, + "lsp-mode": { + "lsp-details-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-face-highlight-read": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-face-highlight-textual": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-face-highlight-write": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-face-rename": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-inlay-hint-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-inlay-hint-parameter-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-inlay-hint-type-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-installation-buffer-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-installation-finished-buffer-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-rename-placeholder-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-signature-face": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-signature-highlight-function-argument": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el", + "lsp-signature-posframe": "/home/cjennings/.emacs.d/elpa/lsp-mode-20250708.39/lsp-mode.el" + }, + "lv": { + "lv-separator": "/home/cjennings/.emacs.d/elpa/lv-0.15.0/lv.el" + }, + "magit": { + "git-commit-comment-action": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-comment-branch-local": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-comment-branch-remote": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-comment-detached": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-comment-file": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-comment-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-keyword": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-nonempty-second-line": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-overlong-summary": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-summary": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-trailer-token": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "git-commit-trailer-value": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/git-commit.el", + "magit-bisect-bad": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-bisect.el", + "magit-bisect-good": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-bisect.el", + "magit-bisect-skip": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-bisect.el", + "magit-blame-date": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-dimmed": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-hash": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-margin": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-name": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-blame-summary": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-blame.el", + "magit-branch-current": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-branch-local": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-branch-remote": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-branch-remote-head": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-branch-upstream": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-branch-warning": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-cherry-equivalent": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-cherry-unmatched": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-diff-added": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-added-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-base": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-base-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-conflict-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-conflict-heading-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-context": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-context-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-file-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-file-heading-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-file-heading-selection": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-hunk-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-hunk-heading-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-hunk-heading-selection": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-hunk-region": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-lines-boundary": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-lines-heading": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-our": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-our-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-removed": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-removed-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-revision-summary": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-revision-summary-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-their": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-their-highlight": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diff-whitespace-warning": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diffstat-added": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-diffstat-removed": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-diff.el", + "magit-dimmed": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-filename": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-hash": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-head": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-header-line": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-log.el", + "magit-header-line-key": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-header-line-log-select": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-log.el", + "magit-keyword": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-keyword-squash": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-log-author": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-log.el", + "magit-log-date": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-log.el", + "magit-log-graph": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-log.el", + "magit-mode-line-process": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-process.el", + "magit-mode-line-process-error": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-process.el", + "magit-process-ng": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-process.el", + "magit-process-ok": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-process.el", + "magit-reflog-amend": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-checkout": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-cherry-pick": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-commit": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-merge": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-other": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-rebase": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-remote": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-reflog-reset": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-reflog.el", + "magit-refname": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-refname-pullreq": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-refname-stash": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-refname-wip": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-sequence-done": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-drop": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-exec": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-head": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-onto": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-part": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-pick": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-sequence-stop": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit-sequence.el", + "magit-signature-bad": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-error": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-expired": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-expired-key": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-good": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-revoked": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-signature-untrusted": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el", + "magit-tag": "/home/cjennings/.emacs.d/elpa/magit-4.4.0/magit.el" + }, + "magit-section": { + "magit-left-margin": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el", + "magit-section-child-count": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el", + "magit-section-heading": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el", + "magit-section-heading-selection": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el", + "magit-section-highlight": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el", + "magit-section-secondary-heading": "/home/cjennings/.emacs.d/elpa/magit-section-4.4.0/magit-section.el" + }, + "malyon": { + "malyon-face-bold": "/home/cjennings/.emacs.d/elpa/malyon-20161208.2125/malyon.el", + "malyon-face-error": "/home/cjennings/.emacs.d/elpa/malyon-20161208.2125/malyon.el", + "malyon-face-italic": "/home/cjennings/.emacs.d/elpa/malyon-20161208.2125/malyon.el", + "malyon-face-plain": "/home/cjennings/.emacs.d/elpa/malyon-20161208.2125/malyon.el", + "malyon-face-reverse": "/home/cjennings/.emacs.d/elpa/malyon-20161208.2125/malyon.el" + }, + "marginalia": { + "marginalia-archive": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-char": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-date": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-documentation": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-name": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-owner": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-dir": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-exec": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-link": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-no": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-other": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-rare": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-read": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-file-priv-write": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-function": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-installed": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-key": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-lighter": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-list": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-mode": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-modified": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-null": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-number": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-off": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-on": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-size": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-string": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-symbol": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-true": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-type": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-value": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el", + "marginalia-version": "/home/cjennings/.emacs.d/elpa/marginalia-2.1/marginalia.el" + }, + "markdown-mode": { + "markdown-blockquote-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-bold-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-code-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-comment-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-footnote-marker-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-footnote-text-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-gfm-checkbox-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-header-delimiter-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-header-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-header-rule-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-highlight-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-highlighting-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-hr-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-html-attr-name-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-html-attr-value-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-html-entity-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-html-tag-delimiter-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-html-tag-name-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-inline-code-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-italic-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-language-info-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-language-keyword-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-line-break-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-link-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-link-title-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-list-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-markup-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-math-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-metadata-key-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-metadata-value-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-missing-link-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-plain-url-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-pre-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-reference-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-strike-through-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-table-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el", + "markdown-url-face": "/home/cjennings/.emacs.d/elpa/markdown-mode-2.7/markdown-mode.el" + }, + "nerd-icons": { + "nerd-icons-blue": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-blue-alt": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-cyan": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-cyan-alt": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dblue": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dcyan": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dgreen": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dmaroon": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dorange": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dpink": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dpurple": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dred": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dsilver": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-dyellow": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-green": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lblue": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lcyan": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lgreen": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lmaroon": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lorange": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lpink": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lpurple": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lred": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lsilver": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-lyellow": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-maroon": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-orange": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-pink": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-purple": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-purple-alt": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-red": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-red-alt": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-silver": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el", + "nerd-icons-yellow": "/home/cjennings/.emacs.d/elpa/nerd-icons-20250718.355/nerd-icons-faces.el" + }, + "nerd-icons-completion": { + "nerd-icons-completion-dir-face": "/home/cjennings/.emacs.d/elpa/nerd-icons-completion-20250509.1949/nerd-icons-completion.el" + }, + "orderless": { + "orderless-match-face-0": "/home/cjennings/.emacs.d/elpa/orderless-1.4/orderless.el", + "orderless-match-face-1": "/home/cjennings/.emacs.d/elpa/orderless-1.4/orderless.el", + "orderless-match-face-2": "/home/cjennings/.emacs.d/elpa/orderless-1.4/orderless.el", + "orderless-match-face-3": "/home/cjennings/.emacs.d/elpa/orderless-1.4/orderless.el" + }, + "org-roam": { + "org-roam-dailies-calendar-note": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-dailies.el", + "org-roam-dim": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-header-line": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-olp": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-preview-heading": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-preview-heading-highlight": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-preview-heading-selection": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-preview-region": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el", + "org-roam-title": "/home/cjennings/.emacs.d/elpa/org-roam-20250701.528/org-roam-mode.el" + }, + "org-superstar": { + "org-superstar-first": "/home/cjennings/.emacs.d/elpa/org-superstar-1.5.1/org-superstar.el", + "org-superstar-header-bullet": "/home/cjennings/.emacs.d/elpa/org-superstar-1.5.1/org-superstar.el", + "org-superstar-item": "/home/cjennings/.emacs.d/elpa/org-superstar-1.5.1/org-superstar.el", + "org-superstar-leading": "/home/cjennings/.emacs.d/elpa/org-superstar-1.5.1/org-superstar.el" + }, + "prescient": { + "prescient-primary-highlight": "/home/cjennings/.emacs.d/elpa/prescient-20250816.19/prescient.el", + "prescient-secondary-highlight": "/home/cjennings/.emacs.d/elpa/prescient-20250816.19/prescient.el" + }, + "rainbow-delimiters": { + "rainbow-delimiters-base-error-face": "/home/cjennings/.emacs.d/elpa/rainbow-delimiters-2.1.5/rainbow-delimiters.el", + "rainbow-delimiters-base-face": "/home/cjennings/.emacs.d/elpa/rainbow-delimiters-2.1.5/rainbow-delimiters.el", + "rainbow-delimiters-mismatched-face": "/home/cjennings/.emacs.d/elpa/rainbow-delimiters-2.1.5/rainbow-delimiters.el", + "rainbow-delimiters-unmatched-face": "/home/cjennings/.emacs.d/elpa/rainbow-delimiters-2.1.5/rainbow-delimiters.el" + }, + "symbol-overlay": { + "symbol-overlay-default-face": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-1": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-2": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-3": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-4": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-5": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-6": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-7": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el", + "symbol-overlay-face-8": "/home/cjennings/.emacs.d/elpa/symbol-overlay-4.3/symbol-overlay.el" + }, + "tmr": { + "tmr-description": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-duration": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-end-time": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-finished": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-is-acknowledged": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-must-be-acknowledged": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-start-time": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-tabulated-acknowledgement": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-tabulated-description": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-tabulated-end-time": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-tabulated-remaining-time": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el", + "tmr-tabulated-start-time": "/home/cjennings/.emacs.d/elpa/tmr-1.1.0/tmr.el" + }, + "transient": { + "transient-active-infix": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-argument": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-delimiter": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-disabled-suffix": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-enabled-suffix": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-heading": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-higher-level": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-inactive-argument": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-inactive-value": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-inapt-argument": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-inapt-suffix": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-exit": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-noop": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-recurse": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-return": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-stack": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-key-stay": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-mismatched-key": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-nonstandard-key": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-unreachable": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-unreachable-key": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el", + "transient-value": "/home/cjennings/.emacs.d/elpa/transient-0.10.0/transient.el" + }, + "vertico": { + "vertico-current": "/home/cjennings/.emacs.d/elpa/vertico-2.4/vertico.el", + "vertico-group-separator": "/home/cjennings/.emacs.d/elpa/vertico-2.4/vertico.el", + "vertico-group-title": "/home/cjennings/.emacs.d/elpa/vertico-2.4/vertico.el", + "vertico-multiline": "/home/cjennings/.emacs.d/elpa/vertico-2.4/vertico.el" + }, + "web-mode": { + "web-mode-annotation-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-annotation-html-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-annotation-tag-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-annotation-type-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-annotation-value-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-attr-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-attr-value-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-control-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-delimiter-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-block-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-bold-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-builtin-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-comment-keyword-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-constant-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-at-rule-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-color-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-function-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-priority-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-property-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-pseudo-class-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-selector-class-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-selector-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-selector-tag-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-css-variable-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-current-column-highlight-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-current-element-highlight-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-doctype-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-error-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-filter-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-folded-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-function-call-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-function-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-attr-custom-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-attr-engine-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-attr-equal-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-attr-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-attr-value-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-entity-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-tag-bracket-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-tag-custom-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-tag-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-tag-namespaced-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-html-tag-unclosed-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-inlay-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-interpolate-color1-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-interpolate-color2-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-interpolate-color3-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-interpolate-color4-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-italic-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-javascript-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-javascript-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-json-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-json-context-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-json-key-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-json-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-jsx-depth-1-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-jsx-depth-2-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-jsx-depth-3-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-jsx-depth-4-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-jsx-depth-5-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-keyword-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-param-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-part-comment-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-part-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-part-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-preprocessor-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-script-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-sql-keyword-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-string-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-style-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-symbol-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-type-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-underline-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-variable-name-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-warning-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el", + "web-mode-whitespace-face": "/home/cjennings/.emacs.d/elpa/web-mode-17.3.21/web-mode.el" + }, + "yasnippet": { + "yas--field-debug-face": "/home/cjennings/.emacs.d/elpa/yasnippet-0.14.3/yasnippet.el", + "yas-field-highlight-face": "/home/cjennings/.emacs.d/elpa/yasnippet-0.14.3/yasnippet.el" + } + }, + "package-inventory": { + "2048-game": [ + "twentyfortyeight-face-1024", + "twentyfortyeight-face-128", + "twentyfortyeight-face-16", + "twentyfortyeight-face-2", + "twentyfortyeight-face-2048", + "twentyfortyeight-face-256", + "twentyfortyeight-face-32", + "twentyfortyeight-face-4", + "twentyfortyeight-face-512", + "twentyfortyeight-face-64", + "twentyfortyeight-face-8" + ], + "alert": [ + "alert-high-face", + "alert-low-face", + "alert-moderate-face", + "alert-normal-face", + "alert-trivial-face", + "alert-urgent-face" + ], + "all-the-icons": [ + "all-the-icons-blue", + "all-the-icons-blue-alt", + "all-the-icons-cyan", + "all-the-icons-cyan-alt", + "all-the-icons-dblue", + "all-the-icons-dcyan", + "all-the-icons-dgreen", + "all-the-icons-dmaroon", + "all-the-icons-dorange", + "all-the-icons-dpink", + "all-the-icons-dpurple", + "all-the-icons-dred", + "all-the-icons-dsilver", + "all-the-icons-dyellow", + "all-the-icons-green", + "all-the-icons-lblue", + "all-the-icons-lcyan", + "all-the-icons-lgreen", + "all-the-icons-lmaroon", + "all-the-icons-lorange", + "all-the-icons-lpink", + "all-the-icons-lpurple", + "all-the-icons-lred", + "all-the-icons-lsilver", + "all-the-icons-lyellow", + "all-the-icons-maroon", + "all-the-icons-orange", + "all-the-icons-pink", + "all-the-icons-purple", + "all-the-icons-purple-alt", + "all-the-icons-red", + "all-the-icons-red-alt", + "all-the-icons-silver", + "all-the-icons-yellow" + ], + "company": [ + "company-echo", + "company-echo-common", + "company-preview", + "company-preview-common", + "company-preview-search", + "company-tooltip", + "company-tooltip-annotation", + "company-tooltip-annotation-selection", + "company-tooltip-common", + "company-tooltip-common-selection", + "company-tooltip-deprecated", + "company-tooltip-mouse", + "company-tooltip-quick-access", + "company-tooltip-quick-access-selection", + "company-tooltip-scrollbar-thumb", + "company-tooltip-scrollbar-track", + "company-tooltip-search", + "company-tooltip-search-selection", + "company-tooltip-selection" + ], + "company-box": [ + "company-box-annotation", + "company-box-background", + "company-box-candidate", + "company-box-numbers", + "company-box-scrollbar", + "company-box-selection" + ], + "consult": [ + "consult-async-failed", + "consult-async-finished", + "consult-async-running", + "consult-async-split", + "consult-bookmark", + "consult-buffer", + "consult-file", + "consult-grep-context", + "consult-help", + "consult-highlight-mark", + "consult-highlight-match", + "consult-key", + "consult-line-number", + "consult-line-number-prefix", + "consult-line-number-wrapped", + "consult-narrow-indicator", + "consult-preview-insertion", + "consult-preview-line", + "consult-preview-match", + "consult-separator" + ], + "dashboard": [ + "dashboard-banner-logo-title", + "dashboard-footer-face", + "dashboard-footer-icon-face", + "dashboard-heading", + "dashboard-items-face", + "dashboard-navigator", + "dashboard-no-items-face", + "dashboard-text-banner" + ], + "dirvish": [ + "dirvish-collapse-dir-face", + "dirvish-collapse-empty-dir-face", + "dirvish-collapse-file-face", + "dirvish-emerge-group-title", + "dirvish-file-device-number", + "dirvish-file-group-id", + "dirvish-file-inode-number", + "dirvish-file-link-number", + "dirvish-file-modes", + "dirvish-file-size", + "dirvish-file-time", + "dirvish-file-user-id", + "dirvish-free-space", + "dirvish-git-commit-message-face", + "dirvish-hl-line", + "dirvish-hl-line-inactive", + "dirvish-inactive", + "dirvish-media-info-heading", + "dirvish-media-info-property-key", + "dirvish-narrow-match-face-0", + "dirvish-narrow-match-face-1", + "dirvish-narrow-match-face-2", + "dirvish-narrow-match-face-3", + "dirvish-narrow-split", + "dirvish-proc-failed", + "dirvish-proc-finished", + "dirvish-proc-running", + "dirvish-subtree-guide", + "dirvish-subtree-state", + "dirvish-vc-added-state", + "dirvish-vc-conflict-state", + "dirvish-vc-edited-state", + "dirvish-vc-locked-state", + "dirvish-vc-missing-state", + "dirvish-vc-needs-merge-face", + "dirvish-vc-needs-update-state", + "dirvish-vc-removed-state", + "dirvish-vc-unregistered-face" + ], + "elfeed": [ + "elfeed-log-date-face", + "elfeed-log-debug-level-face", + "elfeed-log-error-level-face", + "elfeed-log-info-level-face", + "elfeed-log-warn-level-face", + "elfeed-search-date-face", + "elfeed-search-feed-face", + "elfeed-search-filter-face", + "elfeed-search-last-update-face", + "elfeed-search-tag-face", + "elfeed-search-title-face", + "elfeed-search-unread-count-face", + "elfeed-search-unread-title-face" + ], + "embark": [ + "embark-collect-annotation", + "embark-collect-candidate", + "embark-collect-group-separator", + "embark-collect-group-title", + "embark-keybinding", + "embark-keybinding-repeat", + "embark-keymap", + "embark-selected", + "embark-target", + "embark-verbose-indicator-documentation", + "embark-verbose-indicator-shadowed", + "embark-verbose-indicator-title" + ], + "emms": [ + "emms-browser-album-face", + "emms-browser-albumartist-face", + "emms-browser-artist-face", + "emms-browser-composer-face", + "emms-browser-performer-face", + "emms-browser-track-face", + "emms-browser-year/genre-face", + "emms-metaplaylist-mode-current-face", + "emms-metaplaylist-mode-face", + "emms-playlist-selected-face", + "emms-playlist-track-face" + ], + "flycheck": [ + "flycheck-delimited-error", + "flycheck-error", + "flycheck-error-delimiter", + "flycheck-error-list-checker-name", + "flycheck-error-list-column-number", + "flycheck-error-list-error", + "flycheck-error-list-error-message", + "flycheck-error-list-filename", + "flycheck-error-list-highlight", + "flycheck-error-list-id", + "flycheck-error-list-id-with-explainer", + "flycheck-error-list-info", + "flycheck-error-list-line-number", + "flycheck-error-list-warning", + "flycheck-fringe-error", + "flycheck-fringe-info", + "flycheck-fringe-warning", + "flycheck-info", + "flycheck-verify-select-checker", + "flycheck-warning" + ], + "flyspell-correct": [ + "flyspell-correct-highlight-face" + ], + "ghostel": [ + "ghostel-color-black", + "ghostel-color-blue", + "ghostel-color-bright-black", + "ghostel-color-bright-blue", + "ghostel-color-bright-cyan", + "ghostel-color-bright-green", + "ghostel-color-bright-magenta", + "ghostel-color-bright-red", + "ghostel-color-bright-white", + "ghostel-color-bright-yellow", + "ghostel-color-cyan", + "ghostel-color-green", + "ghostel-color-magenta", + "ghostel-color-red", + "ghostel-color-white", + "ghostel-color-yellow", + "ghostel-default", + "ghostel-fake-cursor", + "ghostel-fake-cursor-box" + ], + "git-gutter": [ + "git-gutter:added", + "git-gutter:deleted", + "git-gutter:modified", + "git-gutter:separator", + "git-gutter:unchanged" + ], + "highlight-indent-guides": [ + "highlight-indent-guides-character-face", + "highlight-indent-guides-even-face", + "highlight-indent-guides-odd-face", + "highlight-indent-guides-stack-character-face", + "highlight-indent-guides-stack-even-face", + "highlight-indent-guides-stack-odd-face", + "highlight-indent-guides-top-character-face", + "highlight-indent-guides-top-even-face", + "highlight-indent-guides-top-odd-face" + ], + "hl-todo": [ + "hl-todo", + "hl-todo-flymake-type" + ], + "json-mode": [ + "json-mode-object-name-face" + ], + "llama": [ + "llama-##-macro", + "llama-deleted-argument", + "llama-llama-macro", + "llama-mandatory-argument", + "llama-optional-argument" + ], + "lsp-mode": [ + "lsp-details-face", + "lsp-face-highlight-read", + "lsp-face-highlight-textual", + "lsp-face-highlight-write", + "lsp-face-rename", + "lsp-inlay-hint-face", + "lsp-inlay-hint-parameter-face", + "lsp-inlay-hint-type-face", + "lsp-installation-buffer-face", + "lsp-installation-finished-buffer-face", + "lsp-rename-placeholder-face", + "lsp-signature-face", + "lsp-signature-highlight-function-argument", + "lsp-signature-posframe" + ], + "lv": [ + "lv-separator" + ], + "magit": [ + "git-commit-comment-action", + "git-commit-comment-branch-local", + "git-commit-comment-branch-remote", + "git-commit-comment-detached", + "git-commit-comment-file", + "git-commit-comment-heading", + "git-commit-keyword", + "git-commit-nonempty-second-line", + "git-commit-overlong-summary", + "git-commit-summary", + "git-commit-trailer-token", + "git-commit-trailer-value", + "magit-bisect-bad", + "magit-bisect-good", + "magit-bisect-skip", + "magit-blame-date", + "magit-blame-dimmed", + "magit-blame-hash", + "magit-blame-heading", + "magit-blame-highlight", + "magit-blame-margin", + "magit-blame-name", + "magit-blame-summary", + "magit-branch-current", + "magit-branch-local", + "magit-branch-remote", + "magit-branch-remote-head", + "magit-branch-upstream", + "magit-branch-warning", + "magit-cherry-equivalent", + "magit-cherry-unmatched", + "magit-diff-added", + "magit-diff-added-highlight", + "magit-diff-base", + "magit-diff-base-highlight", + "magit-diff-conflict-heading", + "magit-diff-conflict-heading-highlight", + "magit-diff-context", + "magit-diff-context-highlight", + "magit-diff-file-heading", + "magit-diff-file-heading-highlight", + "magit-diff-file-heading-selection", + "magit-diff-hunk-heading", + "magit-diff-hunk-heading-highlight", + "magit-diff-hunk-heading-selection", + "magit-diff-hunk-region", + "magit-diff-lines-boundary", + "magit-diff-lines-heading", + "magit-diff-our", + "magit-diff-our-highlight", + "magit-diff-removed", + "magit-diff-removed-highlight", + "magit-diff-revision-summary", + "magit-diff-revision-summary-highlight", + "magit-diff-their", + "magit-diff-their-highlight", + "magit-diff-whitespace-warning", + "magit-diffstat-added", + "magit-diffstat-removed", + "magit-dimmed", + "magit-filename", + "magit-hash", + "magit-head", + "magit-header-line", + "magit-header-line-key", + "magit-header-line-log-select", + "magit-keyword", + "magit-keyword-squash", + "magit-log-author", + "magit-log-date", + "magit-log-graph", + "magit-mode-line-process", + "magit-mode-line-process-error", + "magit-process-ng", + "magit-process-ok", + "magit-reflog-amend", + "magit-reflog-checkout", + "magit-reflog-cherry-pick", + "magit-reflog-commit", + "magit-reflog-merge", + "magit-reflog-other", + "magit-reflog-rebase", + "magit-reflog-remote", + "magit-reflog-reset", + "magit-refname", + "magit-refname-pullreq", + "magit-refname-stash", + "magit-refname-wip", + "magit-sequence-done", + "magit-sequence-drop", + "magit-sequence-exec", + "magit-sequence-head", + "magit-sequence-onto", + "magit-sequence-part", + "magit-sequence-pick", + "magit-sequence-stop", + "magit-signature-bad", + "magit-signature-error", + "magit-signature-expired", + "magit-signature-expired-key", + "magit-signature-good", + "magit-signature-revoked", + "magit-signature-untrusted", + "magit-tag" + ], + "magit-section": [ + "magit-left-margin", + "magit-section-child-count", + "magit-section-heading", + "magit-section-heading-selection", + "magit-section-highlight", + "magit-section-secondary-heading" + ], + "malyon": [ + "malyon-face-bold", + "malyon-face-error", + "malyon-face-italic", + "malyon-face-plain", + "malyon-face-reverse" + ], + "marginalia": [ + "marginalia-archive", + "marginalia-char", + "marginalia-date", + "marginalia-documentation", + "marginalia-file-name", + "marginalia-file-owner", + "marginalia-file-priv-dir", + "marginalia-file-priv-exec", + "marginalia-file-priv-link", + "marginalia-file-priv-no", + "marginalia-file-priv-other", + "marginalia-file-priv-rare", + "marginalia-file-priv-read", + "marginalia-file-priv-write", + "marginalia-function", + "marginalia-installed", + "marginalia-key", + "marginalia-lighter", + "marginalia-list", + "marginalia-mode", + "marginalia-modified", + "marginalia-null", + "marginalia-number", + "marginalia-off", + "marginalia-on", + "marginalia-size", + "marginalia-string", + "marginalia-symbol", + "marginalia-true", + "marginalia-type", + "marginalia-value", + "marginalia-version" + ], + "markdown-mode": [ + "markdown-blockquote-face", + "markdown-bold-face", + "markdown-code-face", + "markdown-comment-face", + "markdown-footnote-marker-face", + "markdown-footnote-text-face", + "markdown-gfm-checkbox-face", + "markdown-header-delimiter-face", + "markdown-header-face", + "markdown-header-face-1", + "markdown-header-face-2", + "markdown-header-face-3", + "markdown-header-face-4", + "markdown-header-face-5", + "markdown-header-face-6", + "markdown-header-rule-face", + "markdown-highlight-face", + "markdown-highlighting-face", + "markdown-hr-face", + "markdown-html-attr-name-face", + "markdown-html-attr-value-face", + "markdown-html-entity-face", + "markdown-html-tag-delimiter-face", + "markdown-html-tag-name-face", + "markdown-inline-code-face", + "markdown-italic-face", + "markdown-language-info-face", + "markdown-language-keyword-face", + "markdown-line-break-face", + "markdown-link-face", + "markdown-link-title-face", + "markdown-list-face", + "markdown-markup-face", + "markdown-math-face", + "markdown-metadata-key-face", + "markdown-metadata-value-face", + "markdown-missing-link-face", + "markdown-plain-url-face", + "markdown-pre-face", + "markdown-reference-face", + "markdown-strike-through-face", + "markdown-table-face", + "markdown-url-face" + ], + "nerd-icons": [ + "nerd-icons-blue", + "nerd-icons-blue-alt", + "nerd-icons-cyan", + "nerd-icons-cyan-alt", + "nerd-icons-dblue", + "nerd-icons-dcyan", + "nerd-icons-dgreen", + "nerd-icons-dmaroon", + "nerd-icons-dorange", + "nerd-icons-dpink", + "nerd-icons-dpurple", + "nerd-icons-dred", + "nerd-icons-dsilver", + "nerd-icons-dyellow", + "nerd-icons-green", + "nerd-icons-lblue", + "nerd-icons-lcyan", + "nerd-icons-lgreen", + "nerd-icons-lmaroon", + "nerd-icons-lorange", + "nerd-icons-lpink", + "nerd-icons-lpurple", + "nerd-icons-lred", + "nerd-icons-lsilver", + "nerd-icons-lyellow", + "nerd-icons-maroon", + "nerd-icons-orange", + "nerd-icons-pink", + "nerd-icons-purple", + "nerd-icons-purple-alt", + "nerd-icons-red", + "nerd-icons-red-alt", + "nerd-icons-silver", + "nerd-icons-yellow" + ], + "nerd-icons-completion": [ + "nerd-icons-completion-dir-face" + ], + "orderless": [ + "orderless-match-face-0", + "orderless-match-face-1", + "orderless-match-face-2", + "orderless-match-face-3" + ], + "org-roam": [ + "org-roam-dailies-calendar-note", + "org-roam-dim", + "org-roam-header-line", + "org-roam-olp", + "org-roam-preview-heading", + "org-roam-preview-heading-highlight", + "org-roam-preview-heading-selection", + "org-roam-preview-region", + "org-roam-title" + ], + "org-superstar": [ + "org-superstar-first", + "org-superstar-header-bullet", + "org-superstar-item", + "org-superstar-leading" + ], + "prescient": [ + "prescient-primary-highlight", + "prescient-secondary-highlight" + ], + "rainbow-delimiters": [ + "rainbow-delimiters-base-error-face", + "rainbow-delimiters-base-face", + "rainbow-delimiters-depth-1-face", + "rainbow-delimiters-depth-2-face", + "rainbow-delimiters-depth-3-face", + "rainbow-delimiters-depth-4-face", + "rainbow-delimiters-depth-5-face", + "rainbow-delimiters-depth-6-face", + "rainbow-delimiters-depth-7-face", + "rainbow-delimiters-depth-8-face", + "rainbow-delimiters-depth-9-face", + "rainbow-delimiters-mismatched-face", + "rainbow-delimiters-unmatched-face" + ], + "symbol-overlay": [ + "symbol-overlay-default-face", + "symbol-overlay-face-1", + "symbol-overlay-face-2", + "symbol-overlay-face-3", + "symbol-overlay-face-4", + "symbol-overlay-face-5", + "symbol-overlay-face-6", + "symbol-overlay-face-7", + "symbol-overlay-face-8" + ], + "tmr": [ + "tmr-description", + "tmr-duration", + "tmr-end-time", + "tmr-finished", + "tmr-is-acknowledged", + "tmr-must-be-acknowledged", + "tmr-start-time", + "tmr-tabulated-acknowledgement", + "tmr-tabulated-description", + "tmr-tabulated-end-time", + "tmr-tabulated-remaining-time", + "tmr-tabulated-start-time" + ], + "transient": [ + "transient-active-infix", + "transient-argument", + "transient-delimiter", + "transient-disabled-suffix", + "transient-enabled-suffix", + "transient-heading", + "transient-higher-level", + "transient-inactive-argument", + "transient-inactive-value", + "transient-inapt-argument", + "transient-inapt-suffix", + "transient-key", + "transient-key-exit", + "transient-key-noop", + "transient-key-recurse", + "transient-key-return", + "transient-key-stack", + "transient-key-stay", + "transient-mismatched-key", + "transient-nonstandard-key", + "transient-unreachable", + "transient-unreachable-key", + "transient-value" + ], + "vertico": [ + "vertico-current", + "vertico-group-separator", + "vertico-group-title", + "vertico-multiline" + ], + "web-mode": [ + "web-mode-annotation-face", + "web-mode-annotation-html-face", + "web-mode-annotation-tag-face", + "web-mode-annotation-type-face", + "web-mode-annotation-value-face", + "web-mode-block-attr-name-face", + "web-mode-block-attr-value-face", + "web-mode-block-comment-face", + "web-mode-block-control-face", + "web-mode-block-delimiter-face", + "web-mode-block-face", + "web-mode-block-string-face", + "web-mode-bold-face", + "web-mode-builtin-face", + "web-mode-comment-face", + "web-mode-comment-keyword-face", + "web-mode-constant-face", + "web-mode-css-at-rule-face", + "web-mode-css-color-face", + "web-mode-css-comment-face", + "web-mode-css-function-face", + "web-mode-css-priority-face", + "web-mode-css-property-name-face", + "web-mode-css-pseudo-class-face", + "web-mode-css-selector-class-face", + "web-mode-css-selector-face", + "web-mode-css-selector-tag-face", + "web-mode-css-string-face", + "web-mode-css-variable-face", + "web-mode-current-column-highlight-face", + "web-mode-current-element-highlight-face", + "web-mode-doctype-face", + "web-mode-error-face", + "web-mode-filter-face", + "web-mode-folded-face", + "web-mode-function-call-face", + "web-mode-function-name-face", + "web-mode-html-attr-custom-face", + "web-mode-html-attr-engine-face", + "web-mode-html-attr-equal-face", + "web-mode-html-attr-name-face", + "web-mode-html-attr-value-face", + "web-mode-html-entity-face", + "web-mode-html-tag-bracket-face", + "web-mode-html-tag-custom-face", + "web-mode-html-tag-face", + "web-mode-html-tag-namespaced-face", + "web-mode-html-tag-unclosed-face", + "web-mode-inlay-face", + "web-mode-interpolate-color1-face", + "web-mode-interpolate-color2-face", + "web-mode-interpolate-color3-face", + "web-mode-interpolate-color4-face", + "web-mode-italic-face", + "web-mode-javascript-comment-face", + "web-mode-javascript-string-face", + "web-mode-json-comment-face", + "web-mode-json-context-face", + "web-mode-json-key-face", + "web-mode-json-string-face", + "web-mode-jsx-depth-1-face", + "web-mode-jsx-depth-2-face", + "web-mode-jsx-depth-3-face", + "web-mode-jsx-depth-4-face", + "web-mode-jsx-depth-5-face", + "web-mode-keyword-face", + "web-mode-param-name-face", + "web-mode-part-comment-face", + "web-mode-part-face", + "web-mode-part-string-face", + "web-mode-preprocessor-face", + "web-mode-script-face", + "web-mode-sql-keyword-face", + "web-mode-string-face", + "web-mode-style-face", + "web-mode-symbol-face", + "web-mode-type-face", + "web-mode-underline-face", + "web-mode-variable-name-face", + "web-mode-warning-face", + "web-mode-whitespace-face" + ], + "yasnippet": [ + "yas--field-debug-face", + "yas-field-highlight-face" + ] + }, + "package-unresolved-faces": { + "emms": [ + "emms-browser-album-face", + "emms-browser-albumartist-face", + "emms-browser-artist-face", + "emms-browser-composer-face", + "emms-browser-performer-face", + "emms-browser-track-face", + "emms-browser-year/genre-face" + ], + "llama": [ + "llama-##-macro" + ], + "markdown-mode": [ + "markdown-header-face-1", + "markdown-header-face-2", + "markdown-header-face-3", + "markdown-header-face-4", + "markdown-header-face-5", + "markdown-header-face-6" + ], + "rainbow-delimiters": [ + "rainbow-delimiters-depth-1-face", + "rainbow-delimiters-depth-2-face", + "rainbow-delimiters-depth-3-face", + "rainbow-delimiters-depth-4-face", + "rainbow-delimiters-depth-5-face", + "rainbow-delimiters-depth-6-face", + "rainbow-delimiters-depth-7-face", + "rainbow-delimiters-depth-8-face", + "rainbow-delimiters-depth-9-face" + ] + }, + "syntax-map": { + "bg": [ + "default" + ], + "bi": [ + "font-lock-builtin-face" + ], + "cm": [ + "font-lock-comment-face" + ], + "cmd": [ + "font-lock-comment-delimiter-face" + ], + "con": [ + "font-lock-constant-face" + ], + "dec": null, + "doc": [ + "font-lock-doc-face" + ], + "esc": [ + "font-lock-escape-face" + ], + "fnc": [ + "font-lock-function-call-face" + ], + "fnd": [ + "font-lock-function-name-face" + ], + "kw": [ + "font-lock-keyword-face" + ], + "num": [ + "font-lock-number-face" + ], + "op": [ + "font-lock-operator-face" + ], + "p": [ + "default" + ], + "pp": [ + "font-lock-preprocessor-face" + ], + "prop": [ + "font-lock-property-name-face", + "font-lock-property-use-face" + ], + "punc": [ + "font-lock-punctuation-face", + "font-lock-bracket-face", + "font-lock-delimiter-face", + "font-lock-misc-punctuation-face" + ], + "re": [ + "font-lock-regexp-face" + ], + "str": [ + "font-lock-string-face" + ], + "ty": [ + "font-lock-type-face" + ], + "var": [ + "font-lock-variable-name-face", + "font-lock-variable-use-face" + ] + }, + "ui-faces": [ + "cursor", + "region", + "hl-line", + "highlight", + "mode-line", + "mode-line-inactive", + "fringe", + "line-number", + "line-number-current-line", + "minibuffer-prompt", + "isearch", + "lazy-highlight", + "isearch-fail", + "show-paren-match", + "show-paren-mismatch", + "link", + "error", + "warning", + "success", + "vertical-border" + ] +} diff --git a/scripts/theme-studio/generate.py b/scripts/theme-studio/generate.py index b6e2fc73..e98d0bf3 100644 --- a/scripts/theme-studio/generate.py +++ b/scripts/theme-studio/generate.py @@ -1,4 +1,4 @@ -import json, os +import json, os, re HERE=os.path.dirname(os.path.abspath(__file__)) def strip_exports(src): @@ -38,10 +38,102 @@ src=open(os.path.join(HERE,'samples.py')).read() exec(src[:src.index('cols=')], ns) SAMPLES={"Elisp":ns['ELS'],"Go":ns['GOS'],"Python":ns['PYS'],"TypeScript":ns['TSS'],"Java":ns['JAS'],"C":ns['CS'],"C++":ns['CPS'],"Shell":ns['SHS']} COLS=ns['COLS'] -MAP={k:v[0] for k,v in COLS.items()}; BOLD={k:v[1] for k,v in COLS.items()}; MAP['str']='#5d9b86'; MAP['bg']='#000000' -PALETTE=[["#67809c","blue"],["#e8bd30","gold"],["#9b5fd0","regal"],["#2ba178","emerald"],["#5d9b86","sage"], - ["#cb6b4d","terracotta"],["#be9e74","tan"],["#ffffff","white"],["#a9b2bb","silver"],["#838d97","steel"], - ["#5e6770","pewter"],["#2f343a","gunmetal"],["#264364","navy"],["#000000","ground"],["#1a1714","bg-dim"]] +DEFAULT_FACES_PATH=os.path.join(HERE,'emacs-default-faces.json') +DEFAULT_FACES=json.load(open(DEFAULT_FACES_PATH)) if os.path.exists(DEFAULT_FACES_PATH) else None +DEFAULT_COLOR_HEX={} +if DEFAULT_FACES: + for _data in DEFAULT_FACES.get('faces',{}).values(): + for _block in ('chosenGuiLight','effectiveGuiLight'): + _d=_data.get(_block,{}) or {} + for _attr in ('foreground','background','distantForeground'): + if _d.get(_attr) and _d.get(_attr+'Hex'): + DEFAULT_COLOR_HEX[str(_d[_attr]).lower().replace(' ','')]=_d[_attr+'Hex'] +MAP={k:'' for k in COLS}; MAP['bg']='#000000'; MAP['p']='#ffffff' +BOLD={k:False for k in COLS} +ITALIC_MAP={k:False for k in COLS} +def column_id(name): + return re.sub(r'[+-]\d+$', '', name or 'color') + +def normalize_palette(palette): + return [[p[0], p[1] if len(p) > 1 else 'color', p[2] if len(p) > 2 else column_id(p[1] if len(p) > 1 else 'color')] + for p in palette] + +def default_face(face, effective=True): + if not DEFAULT_FACES: return {} + data=DEFAULT_FACES.get('faces',{}).get(face,{}) + return data.get('effectiveGuiLight' if effective else 'chosenGuiLight',{}) or {} + +def default_color(face, attr='foreground', effective=True): + d=default_face(face,effective) + return d.get(attr+'Hex') or d.get(attr) + +def emacs_box_to_theme(box): + if not box: return None + if isinstance(box,dict): return box + if not isinstance(box,list): return None + vals={} + i=0 + while i+1 seeds the tool's starting # palette / assignments / bold / italic / UI from a theme.json (path relative to # this dir), instead of the hardcoded defaults above. Unset leaves them unchanged. # Placed after every default it overrides (notably UIMAP) so the merge has targets. # Mirrors what the in-page Import does, so reseed and import agree. -LOCKS=[]; ITALIC=[] -# sterling is the default theme; THEME_STUDIO_SEED=.json overrides to view another. -_seed=os.environ.get('THEME_STUDIO_SEED') or 'sterling.json' +LOCKS=[]; ITALIC=[k for k,v in ITALIC_MAP.items() if v] +# THEME_STUDIO_SEED=.json opens an existing theme as the starting point. +# Unset starts empty: only bg/fg are in the palette. +_seed=os.environ.get('THEME_STUDIO_SEED') _d={} if _seed: _d=json.load(open(os.path.join(HERE,_seed))) @@ -90,14 +176,14 @@ if _seed: if _d.get('ui'): for _k,_v in _d['ui'].items(): UIMAP[_k]=_v if 'locks' in _d: LOCKS=_d['locks'] -# These faces carry a fixed style in Emacs's built-in definitions (verified with -# emacs -Q), independent of any theme: link / lazy-highlight / show-paren-match -# are underlined; error / warning / success are bold. Seed the defaults to match. -UIMAP["link"]["underline"]=True -for _f in ("lazy-highlight","show-paren-match"): UIMAP[_f]["underline"]=True -for _f in ("error","warning","success"): UIMAP[_f]["bold"]=True -# The mode line carries a 3D released-button box by default in Emacs. -for _f in ("mode-line","mode-line-inactive"): UIMAP[_f]["box"]={"style":"released","width":1,"color":None} +PALETTE=normalize_palette(PALETTE) +if not DEFAULT_FACES: + # These faces carry a fixed style in Emacs's built-in definitions. Fallback + # only; normal generation uses emacs-default-faces.json above. + UIMAP["link"]["underline"]=True + for _f in ("lazy-highlight","show-paren-match"): UIMAP[_f]["underline"]=True + for _f in ("error","warning","success"): UIMAP[_f]["bold"]=True + for _f in ("mode-line","mode-line-inactive"): UIMAP[_f]["box"]={"style":"released","width":1,"color":None} # Tier-3 package faces (Phase 2): complete own-defface sets for org/magit/elfeed, # built from face-name lists + a curated seed-color map. Prominent faces are # seeded; the long tail seeds to the default foreground for the user to tune. @@ -141,7 +227,11 @@ MAGIT_FACES=("magit-section-heading magit-section-secondary-heading magit-sectio "magit-reflog-merge magit-reflog-checkout magit-reflog-reset magit-reflog-rebase " "magit-reflog-cherry-pick magit-reflog-remote magit-reflog-other magit-sequence-pick " "magit-sequence-stop magit-sequence-part magit-sequence-head magit-sequence-drop magit-sequence-done " - "magit-sequence-onto magit-sequence-exec magit-left-margin").split() + "magit-sequence-onto magit-sequence-exec magit-left-margin " + "git-commit-comment-action git-commit-comment-branch-local git-commit-comment-branch-remote " + "git-commit-comment-detached git-commit-comment-file git-commit-comment-heading git-commit-keyword " + "git-commit-nonempty-second-line git-commit-overlong-summary git-commit-summary " + "git-commit-trailer-token git-commit-trailer-value").split() ELFEED_FACES=("elfeed-search-date-face elfeed-search-title-face elfeed-search-unread-title-face " "elfeed-search-feed-face elfeed-search-tag-face elfeed-search-unread-count-face " "elfeed-search-filter-face elfeed-search-last-update-face elfeed-log-date-face " @@ -426,22 +516,59 @@ if os.path.exists(_inv_path): APPS[_pkg]={"label":_pkg,"preview":"generic","faces":[ [f,(f[len(_pkg)+1:] if f.startswith(_pkg+"-") else f).replace("-face","").replace("-"," "),{}] for f in _INV[_pkg]]} -# Apply the seed theme's package overrides (sterling by default): each full per-face -# spec (color + structure) replaces the hardcoded face seed before the page renders. +if DEFAULT_FACES: + for _app in APPS.values(): + for _row in _app["faces"]: + _row[2]=face_seed(_row[0],False) +# Apply seed theme package overrides when THEME_STUDIO_SEED is set: each full +# per-face spec (color + structure) replaces the hardcoded face seed before render. if _seed and _d.get('packages'): for _app,_pkfaces in _d['packages'].items(): if _app in APPS: for _row in APPS[_app]['faces']: if _row[0] in _pkfaces: _row[2]=_pkfaces[_row[0]] + +def add_palette_color(value, label=None): + if not value: return + if any((p[0] or '').lower()==str(value).lower() for p in PALETTE): return + name=label or color_label(value,'color-'+str(len(PALETTE))) + base=name + n=2 + used={p[1].lower() for p in PALETTE} + while name.lower() in used: + name=base+'-'+str(n); n+=1 + PALETTE.append([value,name,column_id(name)]) + +if DEFAULT_FACES: + for _k,_v in MAP.items(): + add_palette_color(_v, 'bg' if _k=='bg' else 'fg' if _k=='p' else None) + for _face,_spec in UIMAP.items(): + add_palette_color(_spec.get('fg')) + add_palette_color(_spec.get('bg')) + for _app in APPS.values(): + for _face,_label,_spec in _app['faces']: + add_palette_color(_spec.get('fg')) + add_palette_color(_spec.get('bg')) + +PALETTE=normalize_palette(PALETTE) HTML = """theme-studio -

Untitled: theme

-
+
+

Untitled: theme

+
+
+ + + + + +
+ +
+

palette

-
-
@@ -468,21 +595,9 @@ STYLES_CSS
+
+
-
-

export, import, and save

-
- -
-
- - - - -
- -
-

code/color assignments

diff --git a/scripts/theme-studio/styles.css b/scripts/theme-studio/styles.css index cc074dac..9bb9e754 100644 --- a/scripts/theme-studio/styles.css +++ b/scripts/theme-studio/styles.css @@ -26,6 +26,7 @@ .pals{display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;align-items:flex-start} .fstrip{display:flex;flex-direction:column;gap:6px;padding:5px;border-radius:7px;border:1px solid transparent} .fstrip.ground{border-color:#252321;background:#161412} + .fhead{min-height:17px;max-width:128px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#b4b1a2;font:9pt monospace;text-align:center} .fcount{margin-top:3px;font:9pt monospace;color:#8a9496;text-align:center} .fcount input{width:40px;background:#0d0b0a;border:1px solid #252321;color:#cdced1;border-radius:4px;padding:2px 4px;font:9pt monospace;text-align:center} .palwarn{display:none;margin-top:8px;font:10pt monospace;color:#cb6b4d} @@ -35,7 +36,7 @@ .pchip.sel{outline:3px solid #e8bd30;outline-offset:2px} .pchip input.nm{background:transparent;border:none;text-align:center;font:bold 10pt monospace;width:108px;outline:none} .pchip .hx{font-size:10pt;opacity:.8} .pchip .rm{position:absolute;top:2px;right:5px;background:none;border:none;cursor:pointer;font-size:14px;font-weight:bold;opacity:.7} .pchip .lock{position:absolute;top:3px;right:5px;font-size:10px;opacity:.6} - .palctl{margin-top:12px;display:flex;gap:8px;align-items:center;flex-wrap:wrap} + .palctl{margin:0 0 12px;display:flex;gap:8px;align-items:center;flex-wrap:wrap} .palctl input[type=text]{background:#161412;border:1px solid #252321;color:#cdced1;border-radius:4px;padding:5px 8px;font:10pt monospace} .palctl input[type=text]::placeholder{color:#b4b1a2;opacity:1} .palctl{position:relative} @@ -70,7 +71,8 @@ #palmsg{font:10pt monospace;opacity:0;transition:opacity .35s;margin-left:6px} #export{width:100%;height:180px;margin-top:10px;background:#0d0b0a;color:#a4ac64;border:1px solid #252321;border-radius:6px;font:10pt monospace;padding:10px} .filebar{margin:6px 0 0;display:flex;gap:8px;align-items:center} - #pagetitle{font-size:30px;color:#cdced1;font-weight:normal;border:none;margin:4px 0 18px;padding:0} + #pagetitle{font-size:30px;color:#cdced1;font-weight:normal;border:none;margin:0;padding:0} + .topbar{display:flex;gap:24px;align-items:flex-start;justify-content:space-between;margin:4px 0 18px} .cols{display:flex;gap:28px;align-items:flex-start} .cols.stretch{align-items:stretch} .pane{min-width:0} .pane.grow{flex:1} .pane.saveload{flex:0 0 auto;margin-left:auto} .pane h1{margin-top:0} diff --git a/scripts/theme-studio/test-app-core.mjs b/scripts/theme-studio/test-app-core.mjs index 39a44967..244dd6e3 100644 --- a/scripts/theme-studio/test-app-core.mjs +++ b/scripts/theme-studio/test-app-core.mjs @@ -7,7 +7,7 @@ import assert from 'node:assert/strict'; import { readFileSync } from 'node:fs'; import { fileURLToPath } from 'node:url'; import { - nameToHex, buildPkgmap, packagesForExport, mergePackagesInto, effResolve, optList, slugify, + nameToHex, buildPkgmap, packagesForExport, mergePackagesInto, effResolve, optList, paletteOptionList, slugify, } from './app-core.js'; const here = fileURLToPath(new URL('.', import.meta.url)); @@ -44,6 +44,32 @@ test('optList: Error — a cur not in the palette is surfaced as (gone) first', assert.deepEqual(list.slice(2), PAL); }); +test('paletteOptionList: Normal — color choices follow visual column ordering', () => { + const pal = [ + ['#67809c', 'blue'], + ['#0d0b0a', 'bg'], + ['#808080', 'gray'], + ['#c0402a', 'red'], + ['#f0fef0', 'fg'], + ]; + const list = paletteOptionList('#67809c', pal, { bg: '#0d0b0a', fg: '#f0fef0' }); + assert.deepEqual(list.slice(0, 3), [['', '— default —'], ['#0d0b0a', 'bg'], ['#f0fef0', 'fg']]); + assert.ok(list.findIndex(([, name]) => name === 'blue') < list.findIndex(([, name]) => name === 'gray'), 'palette column order is preserved'); + assert.ok(list.findIndex(([, name]) => name === 'gray') < list.findIndex(([, name]) => name === 'red'), 'later columns stay later'); +}); + +test('paletteOptionList: Boundary — assignment-only ground colors are selectable', () => { + const list = paletteOptionList('', [['#67809c', 'blue']], { bg: '#0d0b0a', fg: '#f0fef0' }); + assert.ok(list.some(([hex, name]) => hex === '#0d0b0a' && name === 'bg')); + assert.ok(list.some(([hex, name]) => hex === '#f0fef0' && name === 'fg')); +}); + +test('paletteOptionList: Error — a cur outside palette and ground is surfaced as gone', () => { + const list = paletteOptionList('#123456', PAL, { bg: '#0d0b0a', fg: '#f0fef0' }); + assert.deepEqual(list[0], ['', '— default —']); + assert.deepEqual(list[1], ['#123456', '(gone) #123456']); +}); + test('buildPkgmap: Normal — seeds faces, resolving names and applying defaults', () => { const apps = { 'org-mode': { faces: [ ['org-todo', 'todo', { fg: 'blue', bold: true }], diff --git a/scripts/theme-studio/test-families.mjs b/scripts/theme-studio/test-families.mjs index c6602aeb..7d59e281 100644 --- a/scripts/theme-studio/test-families.mjs +++ b/scripts/theme-studio/test-families.mjs @@ -1,150 +1,89 @@ -// Unit tests for the color-families model (app-core.js): grouping a flat palette -// into hue families, regenerating a family's ramp, ranking members by lightness, -// and planning the assignment re-point across a regenerate. Phase 1 of the -// color-families spec. Pure, no DOM. Run: node --test scripts/theme-studio/ +// Unit tests for the color-column model (app-core.js): grouping a flat palette +// into stable structural columns, regenerating a column's ramp, ranking members +// by lightness, and planning assignment re-point across a regenerate. Pure, no +// DOM. Run: node --test scripts/theme-studio/ import { test } from 'node:test'; import assert from 'node:assert/strict'; import { familiesFromPalette, regenFamily, rankByLightness, stepRepointPlan, sortFamilies } from './app-core.js'; -import { oklch2hex, srgb2oklab, oklab2oklch } from './colormath.js'; -// Build a palette entry at a controlled OKLCH hue so clustering is deterministic. -const at = (L, C, H, name) => [oklch2hex(L, C, H).hex, name || ('c' + H)]; +const famOf = (families, name) => families.find(f => f.members.some(m => m.name === name)); // --- familiesFromPalette ---------------------------------------------------- -test('familiesFromPalette: Normal — separated hues split into one family each', () => { - const pal = [at(0.6, 0.1, 30, 'red'), at(0.6, 0.1, 150, 'green'), at(0.6, 0.1, 270, 'blue')]; +test('familiesFromPalette: Normal - generated names group by column stem', () => { + const pal = [['#223344', 'blue-1'], ['#67809c', 'blue'], ['#b2c3cc', 'blue+1']]; const { ground, families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - assert.equal(families.length, 3, 'three separated hues -> three families'); assert.equal(ground.length, 2, 'ground strip carries bg and fg'); - for (const f of families) assert.equal(f.members.length, 1); -}); - -test('familiesFromPalette: Boundary — near hues at the same lightness stay one family', () => { - const pal = [at(0.55, 0.1, 250, 'b1'), at(0.6, 0.1, 256, 'b2')]; - const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - assert.equal(families.length, 1, 'a near hue-pair is one family'); - assert.equal(families[0].members.length, 2); + assert.equal(families.length, 1); + assert.deepEqual(families[0].members.map(m => m.name), ['blue-1', 'blue', 'blue+1']); }); -test('familiesFromPalette: Boundary — well-separated hues split', () => { - const pal = [at(0.6, 0.1, 255, 'b'), at(0.6, 0.1, 200, 'c')]; +test('familiesFromPalette: Normal - different stems stay in different columns even with similar colors', () => { + const pal = [['#67809c', 'blue'], ['#6a829e', 'steel']]; const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); assert.equal(families.length, 2); + assert.notEqual(famOf(families, 'blue'), famOf(families, 'steel')); }); -test('familiesFromPalette: Boundary — an intermediate chain does not merge gold into green', () => { - // complete linkage requires every cross-pair compatible, so the far endpoints (90° vs 150°) keep the chain from fusing - const pal = [at(0.7, 0.1, 90, 'gold'), at(0.65, 0.1, 110, 'olive'), at(0.6, 0.1, 130, 'yg'), at(0.55, 0.1, 150, 'green')]; +test('familiesFromPalette: Boundary - a stable third-field column id survives rename', () => { + const pal = [['#223344', 'blue-1', 'blue'], ['#67809c', 'renamed-base', 'blue'], ['#b2c3cc', 'wild-card', 'blue']]; const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - assert.equal(families.length, 2, 'not one chained family'); -}); - -test('familiesFromPalette: Boundary — a pale tint keeps its hue while a mid gray goes neutral', () => { - const paleBlue = oklch2hex(0.9, 0.03, 255).hex; // light, faint -> still blue - const midGray = oklch2hex(0.6, 0.025, 100).hex; // mid, faint -> reads neutral - const { families } = familiesFromPalette([[paleBlue, 'paleblue'], [midGray, 'graytone']], { bg: '#000000', fg: '#ffffff' }); - const neutral = families.find(f => f.neutral); - assert.ok(neutral && neutral.members.some(m => m.name === 'graytone'), 'mid faint color is neutral'); - assert.ok(families.some(f => !f.neutral && f.members.some(m => m.name === 'paleblue')), 'pale tint stays chromatic'); + assert.equal(families.length, 1); + assert.equal(families[0].column, 'blue'); + assert.deepEqual(families[0].members.map(m => m.name), ['blue-1', 'renamed-base', 'wild-card']); }); -test('familiesFromPalette: Boundary — near-neutral colors form a separate family', () => { - const pal = [at(0.6, 0.1, 250, 'blue'), at(0.5, 0.004, 250, 'gray')]; // gray below the chroma threshold +test('familiesFromPalette: Boundary - legacy two-field entries fall back to name stem', () => { + const pal = [['#875f00', 'yellow-1'], ['#d7af5f', 'yellow'], ['#646d14', 'green-1'], ['#a4ac64', 'green']]; const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - const neutral = families.find(f => f.neutral); - assert.ok(neutral, 'a neutral family exists'); - assert.ok(neutral.members.some(m => m.name === 'gray')); - assert.ok(families.some(f => !f.neutral && f.members.some(m => m.name === 'blue'))); -}); - -// --- real-palette grouping (the hard cases the color-sorting reviews measured) --- - -// The contested region of the distinguished/sterling palette: the gold ramp and -// the olive ramp whose hue ranges nearly touch but whose mid-tones are far apart. -const GOLD = [['#875f00', 'yellow-2'], ['#8e784c', 'yellow-1'], ['#d7af5f', 'yellow'], ['#ffd75f', 'yellow+1']]; -const OLIVE = [['#646d14', 'green-2'], ['#869038', 'green-1'], ['#a4ac64', 'green'], ['#ccc768', 'green+1']]; -const famOf = (families, name) => families.find(f => f.members.some(m => m.name === name)); - -test('familiesFromPalette: Normal — the gold and olive ramps separate', () => { - const { families } = familiesFromPalette([...GOLD, ...OLIVE], { bg: '#000000', fg: '#ffffff' }); - const gold = famOf(families, 'yellow'), olive = famOf(families, 'green'); - assert.notEqual(gold, olive, 'gold and olive are different families'); - assert.ok(!gold.members.some(m => m.name.startsWith('green')), 'gold family has no greens'); - assert.ok(!olive.members.some(m => m.name.startsWith('yellow')), 'olive family has no yellows'); -}); - -test('familiesFromPalette: Normal — the blue ramp stays whole despite pale-tint hue drift', () => { - // blue (H 252), blue+1 (H 231), blue+2 (H 272): low-chroma pale tints swing in hue but belong together - const pal = [['#67809c', 'blue'], ['#b2c3cc', 'blue+1'], ['#d9e2ff', 'blue+2']]; - const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - const blue = famOf(families, 'blue'); - assert.equal(blue.members.length, 3, 'all three blues in one family'); -}); - -test('familiesFromPalette: Boundary — pale warm grays and pure white read as neutral', () => { - const pal = [['#b4b1a2', 'gray+1'], ['#d0cbc0', 'gray+2'], ['#ffffff', 'white'], ['#67809c', 'blue']]; - const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#f0fef0' }); // fg distinct from the white swatch - const neutral = families.find(f => f.neutral); - for (const n of ['gray+1', 'gray+2', 'white']) assert.ok(neutral.members.some(m => m.name === n), n + ' is neutral'); - assert.ok(famOf(families, 'blue') && !famOf(families, 'blue').neutral, 'blue stays chromatic'); + assert.equal(families.length, 2); + assert.ok(famOf(families, 'yellow')); + assert.ok(famOf(families, 'green')); }); -test('familiesFromPalette: Boundary — a vivid accent stays out of a soft same-hue family', () => { - // intense-red (C 0.246) vs red (C 0.120) at similar lightness: the chroma clause keeps them apart - const pal = [['#ff2a00', 'intense-red'], ['#d47c59', 'red'], ['#a7502d', 'red-1']]; +test('familiesFromPalette: Normal - palette order controls column order', () => { + const pal = [['#67809c', 'blue'], ['#e8bd30', 'gold'], ['#5d9b86', 'green']]; const { families } = familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }); - assert.notEqual(famOf(families, 'intense-red'), famOf(families, 'red'), 'intense-red is its own family'); -}); - -test('familiesFromPalette: Boundary — grouping is independent of palette order', () => { - const base = [...GOLD, ...OLIVE, ['#67809c', 'blue'], ['#b2c3cc', 'blue+1'], ['#969385', 'gray']]; - const key = pal => familiesFromPalette(pal, { bg: '#000000', fg: '#ffffff' }).families - .map(f => f.members.map(m => m.name).sort().join(',')).sort().join(' | '); - const ref = key(base); - for (const seed of [1, 2, 3]) { // a few deterministic shuffles - const shuffled = base.map((e, i) => [e, ((i + 1) * seed * 7) % base.length]).sort((a, b) => a[1] - b[1]).map(x => x[0]); - assert.equal(key(shuffled), ref, 'shuffle ' + seed + ' yields the same grouping'); - } + assert.deepEqual(families.map(f => f.members[0].name), ['blue', 'gold', 'green']); }); -test('familiesFromPalette: Boundary — ground hex absent from the palette still forms the strip', () => { - const pal = [at(0.6, 0.1, 250, 'blue')]; +test('familiesFromPalette: Boundary - ground hex absent from the palette still forms the strip', () => { + const pal = [['#67809c', 'blue']]; const { ground } = familiesFromPalette(pal, { bg: '#0d0b0a', fg: '#f0fef0' }); assert.equal(ground.length, 2); assert.ok(ground.some(g => g.hex.toLowerCase() === '#0d0b0a' && g.role === 'bg')); assert.ok(ground.some(g => g.role === 'fg')); }); -test('familiesFromPalette: Boundary — a chip at a ground hex is not duplicated into a family', () => { - const pal = [['#0d0b0a', 'ground'], at(0.6, 0.1, 250, 'blue')]; +test('familiesFromPalette: Boundary - ground entries and ground-N steps stay out of normal columns', () => { + const pal = [['#0d0b0a', 'bg', 'ground'], ['#444444', 'ground-1', 'ground'], ['#67809c', 'blue']]; const { ground, families } = familiesFromPalette(pal, { bg: '#0d0b0a', fg: '#f0fef0' }); assert.ok(ground.some(g => g.hex.toLowerCase() === '#0d0b0a')); - assert.ok(!families.some(f => f.members.some(m => m.hex.toLowerCase() === '#0d0b0a')), 'ground chip stays out of families'); + assert.ok(!families.some(f => f.members.some(m => m.name === 'bg' || m.name === 'ground-1'))); }); // --- regenFamily ------------------------------------------------------------ -test('regenFamily: Normal — n steps each side plus the base, ordered by offset', () => { +test('regenFamily: Normal - n steps each side plus the base, ordered by offset', () => { const r = regenFamily('#67809c', 2); assert.equal(r.members.length, 5); assert.deepEqual(r.members.map(m => m.offset), [-2, -1, 0, 1, 2]); assert.equal(r.members.find(m => m.offset === 0).hex, '#67809c'); }); -test('regenFamily: Boundary — n=0 is the base alone, no ramp() clamp to 1', () => { +test('regenFamily: Boundary - n=0 is the base alone, no ramp() clamp to 1', () => { const r = regenFamily('#67809c', 0); assert.deepEqual(r.members, [{ hex: '#67809c', offset: 0, clamped: false }]); }); -test('regenFamily: Error — a malformed base returns a structured bad-hex', () => { +test('regenFamily: Error - a malformed base returns a structured bad-hex', () => { assert.deepEqual(regenFamily('nope', 2), { members: [], error: 'bad-hex' }); }); // --- rankByLightness -------------------------------------------------------- -test('rankByLightness: Normal — offsets are signed distance from the base by lightness', () => { +test('rankByLightness: Normal - offsets are signed distance from the base by lightness', () => { const members = regenFamily('#67809c', 2).members.map(m => m.hex); const ranked = rankByLightness(members, '#67809c'); const base = ranked.find(m => m.hex === '#67809c'); @@ -153,26 +92,26 @@ test('rankByLightness: Normal — offsets are signed distance from the base by l assert.deepEqual(sorted.map(m => m.offset), [-2, -1, 0, 1, 2]); }); -test('rankByLightness: Boundary — a base not among the members ranks by nearest lightness', () => { +test('rankByLightness: Boundary - a base not among the members ranks by nearest lightness', () => { const members = ['#222222', '#888888', '#dddddd']; - const ranked = rankByLightness(members, '#8a8a8a'); // near the mid member + const ranked = rankByLightness(members, '#8a8a8a'); const mid = ranked.find(m => m.hex === '#888888'); assert.equal(mid.offset, 0, 'nearest-lightness member is the base rank'); }); // --- stepRepointPlan -------------------------------------------------------- -test('stepRepointPlan: Normal — surviving offsets map old->new, changed hex only', () => { +test('stepRepointPlan: Normal - surviving offsets map old->new, changed hex only', () => { const oldR = [{ hex: '#111111', offset: -1 }, { hex: '#222222', offset: 0 }, { hex: '#333333', offset: 1 }]; const neu = [{ hex: '#111111', offset: -1 }, { hex: '#aaaaaa', offset: 0 }, { hex: '#444444', offset: 1 }]; const { map, removed } = stepRepointPlan(oldR, neu); assert.deepEqual(removed, []); - assert.deepEqual(map, [['#222222', '#aaaaaa'], ['#333333', '#444444']]); // -1 unchanged, skipped + assert.deepEqual(map, [['#222222', '#aaaaaa'], ['#333333', '#444444']]); }); -test('stepRepointPlan: Boundary — an offset with no new counterpart is removed, not repointed', () => { +test('stepRepointPlan: Boundary - an offset with no new counterpart is removed, not repointed', () => { const oldR = [{ hex: '#000033', offset: -3 }, { hex: '#222222', offset: 0 }]; - const neu = [{ hex: '#222222', offset: 0 }]; // count dropped, -3 gone + const neu = [{ hex: '#222222', offset: 0 }]; const { map, removed } = stepRepointPlan(oldR, neu); assert.deepEqual(map, []); assert.deepEqual(removed, ['#000033']); @@ -180,34 +119,14 @@ test('stepRepointPlan: Boundary — an offset with no new counterpart is removed // --- sortFamilies ----------------------------------------------------------- -const fam = (baseHex, neutral, members) => ({ base: baseHex, neutral: !!neutral, members: (members || [baseHex]).map(h => ({ hex: h, name: h })) }); - -test('sortFamilies: Normal — chromatic families order by base hue', () => { - const fams = [fam(oklch2hex(0.6, 0.1, 270).hex), fam(oklch2hex(0.6, 0.1, 30).hex), fam(oklch2hex(0.6, 0.1, 150).hex)]; - const sorted = sortFamilies(fams); - const hues = sorted.map(f => Math.round(oklab2oklch(srgb2oklab(f.base)).H)); - for (let i = 1; i < hues.length; i++) assert.ok(hues[i] > hues[i - 1], 'ascending hue: ' + hues.join(',')); -}); +const fam = (label, members) => ({ base: members[0], column: label, members: members.map((h, i) => ({ hex: h, name: label + i })) }); -test('sortFamilies: Boundary — neutral families pin ahead of chromatic ones', () => { - const sorted = sortFamilies([fam(oklch2hex(0.6, 0.1, 200).hex, false), fam('#808080', true)]); - assert.equal(sorted[0].neutral, true, 'neutral first'); - assert.equal(sorted[1].neutral, false); +test('sortFamilies: Normal - preserves first-seen column order', () => { + const fams = [fam('blue', ['#67809c']), fam('gold', ['#e8bd30']), fam('green', ['#5d9b86'])]; + assert.deepEqual(sortFamilies(fams).map(f => f.column), ['blue', 'gold', 'green']); }); -test('sortFamilies: Normal — members within a family sort dark to light', () => { +test('sortFamilies: Normal - preserves member order inside a column', () => { const members = ['#dddddd', '#222222', '#888888']; - const sorted = sortFamilies([fam(oklch2hex(0.6, 0.1, 200).hex, false, members)]); - const ls = sorted[0].members.map(m => oklab2oklch(srgb2oklab(m.hex)).L); - for (let i = 1; i < ls.length; i++) assert.ok(ls[i] > ls[i - 1], 'ascending lightness'); -}); - -test('sortFamilies: Boundary — order is (hue, then lightness); a hue tie falls to lightness', () => { - const bases = [oklch2hex(0.6, 0.1, 200).hex, oklch2hex(0.5, 0.1, 200).hex, oklch2hex(0.6, 0.1, 40).hex]; - const sorted = sortFamilies(bases.map(b => fam(b, false))); - const key = h => { const c = oklab2oklch(srgb2oklab(h)); return [Math.round(c.H), c.L]; }; - for (let i = 1; i < sorted.length; i++) { - const [h0, l0] = key(sorted[i - 1].base), [h1, l1] = key(sorted[i].base); - assert.ok(h0 < h1 || (h0 === h1 && l0 <= l1), `order at ${i}: hue ${h0}/${h1} L ${l0.toFixed(3)}/${l1.toFixed(3)}`); - } + assert.deepEqual(sortFamilies([fam('gray', members)])[0].members.map(m => m.hex), members); }); diff --git a/scripts/theme-studio/theme-studio.html b/scripts/theme-studio/theme-studio.html index b85eead8..552aa028 100644 --- a/scripts/theme-studio/theme-studio.html +++ b/scripts/theme-studio/theme-studio.html @@ -28,6 +28,7 @@ .pals{display:flex;flex-direction:row;flex-wrap:wrap;gap:10px;align-items:flex-start} .fstrip{display:flex;flex-direction:column;gap:6px;padding:5px;border-radius:7px;border:1px solid transparent} .fstrip.ground{border-color:#252321;background:#161412} + .fhead{min-height:17px;max-width:128px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#b4b1a2;font:9pt monospace;text-align:center} .fcount{margin-top:3px;font:9pt monospace;color:#8a9496;text-align:center} .fcount input{width:40px;background:#0d0b0a;border:1px solid #252321;color:#cdced1;border-radius:4px;padding:2px 4px;font:9pt monospace;text-align:center} .palwarn{display:none;margin-top:8px;font:10pt monospace;color:#cb6b4d} @@ -37,7 +38,7 @@ .pchip.sel{outline:3px solid #e8bd30;outline-offset:2px} .pchip input.nm{background:transparent;border:none;text-align:center;font:bold 10pt monospace;width:108px;outline:none} .pchip .hx{font-size:10pt;opacity:.8} .pchip .rm{position:absolute;top:2px;right:5px;background:none;border:none;cursor:pointer;font-size:14px;font-weight:bold;opacity:.7} .pchip .lock{position:absolute;top:3px;right:5px;font-size:10px;opacity:.6} - .palctl{margin-top:12px;display:flex;gap:8px;align-items:center;flex-wrap:wrap} + .palctl{margin:0 0 12px;display:flex;gap:8px;align-items:center;flex-wrap:wrap} .palctl input[type=text]{background:#161412;border:1px solid #252321;color:#cdced1;border-radius:4px;padding:5px 8px;font:10pt monospace} .palctl input[type=text]::placeholder{color:#b4b1a2;opacity:1} .palctl{position:relative} @@ -72,7 +73,8 @@ #palmsg{font:10pt monospace;opacity:0;transition:opacity .35s;margin-left:6px} #export{width:100%;height:180px;margin-top:10px;background:#0d0b0a;color:#a4ac64;border:1px solid #252321;border-radius:6px;font:10pt monospace;padding:10px} .filebar{margin:6px 0 0;display:flex;gap:8px;align-items:center} - #pagetitle{font-size:30px;color:#cdced1;font-weight:normal;border:none;margin:4px 0 18px;padding:0} + #pagetitle{font-size:30px;color:#cdced1;font-weight:normal;border:none;margin:0;padding:0} + .topbar{display:flex;gap:24px;align-items:flex-start;justify-content:space-between;margin:4px 0 18px} .cols{display:flex;gap:28px;align-items:flex-start} .cols.stretch{align-items:stretch} .pane{min-width:0} .pane.grow{flex:1} .pane.saveload{flex:0 0 auto;margin-left:auto} .pane h1{margin-top:0} @@ -92,12 +94,21 @@ @keyframes flashtok{0%,55%{background:#e8bd30aa;color:#000}100%{background:transparent}} .flashtok{animation:flashtok 1.1s ease-out;border-radius:2px} -

Untitled: theme

-
+
+

Untitled: theme

+
+
+ + + + + +
+ +
+

palette

-
-
@@ -124,21 +135,9 @@
+
+
-
-

export, import, and save

-
- -
-
- - - - -
- -
-

code/color assignments

@@ -178,9 +177,9 @@
\ No newline at end of file -- cgit v1.2.3