diff options
author | Daniel Smith <rdnlsmith@gmail.com> | 2020-07-17 19:00:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-17 19:00:30 -0400 |
commit | b76eaafa2fcc6748c19e94fcb6548bcd465978cd (patch) | |
tree | 9c7f367bd33e0bc2c668ff0fbd2842d0fb634798 /themes/src/light | |
parent | f8b61d36956880736f4d0009b5e2b3e4f51f196b (diff) | |
parent | 5675f5d0e25a81112175474394d15f7d2edf9b21 (diff) |
Merge pull request #29 from Feichtmeier/Tiny_improvements_to_yaru
Minor improvements
Diffstat (limited to 'themes/src/light')
-rw-r--r-- | themes/src/light/yaru.ts | 9 |
1 files changed, 8 insertions, 1 deletions
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, |