Pull in colors for selected ghost elements

This commit is contained in:
Marshall Bowers 2023-12-08 14:19:56 -05:00
parent 77c8108f9b
commit 27501d2929
12 changed files with 39 additions and 0 deletions

View file

@ -185,6 +185,10 @@ impl VsCodeThemeConverter {
.list_hover_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
ghost_element_selected: vscode_colors
.list_active_selection_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
drop_target_background: vscode_colors
.list_drop_background
.as_ref()