Improve status bar colors

This commit is contained in:
Daniel Imms
2017-04-04 11:57:43 -07:00
parent 7cda42d7ab
commit c7de85184f

View File

@@ -63,6 +63,8 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['inputBoxBackground'] = lighten(colorSet.base.background, 0.6); theme.colors['inputBoxBackground'] = lighten(colorSet.base.background, 0.6);
theme.colors['dropdownBackground'] = lighten(colorSet.base.background, 0.6); theme.colors['dropdownBackground'] = lighten(colorSet.base.background, 0.6);
theme.colors['statusBarBackground'] = darken(colorSet.base.background, 0.2); theme.colors['statusBarBackground'] = darken(colorSet.base.background, 0.2);
theme.colors['statusBarNoFolderBackground'] = darken(colorSet.base.background, 0.2); // Don't make distinction between folder/no folder
theme.colors['statusBarDebuggingBackground'] = colorSet.base.color1; // Don't make distinction between folder/no folder
theme.colors['focusedElementOutline'] = colorSet.base.color1; theme.colors['focusedElementOutline'] = colorSet.base.color1;
// Peek editor // Peek editor
theme.colors['editorPeekEditorBackground'] = darken(colorSet.base.background, 0.2); theme.colors['editorPeekEditorBackground'] = darken(colorSet.base.background, 0.2);