aboutsummaryrefslogtreecommitdiff
path: root/themes/src
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
parentf5dfd6079f7318a5ff72892ca2aeedf32bd95a31 (diff)
Copy Feichtmeier's Yaru changes to .ts source files
Diffstat (limited to 'themes/src')
-rw-r--r--themes/src/dark/yaru-dark.ts8
-rw-r--r--themes/src/light/yaru.ts4
2 files changed, 11 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,
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,