From fff5f57f68fa2f3ee6bc9fdd45f51e0a14524c36 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 31 May 2018 09:52:47 -0700 Subject: [PATCH] Support editorGroup.focusedEmptyBorder Fixes #52 --- src/vscodeThemeGenerator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index 557f097..18b6c01 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -136,6 +136,7 @@ export class VscodeThemeGenerator implements IThemeGenerator { // editorGroup.border: Color to separate multiple editor groups from each other. Editor groups are the containers of editors. // editorGroup.dropBackground: Background color when dragging editors around. theme.colors['editorGroup.dropBackground'] = addAlpha(colorSet.base.color1, 0.5); + theme.colors['editorGroup.focusedEmptyBorder'] = colorSet.base.color1; // editorGroupHeader.noTabsBackground: Background color of the editor group title header when tabs are disabled. Editor groups are the containers of editors. // editorGroupHeader.tabsBackground: Background color of the tabs container. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups. theme.colors['editorGroupHeader.tabsBackground'] = background3;