From 6d5cef66845699c246eb0f9ccce815f93a617f44 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Tue, 23 May 2017 14:47:05 +0200 Subject: [PATCH 1/3] fix: Fix inputs placeholder color --- src/themes/theme-template-color-theme.json | 2 +- themes/Material-Theme-Darker.json | 2 +- themes/Material-Theme-Default.json | 2 +- themes/Material-Theme-Lighter.json | 2 +- themes/Material-Theme-Palenight.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 585fd8c..55e5a06 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -716,7 +716,7 @@ "sideBarSectionHeader.background": "{{variant.scheme.background}}", "input.background": "{{variant.scheme.inputBackground}}", "input.foreground": "{{variant.scheme.inputForeground}}", - "input.placeholderForeground": "{{variant.scheme.foreground}}", + "input.placeholderForeground": "{{variant.scheme.foreground}}60", "input.border": "{{variant.scheme.inputBorder}}", "inputValidation.errorBorder": "{{variant.scheme.base.red}}", "inputValidation.infoBorder": "{{variant.scheme.base.blue}}", diff --git a/themes/Material-Theme-Darker.json b/themes/Material-Theme-Darker.json index 9b75d3f..5c896ec 100644 --- a/themes/Material-Theme-Darker.json +++ b/themes/Material-Theme-Darker.json @@ -716,7 +716,7 @@ "sideBarSectionHeader.background": "#212121", "input.background": "#FFFFFF05", "input.foreground": "#EEFFFF", - "input.placeholderForeground": "#EEFFFF", + "input.placeholderForeground": "#EEFFFF60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#FF5370", "inputValidation.infoBorder": "#82AAFF", diff --git a/themes/Material-Theme-Default.json b/themes/Material-Theme-Default.json index 2d5bdb4..0682b42 100644 --- a/themes/Material-Theme-Default.json +++ b/themes/Material-Theme-Default.json @@ -716,7 +716,7 @@ "sideBarSectionHeader.background": "#263238", "input.background": "#FFFFFF05", "input.foreground": "#EEFFFF", - "input.placeholderForeground": "#EEFFFF", + "input.placeholderForeground": "#EEFFFF60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#FF5370", "inputValidation.infoBorder": "#82AAFF", diff --git a/themes/Material-Theme-Lighter.json b/themes/Material-Theme-Lighter.json index c01f9a6..42e4612 100644 --- a/themes/Material-Theme-Lighter.json +++ b/themes/Material-Theme-Lighter.json @@ -716,7 +716,7 @@ "sideBarSectionHeader.background": "#FAFAFA", "input.background": "#00000005", "input.foreground": "#90A4AE", - "input.placeholderForeground": "#90A4AE", + "input.placeholderForeground": "#90A4AE60", "input.border": "#00000010", "inputValidation.errorBorder": "#E53935", "inputValidation.infoBorder": "#6182B8", diff --git a/themes/Material-Theme-Palenight.json b/themes/Material-Theme-Palenight.json index 28b36ae..2237224 100644 --- a/themes/Material-Theme-Palenight.json +++ b/themes/Material-Theme-Palenight.json @@ -716,7 +716,7 @@ "sideBarSectionHeader.background": "#292D3E", "input.background": "#FFFFFF05", "input.foreground": "#EEFFFF", - "input.placeholderForeground": "#A6ACCD", + "input.placeholderForeground": "#A6ACCD60", "input.border": "#FFFFFF10", "inputValidation.errorBorder": "#FF5370", "inputValidation.infoBorder": "#82AAFF", From 351cd20bb5fe3dec51e9baf8f21b4e62f6038260 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Thu, 25 May 2017 08:44:26 +0200 Subject: [PATCH 2/3] fix: Fix tree selected foreground when sidebar is inactive --- src/themes/theme-template-color-theme.json | 1 + themes/Material-Theme-Darker.json | 1 + themes/Material-Theme-Default.json | 1 + themes/Material-Theme-Lighter.json | 1 + themes/Material-Theme-Palenight.json | 1 + 5 files changed, 5 insertions(+) diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 55e5a06..7b31948 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -727,6 +727,7 @@ "list.hoverBackground": "{{variant.scheme.background}}", "list.activeSelectionBackground": "{{variant.scheme.background}}", "list.activeSelectionForeground": "{{commons.accents.teal}}", + "list.inactiveSelectionForeground": "{{commons.accents.teal}}", "list.inactiveSelectionBackground": "{{variant.scheme.background}}", "list.focusBackground": "{{variant.scheme.foreground}}10", "list.focusForeground": "{{variant.scheme.foreground}}", diff --git a/themes/Material-Theme-Darker.json b/themes/Material-Theme-Darker.json index 5c896ec..ef7dc15 100644 --- a/themes/Material-Theme-Darker.json +++ b/themes/Material-Theme-Darker.json @@ -727,6 +727,7 @@ "list.hoverBackground": "#212121", "list.activeSelectionBackground": "#212121", "list.activeSelectionForeground": "#80CBC4", + "list.inactiveSelectionForeground": "#80CBC4", "list.inactiveSelectionBackground": "#212121", "list.focusBackground": "#EEFFFF10", "list.focusForeground": "#EEFFFF", diff --git a/themes/Material-Theme-Default.json b/themes/Material-Theme-Default.json index 0682b42..0b64751 100644 --- a/themes/Material-Theme-Default.json +++ b/themes/Material-Theme-Default.json @@ -727,6 +727,7 @@ "list.hoverBackground": "#263238", "list.activeSelectionBackground": "#263238", "list.activeSelectionForeground": "#80CBC4", + "list.inactiveSelectionForeground": "#80CBC4", "list.inactiveSelectionBackground": "#263238", "list.focusBackground": "#EEFFFF10", "list.focusForeground": "#EEFFFF", diff --git a/themes/Material-Theme-Lighter.json b/themes/Material-Theme-Lighter.json index 42e4612..551514d 100644 --- a/themes/Material-Theme-Lighter.json +++ b/themes/Material-Theme-Lighter.json @@ -727,6 +727,7 @@ "list.hoverBackground": "#FAFAFA", "list.activeSelectionBackground": "#FAFAFA", "list.activeSelectionForeground": "#80CBC4", + "list.inactiveSelectionForeground": "#80CBC4", "list.inactiveSelectionBackground": "#FAFAFA", "list.focusBackground": "#90A4AE10", "list.focusForeground": "#90A4AE", diff --git a/themes/Material-Theme-Palenight.json b/themes/Material-Theme-Palenight.json index 2237224..9e4dbfc 100644 --- a/themes/Material-Theme-Palenight.json +++ b/themes/Material-Theme-Palenight.json @@ -727,6 +727,7 @@ "list.hoverBackground": "#292D3E", "list.activeSelectionBackground": "#292D3E", "list.activeSelectionForeground": "#80CBC4", + "list.inactiveSelectionForeground": "#80CBC4", "list.inactiveSelectionBackground": "#292D3E", "list.focusBackground": "#A6ACCD10", "list.focusForeground": "#A6ACCD", From 4993587d42472339265db0f660e7bfbc90913e89 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Thu, 25 May 2017 08:54:07 +0200 Subject: [PATCH 3/3] fix: Improve sidebar tree coloring --- src/themes/settings/specific/darker.json | 3 ++- src/themes/settings/specific/default.json | 3 ++- src/themes/settings/specific/lighter.json | 1 + src/themes/settings/specific/palenight.json | 3 ++- src/themes/theme-template-color-theme.json | 2 +- themes/Material-Theme-Darker.json | 4 ++-- themes/Material-Theme-Default.json | 4 ++-- themes/Material-Theme-Lighter.json | 2 +- themes/Material-Theme-Palenight.json | 4 ++-- 9 files changed, 15 insertions(+), 11 deletions(-) diff --git a/src/themes/settings/specific/darker.json b/src/themes/settings/specific/darker.json index 0a4cd41..bac80ed 100644 --- a/src/themes/settings/specific/darker.json +++ b/src/themes/settings/specific/darker.json @@ -21,8 +21,9 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#4A4A4A", - "sidebarForeground": "#EEFFFF70", + "sidebarForeground": "#4A4A4A", "listHoverForeground": "#FFFFFF", + "tabActiveForeground": "#FFFFFF", "base": { "white": "#ffffff", "black": "#000000", diff --git a/src/themes/settings/specific/default.json b/src/themes/settings/specific/default.json index 167b419..348947c 100644 --- a/src/themes/settings/specific/default.json +++ b/src/themes/settings/specific/default.json @@ -21,8 +21,9 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#546E7A", - "sidebarForeground": "#EEFFFF70", + "sidebarForeground": "#546E7A", "listHoverForeground": "#FFFFFF", + "tabActiveForeground": "#FFFFFF", "base": { "white": "#ffffff", "black": "#000000", diff --git a/src/themes/settings/specific/lighter.json b/src/themes/settings/specific/lighter.json index d75f69b..7684636 100644 --- a/src/themes/settings/specific/lighter.json +++ b/src/themes/settings/specific/lighter.json @@ -23,6 +23,7 @@ "statusbarForeground": "#90A4AE", "sidebarForeground": "#7E939E", "listHoverForeground": "#B1C7D3", + "tabActiveForeground": "#000000", "base": { "white": "#FFFFFF", "black": "#000000", diff --git a/src/themes/settings/specific/palenight.json b/src/themes/settings/specific/palenight.json index d4666a3..bf55391 100644 --- a/src/themes/settings/specific/palenight.json +++ b/src/themes/settings/specific/palenight.json @@ -21,8 +21,9 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#676E95", - "sidebarForeground": "#A6ACCD80", + "sidebarForeground": "#676E95", "listHoverForeground": "#FFFFFF", + "tabActiveForeground": "#FFFFFF", "base": { "white": "#ffffff", "black": "#000000", diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 7b31948..3524d9a 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -695,7 +695,7 @@ "editorIndentGuide.background": "{{variant.scheme.guides}}", "editorGroupHeader.tabsBackground": "{{variant.scheme.background}}", "editorGroup.border": "{{variant.scheme.shadow}}", - "tab.activeForeground": "{{variant.scheme.foreground}}", + "tab.activeForeground": "{{variant.scheme.tabActiveForeground}}", "tab.inactiveForeground": "{{variant.scheme.comments}}", "tab.inactiveBackground": "{{variant.scheme.background}}", "tab.border": "{{variant.scheme.background}}", diff --git a/themes/Material-Theme-Darker.json b/themes/Material-Theme-Darker.json index ef7dc15..0a9a39e 100644 --- a/themes/Material-Theme-Darker.json +++ b/themes/Material-Theme-Darker.json @@ -695,7 +695,7 @@ "editorIndentGuide.background": "#42424270", "editorGroupHeader.tabsBackground": "#212121", "editorGroup.border": "#00000030", - "tab.activeForeground": "#EEFFFF", + "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#4A4A4A", "tab.inactiveBackground": "#212121", "tab.border": "#212121", @@ -711,7 +711,7 @@ "titleBar.inactiveBackground": "#212121", "titleBar.inactiveForeground": "#4A4A4A", "sideBar.background": "#212121", - "sideBar.foreground": "#EEFFFF70", + "sideBar.foreground": "#4A4A4A", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.background": "#212121", "input.background": "#FFFFFF05", diff --git a/themes/Material-Theme-Default.json b/themes/Material-Theme-Default.json index 0b64751..f0cc82c 100644 --- a/themes/Material-Theme-Default.json +++ b/themes/Material-Theme-Default.json @@ -695,7 +695,7 @@ "editorIndentGuide.background": "#37474F80", "editorGroupHeader.tabsBackground": "#263238", "editorGroup.border": "#00000030", - "tab.activeForeground": "#EEFFFF", + "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#546E7A", "tab.inactiveBackground": "#263238", "tab.border": "#263238", @@ -711,7 +711,7 @@ "titleBar.inactiveBackground": "#263238", "titleBar.inactiveForeground": "#546E7A", "sideBar.background": "#263238", - "sideBar.foreground": "#EEFFFF70", + "sideBar.foreground": "#546E7A", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.background": "#263238", "input.background": "#FFFFFF05", diff --git a/themes/Material-Theme-Lighter.json b/themes/Material-Theme-Lighter.json index 551514d..b44cc9e 100644 --- a/themes/Material-Theme-Lighter.json +++ b/themes/Material-Theme-Lighter.json @@ -695,7 +695,7 @@ "editorIndentGuide.background": "#B0BEC570", "editorGroupHeader.tabsBackground": "#FAFAFA", "editorGroup.border": "#00000020", - "tab.activeForeground": "#90A4AE", + "tab.activeForeground": "#000000", "tab.inactiveForeground": "#90A4AE90", "tab.inactiveBackground": "#FAFAFA", "tab.border": "#FAFAFA", diff --git a/themes/Material-Theme-Palenight.json b/themes/Material-Theme-Palenight.json index 9e4dbfc..01922f6 100644 --- a/themes/Material-Theme-Palenight.json +++ b/themes/Material-Theme-Palenight.json @@ -695,7 +695,7 @@ "editorIndentGuide.background": "#4E557980", "editorGroupHeader.tabsBackground": "#292D3E", "editorGroup.border": "#00000030", - "tab.activeForeground": "#A6ACCD", + "tab.activeForeground": "#FFFFFF", "tab.inactiveForeground": "#676E95", "tab.inactiveBackground": "#292D3E", "tab.border": "#292D3E", @@ -711,7 +711,7 @@ "titleBar.inactiveBackground": "#292D3E", "titleBar.inactiveForeground": "#676E95", "sideBar.background": "#292D3E", - "sideBar.foreground": "#A6ACCD80", + "sideBar.foreground": "#676E95", "sideBarTitle.foreground": "#A6ACCD", "sideBarSectionHeader.background": "#292D3E", "input.background": "#FFFFFF05",