Skip to content

Commit

Permalink
feat: improve contrast in list views containing word highlights
Browse files Browse the repository at this point in the history
Closes #16
  • Loading branch information
robertrossmann committed Oct 19, 2020
1 parent 5d23f43 commit 9260c21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/generators/mkui.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,9 @@ function mkui({ ui, code }) {
* inactive does not.
*/
'tree.indentGuidesStroke': `${ui.text.secondary.hex()}99`,
'list.activeSelectionBackground': `${ui.accent.hex()}BB`,
'list.activeSelectionBackground': `${ui.accent.hex()}AA`,
'list.activeSelectionForeground': ui.text.primary.hex(),
'list.focusBackground': `${ui.accent.hex()}BB`,
'list.focusBackground': `${ui.accent.hex()}44`,
'list.hoverBackground': `${ui.accent.hex()}11`,
'listFilterWidget.background': `${ui.accent.hex()}88`,
'listFilterWidget.noMatchesOutline': ui.problems.error.hex(),
Expand Down Expand Up @@ -372,7 +372,7 @@ function mkui({ ui, code }) {
'editorMarkerNavigationError.background': `${ui.problems.error.hex()}44`,
'editorMarkerNavigationWarning.background': `${ui.problems.warning.hex()}44`,
'editorMarkerNavigationInfo.background': `${ui.problems.info.hex()}44`,
'editorSuggestWidget.selectedBackground': ui.accent.hex(),
'editorSuggestWidget.selectedBackground': `${ui.accent.hex()}AA`,

/**
* Peek View Colours
Expand Down

0 comments on commit 9260c21

Please sign in to comment.