Editor marker styles

This commit is contained in:
Daniel Imms
2017-03-23 21:56:50 -07:00
parent 109c5c7bb9
commit 23590756a2

View File

@@ -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);
}