From ea3977280b77775634406e4c625660ac66b0cac2 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 11 Jan 2022 07:33:12 -0800 Subject: [PATCH] Don't set focusBackground Fixes #64 --- src/vscodeThemeGenerator.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index da7e340..7c27670 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -111,8 +111,6 @@ export class VscodeThemeGenerator implements IThemeGenerator { theme.colors['list.activeSelectionForeground'] = '#FFFFFF'; // list.dropBackground: List/Tree drag and drop background when moving items around using the mouse. theme.colors['list.dropBackground'] = addAlpha(colorSet.base.color1, 0.5); - // list.focusBackground: List/Tree background color for the focused item when the list/tree is active. An active list/tree has keyboard focus, an inactive does not. - theme.colors['list.focusBackground'] = addAlpha(colorSet.base.color1, 0.5); theme.colors['list.focusForeground'] = '#FFFFFF'; // list.highlightForeground: List/Tree foreground color of the match highlights when searching inside the list/tree. theme.colors['list.highlightForeground'] = colorSet.base.color1;