Reduce range highligth visibility

This commit is contained in:
Daniel Imms
2017-04-30 19:12:26 -07:00
parent ce70cd6a8c
commit 2190012b0f

View File

@@ -86,8 +86,8 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['list.inactiveSelectionBackground'] = '#FFFFFF33';
theme.colors['editor.lineHighlightBorder'] = '#FFFFFF1A';
theme.colors['editor.rangeHighlightBackground'] = '#FFFFFF1A';
// TODO: Support editorLineHighlig
theme.colors['editor.rangeHighlightBackground'] = '#FFFFFF0D';
// TODO: Support editorLineHighlight
theme.colors['editorGroup.dropBackground'] = colorSet.base.color1 + '80';
theme.colors['activityBar.dropBackground'] = colorSet.base.color1 + '80';
theme.colors['panelTitle.activeBorder'] = colorSet.base.color1;
@@ -95,6 +95,7 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['statusBarItem.hoverBackground'] = '#FFFFFF1A';
theme.colors['statusBarItem.activeBackground'] = colorSet.base.color1 + '80';
theme.colors['pickerGroup.border'] = '#FFFFFF1A';
theme.colors['panel.border'] = '#FFFFFF1A';
return JSON.stringify(theme);
}