From 3fa1cda971acdab34ee3f0e7d8e288fcb7c17eae Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Fri, 17 Jul 2020 18:25:06 -0400 Subject: Copy Feichtmeier's Yaru changes to .ts source files --- themes/src/dark/yaru-dark.ts | 8 +++++++- themes/src/light/yaru.ts | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/themes/src/dark/yaru-dark.ts b/themes/src/dark/yaru-dark.ts index 22c9d67..33d885c 100644 --- a/themes/src/dark/yaru-dark.ts +++ b/themes/src/dark/yaru-dark.ts @@ -16,9 +16,12 @@ const colors = { menuGray: '#494949', bodyGray: '#383838', editorGray: '#2f2f2f', + activityBarGray: '#484848', sideBarGray: '#3f3f3f', highlightGray: '#575757', commentGray: '#a8a8a8', + badgeGreen: '#0c6d1a', + badgeRed: '#991121', } const colorSet: IColorSet = { @@ -57,7 +60,9 @@ const colorSet: IColorSet = { selection: colors.midAubergine }, overrides: { - 'activityBar.background': colors.highlightGray, + 'activityBar.background': colors.activityBarGray, + 'activityBarBadge.background': colors.badgeGreen, + 'badge.background': colors.badgeRed, 'editor.background': colors.editorGray, 'editorGroupHeader.tabsBackground': colors.bodyGray, 'editorIndentGuide.activeBackground': colors.ubuntuOrange, @@ -68,6 +73,7 @@ const colorSet: IColorSet = { 'menu.selectionBackground': colors.highlightGray, 'menubar.selectionBackground': colors.menuGray, 'panel.background': colors.bodyGray, + 'input.background': colors.activityBarGray, 'sideBar.background': colors.sideBarGray, 'sideBarSectionHeader.background': colors.highlightGray, 'statusBar.background': colors.editorGray, diff --git a/themes/src/light/yaru.ts b/themes/src/light/yaru.ts index 89539b4..01ac6e1 100644 --- a/themes/src/light/yaru.ts +++ b/themes/src/light/yaru.ts @@ -24,6 +24,8 @@ const colors = { textGray: '#111111', ubuntuWarmGray: '#aea79f', guideGray: '#bfbfbf', + badgeGreen: '#109a26', + badgeRed: '#c6162b', } const colorSet: IColorSet = { @@ -67,6 +69,8 @@ const colorSet: IColorSet = { overrides: { 'activityBar.background': colors.highlightGray, 'activityBar.foreground': colors.textGray, + 'activityBarBadge.background': colors.badgeGreen, + 'badge.background': colors.badgeRed, 'debugToolBar.background': colors.white, 'dropdown.background': colors.white, 'editor.background': colors.white, -- cgit v1.2.3