aboutsummaryrefslogtreecommitdiff
path: root/themes/src/dark/yaru-dark.ts
diff options
context:
space:
mode:
authorGravatar Daniel Smith <rdnlsmith@gmail.com> 2020-07-17 18:25:06 -0400
committerGravatar Daniel Smith <rdnlsmith@gmail.com> 2020-07-17 18:25:06 -0400
commit3fa1cda971acdab34ee3f0e7d8e288fcb7c17eae (patch)
treea9aebf55d2c97ce4d97066ccad02d9a3eb3a533a /themes/src/dark/yaru-dark.ts
parentf5dfd6079f7318a5ff72892ca2aeedf32bd95a31 (diff)
Copy Feichtmeier's Yaru changes to .ts source files
Diffstat (limited to 'themes/src/dark/yaru-dark.ts')
-rw-r--r--themes/src/dark/yaru-dark.ts8
1 files changed, 7 insertions, 1 deletions
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,