Use tab.inactiveForeground from VS Code for muted text color (#3593)

This PR updates the `theme_importer` to pull in the
`tab.inactiveForeground` color from VS Code to use as the muted text
color.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2023-12-11 15:57:47 -05:00 committed by GitHub
parent f02a3e8c68
commit 41f55e4d0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 38 additions and 0 deletions

View file

@ -217,6 +217,10 @@ impl VsCodeThemeConverter {
.ok()
.flatten()
}),
text_muted: vscode_colors
.tab_inactive_foreground
.as_ref()
.traverse(|color| try_parse_color(&color))?,
tab_bar_background: vscode_colors
.editor_group_header_tabs_background
.as_ref()