Set background colors for title and status bars

This commit is contained in:
Marshall Bowers 2023-12-07 22:24:10 -05:00
parent f272881a6b
commit a88372dc99
12 changed files with 78 additions and 0 deletions

View file

@ -141,6 +141,14 @@ impl VsCodeThemeConverter {
.editor_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
title_bar_background: vscode_colors
.title_bar_active_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
status_bar_background: vscode_colors
.status_bar_background
.as_ref()
.traverse(|color| try_parse_color(&color))?,
element_background: vscode_colors
.button_background
.as_ref()