Use editorGroupHeader.tabsBackground from VS Code as tab bar background (#3558)

This PR changes the color we use for the tab bar background from the VS
Code theme to `editorGroupHeader.tabsBackground`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2023-12-08 13:50:56 -05:00 committed by GitHub
parent c653a02be3
commit 1d35a815a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 19 deletions

View file

@ -37,7 +37,7 @@ pub fn palenight() -> UserThemeFamily {
status_bar_background: Some(rgba(0x282c3dff).into()),
title_bar_background: Some(rgba(0x292d3eff).into()),
toolbar_background: Some(rgba(0x292d3eff).into()),
tab_bar_background: Some(rgba(0x292d3eff).into()),
tab_bar_background: Some(rgba(0x31364aff).into()),
tab_inactive_background: Some(rgba(0x31364aff).into()),
tab_active_background: Some(rgba(0x292d3eff).into()),
editor_background: Some(rgba(0x292d3eff).into()),
@ -316,7 +316,7 @@ pub fn palenight() -> UserThemeFamily {
status_bar_background: Some(rgba(0x282c3dff).into()),
title_bar_background: Some(rgba(0x292d3eff).into()),
toolbar_background: Some(rgba(0x292d3eff).into()),
tab_bar_background: Some(rgba(0x292d3eff).into()),
tab_bar_background: Some(rgba(0x31364aff).into()),
tab_inactive_background: Some(rgba(0x31364aff).into()),
tab_active_background: Some(rgba(0x292d3eff).into()),
editor_background: Some(rgba(0x292d3eff).into()),
@ -595,7 +595,7 @@ pub fn palenight() -> UserThemeFamily {
status_bar_background: Some(rgba(0x25293aff).into()),
title_bar_background: Some(rgba(0x25293aff).into()),
toolbar_background: Some(rgba(0x25293aff).into()),
tab_bar_background: Some(rgba(0x25293aff).into()),
tab_bar_background: Some(rgba(0x31364aff).into()),
tab_inactive_background: Some(rgba(0x31364aff).into()),
tab_active_background: Some(rgba(0x25293aff).into()),
editor_background: Some(rgba(0x292d3eff).into()),