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

@ -35,6 +35,7 @@ pub fn palenight() -> UserThemeFamily {
ghost_element_hover: Some(rgba(0x0000001a).into()),
ghost_element_selected: Some(rgba(0x7e57c2ff).into()),
text: Some(rgba(0xffffffff).into()),
text_muted: Some(rgba(0x929ac9ff).into()),
status_bar_background: Some(rgba(0x282c3dff).into()),
title_bar_background: Some(rgba(0x292d3eff).into()),
toolbar_background: Some(rgba(0x292d3eff).into()),
@ -320,6 +321,7 @@ pub fn palenight() -> UserThemeFamily {
ghost_element_hover: Some(rgba(0x0000001a).into()),
ghost_element_selected: Some(rgba(0x7e57c2ff).into()),
text: Some(rgba(0xffffffff).into()),
text_muted: Some(rgba(0x929ac9ff).into()),
status_bar_background: Some(rgba(0x282c3dff).into()),
title_bar_background: Some(rgba(0x292d3eff).into()),
toolbar_background: Some(rgba(0x292d3eff).into()),
@ -605,6 +607,7 @@ pub fn palenight() -> UserThemeFamily {
ghost_element_hover: Some(rgba(0x0000001a).into()),
ghost_element_selected: Some(rgba(0x7e57c2ff).into()),
text: Some(rgba(0xffffffff).into()),
text_muted: Some(rgba(0x929ac9ff).into()),
status_bar_background: Some(rgba(0x25293aff).into()),
title_bar_background: Some(rgba(0x25293aff).into()),
toolbar_background: Some(rgba(0x292d3eff).into()),