aboutsummaryrefslogtreecommitdiff
path: root/themes/src
diff options
context:
space:
mode:
Diffstat (limited to 'themes/src')
-rw-r--r--themes/src/dark/yaru-dark.ts18
-rw-r--r--themes/src/light/yaru.ts9
2 files changed, 22 insertions, 5 deletions
diff --git a/themes/src/dark/yaru-dark.ts b/themes/src/dark/yaru-dark.ts
index 22c9d67..008bc7b 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',
- sideBarGray: '#3f3f3f',
+ activityBarGray: '#484848',
+ sideBarGray: '#343434',
highlightGray: '#575757',
commentGray: '#a8a8a8',
+ badgeGreen: '#0c6d1a',
+ badgeRed: '#991121',
}
const colorSet: IColorSet = {
@@ -54,10 +57,15 @@ const colorSet: IColorSet = {
brightWhite: '#ffffff',
},
ui: {
- selection: colors.midAubergine
+ selection: colors.midAubergine,
+ selectionHighlight: colors.midAubergine + 'aa',
+ wordHighlight: colors.midAubergine + 'aa',
+ wordHighlightStrong: colors.midAubergine + 'aa',
},
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,8 +76,10 @@ const colorSet: IColorSet = {
'menu.selectionBackground': colors.highlightGray,
'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,
diff --git a/themes/src/light/yaru.ts b/themes/src/light/yaru.ts
index 89539b4..d59ac96 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 = {
@@ -62,11 +64,16 @@ const colorSet: IColorSet = {
ui: {
invisibles: colors.guideGray,
guide: colors.guideGray,
- selection: colors.midAubergine,
+ selection: colors.lightAubergine + 'aa',
+ selectionHighlight: colors.lightAubergine + 'aa',
+ wordHighlight: colors.lightAubergine + 'aa',
+ wordHighlightStrong: colors.lightAubergine + 'aa',
},
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,