Skip to content

Commit

Permalink
feat: rework list selection highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Dec 11, 2023
1 parent ede5689 commit d969e10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/generators/mkui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,19 +195,19 @@ function mkui({ ui, code }: MKUIParams): UIColourPalette {
'tree.tableColumnsBorder': ui.border.hex(),
'list.activeSelectionBackground': ui.accent.alpha(ch(0xaa)).hexa(),
'list.activeSelectionForeground': ui.text.primary.hex(),
'list.hoverBackground': ui.accent.alpha(ch(0x11)).hexa(),
'list.hoverBackground': ui.highlight.hover.alpha(ch(0x11)).hexa(),
'listFilterWidget.background': ui.background.panel.hex(),
'listFilterWidget.noMatchesOutline': ui.problems.error.hex(),
'list.inactiveSelectionBackground': ui.accent.alpha(ch(0x22)).hexa(),
'list.inactiveSelectionBackground': ui.highlight.hover.alpha(ch(0x09)).hexa(),
'list.highlightForeground': ui.accent.hex(),
'list.dropBackground': ui.background.drop.alpha(ch(0x22)).hexa(),
'list.errorForeground': ui.problems.error.hex(),
'list.warningForeground': ui.problems.warning.hex(),
'list.deemphasizedForeground': ui.scm.ignored.hex(),
'list.filterMatchBackground': ui.highlight.word.matches.alpha(ch(0x44)).hexa(),
'list.invalidItemForeground': ui.problems.error.hex(),
'list.inactiveFocusBackground': ui.accent.alpha(ch(0x11)).hexa(),
'quickInputList.focusBackground': ui.accent.alpha(ch(0x44)).hexa(),
'list.inactiveFocusBackground': ui.highlight.hover.alpha(ch(0x09)).hexa(),
'quickInputList.focusBackground': ui.accent.alpha(ch(0x99)).hexa(),
// 'quickInputList.focusForeground': '#ff0000',
// 'quickInput.background': '#ff0000',
// 'quickInputTitle.background': '#ff0000',
Expand Down

0 comments on commit d969e10

Please sign in to comment.