Add input box and dropdown bg rules

This commit is contained in:
Daniel Imms
2017-03-31 03:35:31 -07:00
parent ed2bc6ddc9
commit 7e88144c22

View File

@@ -59,6 +59,8 @@ export class VscodeThemeGenerator implements IThemeGenerator {
theme.colors['sideBarBackground'] = lighten(colorSet.base.background, 0.2); theme.colors['sideBarBackground'] = lighten(colorSet.base.background, 0.2);
theme.colors['panelBackground'] = lighten(colorSet.base.background, 0.2); theme.colors['panelBackground'] = lighten(colorSet.base.background, 0.2);
theme.colors['activityBarBackground'] = lighten(colorSet.base.background, 0.4); theme.colors['activityBarBackground'] = lighten(colorSet.base.background, 0.4);
theme.colors['inputBoxBackground'] = lighten(colorSet.base.background, 0.4);
theme.colors['dropdownBackground'] = lighten(colorSet.base.background, 0.4);
theme.colors['statusBarBackground'] = darken(colorSet.base.background, 0.2); theme.colors['statusBarBackground'] = darken(colorSet.base.background, 0.2);
// Peek editor // Peek editor
theme.colors['editorPeekEditorBackground'] = darken(colorSet.base.background, 0.2); theme.colors['editorPeekEditorBackground'] = darken(colorSet.base.background, 0.2);