aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Daniel Smith <rdnlsmith@gmail.com> 2020-07-17 18:52:56 -0400
committerGravatar Daniel Smith <rdnlsmith@gmail.com> 2020-07-17 18:52:56 -0400
commit5675f5d0e25a81112175474394d15f7d2edf9b21 (patch)
tree9c7f367bd33e0bc2c668ff0fbd2842d0fb634798
parenta1cb49d296e5415e4b1edcd67964ded61596557d (diff)
Make Yaru Dark a little darker
Darken sidebar section headers so they continue to match the activity bar, and darken the dropdown background so it continues to match the input background. Darken the sidebar for better contrast with new section header color and to match the Settings app sidebar in 20.04 Yaru Dark.
-rw-r--r--themes/dark/yaru-dark.json6
-rw-r--r--themes/src/dark/yaru-dark.ts5
2 files changed, 6 insertions, 5 deletions
diff --git a/themes/dark/yaru-dark.json b/themes/dark/yaru-dark.json
index ca1ef08..81af7cb 100644
--- a/themes/dark/yaru-dark.json
+++ b/themes/dark/yaru-dark.json
@@ -343,7 +343,7 @@
"foreground": "#FFFFFF",
"button.background": "#e95420",
"button.foreground": "#ffffff",
- "dropdown.background": "#595959",
+ "dropdown.background": "#484848",
"input.background": "#484848",
"inputOption.activeBorder": "#e95420",
"list.activeSelectionBackground": "#e95420",
@@ -360,8 +360,8 @@
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#991121",
"badge.foreground": "#ffffff",
- "sideBar.background": "#3f3f3f",
- "sideBarSectionHeader.background": "#575757",
+ "sideBar.background": "#343434",
+ "sideBarSectionHeader.background": "#484848",
"editorGroup.dropBackground": "#e9542080",
"editorGroup.focusedEmptyBorder": "#e95420",
"editorGroupHeader.tabsBackground": "#383838",
diff --git a/themes/src/dark/yaru-dark.ts b/themes/src/dark/yaru-dark.ts
index fce36ba..008bc7b 100644
--- a/themes/src/dark/yaru-dark.ts
+++ b/themes/src/dark/yaru-dark.ts
@@ -17,7 +17,7 @@ const colors = {
bodyGray: '#383838',
editorGray: '#2f2f2f',
activityBarGray: '#484848',
- sideBarGray: '#3f3f3f',
+ sideBarGray: '#343434',
highlightGray: '#575757',
commentGray: '#a8a8a8',
badgeGreen: '#0c6d1a',
@@ -77,8 +77,9 @@ const colorSet: IColorSet = {
'menubar.selectionBackground': colors.menuGray,
'panel.background': colors.bodyGray,
'input.background': colors.activityBarGray,
+ 'dropdown.background': colors.activityBarGray,
'sideBar.background': colors.sideBarGray,
- 'sideBarSectionHeader.background': colors.highlightGray,
+ 'sideBarSectionHeader.background': colors.activityBarGray,
'statusBar.background': colors.editorGray,
'tab.inactiveBackground': colors.bodyGray,
'tab.unfocusedInactiveBackground': colors.bodyGray,