From 19dfd822fb7c65a952595759c78149d683181404 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 26 Apr 2018 04:32:27 -0700 Subject: [PATCH] Set active tab border and line number to color1 --- src/vscodeThemeGenerator.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index decc848..b5d6771 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -143,9 +143,10 @@ export class VscodeThemeGenerator implements IThemeGenerator { // tab.border: Border to separate tabs from each other. 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['tab.border'] = addAlpha('#000000', 0.2); // tab.inactiveBackground: Inactive tab background color. 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['tab.activeBorder'] = colorSet.base.color1; theme.colors['tab.inactiveBackground'] = background4; // tab.inactiveForeground: Inactive tab foreground color in an active group. 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. - + // Editor Colors // editor.background: Editor background color. theme.colors['editor.background'] = background2; @@ -153,6 +154,7 @@ export class VscodeThemeGenerator implements IThemeGenerator { theme.colors['editor.foreground'] = colorSet.base.foreground; // editorLineNumber.foreground: Color of editor line numbers. theme.colors['editorLineNumber.foreground'] = addAlpha('#FFFFFF', 0.3); + theme.colors['editorLineNumber.activeForeground'] = colorSet.base.color1; // editorCursor.foreground: Color of the editor cursor. if (colorSet.ui.cursor) theme.colors['editorCursor.foreground'] = colorSet.ui.cursor; // editor.selectionBackground: Color of the editor selection.