diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index 24db41b..00cef48 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -71,6 +71,10 @@ export class VscodeThemeGenerator implements IThemeGenerator { theme.colors['editorFindWidgetBackground'] = lighten(colorSet.base.background, 0.2); theme.colors['editorFindInputBackground'] = lighten(colorSet.base.background, 0.4); theme.colors['editorFindCheckedBorders'] = colorSet.base.color1; + // Editor marker + theme.colors['editorMarkerNavigationBackground'] = lighten(colorSet.base.background, 0.2); + theme.colors['editorMarkerNavigationError'] = colorSet.base.color2; + theme.colors['editorMarkerNavigationWarning'] = colorSet.base.color2; return JSON.stringify(theme); }