From 109c5c7bb94d1884aea80bef9c99cff52bc6adc5 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 23 Mar 2017 21:54:42 -0700 Subject: [PATCH] Peek and find styles --- src/vscodeThemeGenerator.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts index 84eb6bb..24db41b 100644 --- a/src/vscodeThemeGenerator.ts +++ b/src/vscodeThemeGenerator.ts @@ -53,6 +53,7 @@ export class VscodeThemeGenerator implements IThemeGenerator { }); theme.tokenColors.push(globalSettings); + // TODO: Expose details options on IColorSet theme.colors['tabsContainerBackground'] = lighten(colorSet.base.background, 0.2); theme.colors['inactiveTabBackground'] = lighten(colorSet.base.background, 0.4); theme.colors['sideBarBackground'] = lighten(colorSet.base.background, 0.2); @@ -61,6 +62,15 @@ export class VscodeThemeGenerator implements IThemeGenerator { theme.colors['statusBarBackground'] = darken(colorSet.base.background, 0.2); // Peek editor theme.colors['editorPeekEditorBackground'] = darken(colorSet.base.background, 0.2); + theme.colors['editorPeekTitleBackground'] = colorSet.base.background; + theme.colors['editorPeekBorder'] = colorSet.base.color1; + theme.colors['editorPeekResultsBackground'] = lighten(colorSet.base.background, 0.2); + theme.colors['editorPeekFindMatchHighlight'] = colorSet.base.color2 + '4d'; + theme.colors['editorPeekReferenceHighlight'] = colorSet.base.color2 + '4d'; + // Find widget + theme.colors['editorFindWidgetBackground'] = lighten(colorSet.base.background, 0.2); + theme.colors['editorFindInputBackground'] = lighten(colorSet.base.background, 0.4); + theme.colors['editorFindCheckedBorders'] = colorSet.base.color1; return JSON.stringify(theme); }