From 9cf9f34a2a455ab43ba382c44d0b67a6e9162297 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 22 May 2017 09:41:16 +0200 Subject: [PATCH] fix: Improve sidebar colorization --- src/themes/settings/specific/darker.json | 2 ++ src/themes/settings/specific/default.json | 2 ++ src/themes/settings/specific/lighter.json | 2 ++ src/themes/settings/specific/palenight.json | 2 ++ src/themes/theme-template-color-theme.json | 10 ++++++---- themes/Material-Theme-Darker.json | 10 ++++++---- themes/Material-Theme-Default.json | 10 ++++++---- themes/Material-Theme-Lighter.json | 10 ++++++---- themes/Material-Theme-Palenight.json | 10 ++++++---- 9 files changed, 38 insertions(+), 20 deletions(-) diff --git a/src/themes/settings/specific/darker.json b/src/themes/settings/specific/darker.json index 2a0000c..0a4cd41 100644 --- a/src/themes/settings/specific/darker.json +++ b/src/themes/settings/specific/darker.json @@ -21,6 +21,8 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#4A4A4A", + "sidebarForeground": "#EEFFFF70", + "listHoverForeground": "#FFFFFF", "base": { "white": "#ffffff", "black": "#000000", diff --git a/src/themes/settings/specific/default.json b/src/themes/settings/specific/default.json index 104f10c..167b419 100644 --- a/src/themes/settings/specific/default.json +++ b/src/themes/settings/specific/default.json @@ -21,6 +21,8 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#546E7A", + "sidebarForeground": "#EEFFFF70", + "listHoverForeground": "#FFFFFF", "base": { "white": "#ffffff", "black": "#000000", diff --git a/src/themes/settings/specific/lighter.json b/src/themes/settings/specific/lighter.json index 2e3ed0d..d75f69b 100644 --- a/src/themes/settings/specific/lighter.json +++ b/src/themes/settings/specific/lighter.json @@ -21,6 +21,8 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#90A4AE", + "sidebarForeground": "#7E939E", + "listHoverForeground": "#B1C7D3", "base": { "white": "#FFFFFF", "black": "#000000", diff --git a/src/themes/settings/specific/palenight.json b/src/themes/settings/specific/palenight.json index 8bd1c5e..d4666a3 100644 --- a/src/themes/settings/specific/palenight.json +++ b/src/themes/settings/specific/palenight.json @@ -21,6 +21,8 @@ "scrollbars": "#00000050", "scrollbarsHover": "#00000030", "statusbarForeground": "#676E95", + "sidebarForeground": "#A6ACCD80", + "listHoverForeground": "#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 d01c81b..585fd8c 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -711,6 +711,7 @@ "titleBar.inactiveBackground": "{{variant.scheme.background}}", "titleBar.inactiveForeground": "{{variant.scheme.comments}}", "sideBar.background": "{{variant.scheme.background}}", + "sideBar.foreground": "{{variant.scheme.sidebarForeground}}", "sideBarTitle.foreground": "{{variant.scheme.foreground}}", "sideBarSectionHeader.background": "{{variant.scheme.background}}", "input.background": "{{variant.scheme.inputBackground}}", @@ -722,13 +723,14 @@ "inputValidation.warningBorder": "{{variant.scheme.base.yellow}}", "dropdown.background": "{{variant.scheme.background}}", "dropdown.border": "{{variant.scheme.inputBorder}}", - "list.hoverForeground": "{{commons.accents.teal}}", + "list.hoverForeground": "{{variant.scheme.listHoverForeground}}", "list.hoverBackground": "{{variant.scheme.background}}", - "list.activeSelectionBackground": "{{variant.scheme.lineHighlight}}50", + "list.activeSelectionBackground": "{{variant.scheme.background}}", "list.activeSelectionForeground": "{{commons.accents.teal}}", - "list.inactiveSelectionBackground": "{{variant.scheme.lineHighlight}}50", + "list.inactiveSelectionBackground": "{{variant.scheme.background}}", + "list.focusBackground": "{{variant.scheme.foreground}}10", + "list.focusForeground": "{{variant.scheme.foreground}}", "list.highlightForeground": "{{commons.accents.teal}}", - "list.focusBackground": "{{variant.scheme.lineNumbers}}", "terminal.ansiWhite": "{{variant.scheme.base.white}}", "terminal.ansiBlack": "{{variant.scheme.comments}}", "terminal.ansiBlue": "{{variant.scheme.base.blue}}", diff --git a/themes/Material-Theme-Darker.json b/themes/Material-Theme-Darker.json index f2ba4d1..9b75d3f 100644 --- a/themes/Material-Theme-Darker.json +++ b/themes/Material-Theme-Darker.json @@ -711,6 +711,7 @@ "titleBar.inactiveBackground": "#212121", "titleBar.inactiveForeground": "#4A4A4A", "sideBar.background": "#212121", + "sideBar.foreground": "#EEFFFF70", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.background": "#212121", "input.background": "#FFFFFF05", @@ -722,13 +723,14 @@ "inputValidation.warningBorder": "#FFCB6B", "dropdown.background": "#212121", "dropdown.border": "#FFFFFF10", - "list.hoverForeground": "#80CBC4", + "list.hoverForeground": "#FFFFFF", "list.hoverBackground": "#212121", - "list.activeSelectionBackground": "#00000050", + "list.activeSelectionBackground": "#212121", "list.activeSelectionForeground": "#80CBC4", - "list.inactiveSelectionBackground": "#00000050", + "list.inactiveSelectionBackground": "#212121", + "list.focusBackground": "#EEFFFF10", + "list.focusForeground": "#EEFFFF", "list.highlightForeground": "#80CBC4", - "list.focusBackground": "#424242", "terminal.ansiWhite": "#ffffff", "terminal.ansiBlack": "#4A4A4A", "terminal.ansiBlue": "#82AAFF", diff --git a/themes/Material-Theme-Default.json b/themes/Material-Theme-Default.json index 6ac5f86..2d5bdb4 100644 --- a/themes/Material-Theme-Default.json +++ b/themes/Material-Theme-Default.json @@ -711,6 +711,7 @@ "titleBar.inactiveBackground": "#263238", "titleBar.inactiveForeground": "#546E7A", "sideBar.background": "#263238", + "sideBar.foreground": "#EEFFFF70", "sideBarTitle.foreground": "#EEFFFF", "sideBarSectionHeader.background": "#263238", "input.background": "#FFFFFF05", @@ -722,13 +723,14 @@ "inputValidation.warningBorder": "#FFCB6B", "dropdown.background": "#263238", "dropdown.border": "#FFFFFF10", - "list.hoverForeground": "#80CBC4", + "list.hoverForeground": "#FFFFFF", "list.hoverBackground": "#263238", - "list.activeSelectionBackground": "#00000050", + "list.activeSelectionBackground": "#263238", "list.activeSelectionForeground": "#80CBC4", - "list.inactiveSelectionBackground": "#00000050", + "list.inactiveSelectionBackground": "#263238", + "list.focusBackground": "#EEFFFF10", + "list.focusForeground": "#EEFFFF", "list.highlightForeground": "#80CBC4", - "list.focusBackground": "#37474F", "terminal.ansiWhite": "#ffffff", "terminal.ansiBlack": "#546E7A", "terminal.ansiBlue": "#82AAFF", diff --git a/themes/Material-Theme-Lighter.json b/themes/Material-Theme-Lighter.json index 80af78e..c01f9a6 100644 --- a/themes/Material-Theme-Lighter.json +++ b/themes/Material-Theme-Lighter.json @@ -711,6 +711,7 @@ "titleBar.inactiveBackground": "#FAFAFA", "titleBar.inactiveForeground": "#90A4AE90", "sideBar.background": "#FAFAFA", + "sideBar.foreground": "#7E939E", "sideBarTitle.foreground": "#90A4AE", "sideBarSectionHeader.background": "#FAFAFA", "input.background": "#00000005", @@ -722,13 +723,14 @@ "inputValidation.warningBorder": "#FFB62C", "dropdown.background": "#FAFAFA", "dropdown.border": "#00000010", - "list.hoverForeground": "#80CBC4", + "list.hoverForeground": "#B1C7D3", "list.hoverBackground": "#FAFAFA", - "list.activeSelectionBackground": "#CCD7DA50", + "list.activeSelectionBackground": "#FAFAFA", "list.activeSelectionForeground": "#80CBC4", - "list.inactiveSelectionBackground": "#CCD7DA50", + "list.inactiveSelectionBackground": "#FAFAFA", + "list.focusBackground": "#90A4AE10", + "list.focusForeground": "#90A4AE", "list.highlightForeground": "#80CBC4", - "list.focusBackground": "#CFD8DC", "terminal.ansiWhite": "#FFFFFF", "terminal.ansiBlack": "#90A4AE90", "terminal.ansiBlue": "#6182B8", diff --git a/themes/Material-Theme-Palenight.json b/themes/Material-Theme-Palenight.json index 80d1e79..28b36ae 100644 --- a/themes/Material-Theme-Palenight.json +++ b/themes/Material-Theme-Palenight.json @@ -711,6 +711,7 @@ "titleBar.inactiveBackground": "#292D3E", "titleBar.inactiveForeground": "#676E95", "sideBar.background": "#292D3E", + "sideBar.foreground": "#A6ACCD80", "sideBarTitle.foreground": "#A6ACCD", "sideBarSectionHeader.background": "#292D3E", "input.background": "#FFFFFF05", @@ -722,13 +723,14 @@ "inputValidation.warningBorder": "#FFCB6B", "dropdown.background": "#292D3E", "dropdown.border": "#FFFFFF10", - "list.hoverForeground": "#80CBC4", + "list.hoverForeground": "#FFFFFF", "list.hoverBackground": "#292D3E", - "list.activeSelectionBackground": "#00000050", + "list.activeSelectionBackground": "#292D3E", "list.activeSelectionForeground": "#80CBC4", - "list.inactiveSelectionBackground": "#00000050", + "list.inactiveSelectionBackground": "#292D3E", + "list.focusBackground": "#A6ACCD10", + "list.focusForeground": "#A6ACCD", "list.highlightForeground": "#80CBC4", - "list.focusBackground": "#3A3F58", "terminal.ansiWhite": "#ffffff", "terminal.ansiBlack": "#676E95", "terminal.ansiBlue": "#82AAFF",