Set tab bar and toolbar backgrounds

This commit is contained in:
Marshall Bowers 2023-12-07 22:32:41 -05:00
parent a88372dc99
commit efb4ff816a
9 changed files with 60 additions and 0 deletions

View file

@ -183,6 +183,10 @@ impl VsCodeThemeConverter {
.ok()
.flatten()
}),
tab_bar_background: vscode_colors
.panel_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
tab_active_background: vscode_colors
.tab_active_background
.as_ref()
@ -191,6 +195,10 @@ impl VsCodeThemeConverter {
.tab_inactive_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
toolbar_background: vscode_colors
.panel_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
editor_background: vscode_colors
.editor_background
.as_ref()