diff options
author | Daniel Smith <rdnlsmith@gmail.com> | 2020-07-17 18:40:44 -0400 |
---|---|---|
committer | Daniel Smith <rdnlsmith@gmail.com> | 2020-07-17 18:40:44 -0400 |
commit | a1cb49d296e5415e4b1edcd67964ded61596557d (patch) | |
tree | e45b5bd2538988ac002037fd556f5e11d6dd5eef /themes/src | |
parent | 3fa1cda971acdab34ee3f0e7d8e288fcb7c17eae (diff) |
Improve legibility/consistency of Yaru selection
Diffstat (limited to 'themes/src')
-rw-r--r-- | themes/src/dark/yaru-dark.ts | 5 | ||||
-rw-r--r-- | themes/src/light/yaru.ts | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/themes/src/dark/yaru-dark.ts b/themes/src/dark/yaru-dark.ts index 33d885c..fce36ba 100644 --- a/themes/src/dark/yaru-dark.ts +++ b/themes/src/dark/yaru-dark.ts @@ -57,7 +57,10 @@ 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.activityBarGray, diff --git a/themes/src/light/yaru.ts b/themes/src/light/yaru.ts index 01ac6e1..d59ac96 100644 --- a/themes/src/light/yaru.ts +++ b/themes/src/light/yaru.ts @@ -64,7 +64,10 @@ 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, |