Map scrollbar colors from VS Code themes

This commit is contained in:
Marshall Bowers 2023-12-11 12:49:54 -05:00
parent 89884d289f
commit 3271cf1030
12 changed files with 148 additions and 0 deletions

View file

@ -1130,6 +1130,34 @@ pub struct VsCodeColors {
)]
pub panel_title_inactive_foreground: Option<String>,
#[serde(
default,
rename = "scrollbar.shadow",
deserialize_with = "empty_string_as_none"
)]
pub scrollbar_shadow: Option<String>,
#[serde(
default,
rename = "scrollbarSlider.background",
deserialize_with = "empty_string_as_none"
)]
pub scrollbar_slider_background: Option<String>,
#[serde(
default,
rename = "scrollbarSlider.activeBackground",
deserialize_with = "empty_string_as_none"
)]
pub scrollbar_slider_active_background: Option<String>,
#[serde(
default,
rename = "scrollbarSlider.hoverBackground",
deserialize_with = "empty_string_as_none"
)]
pub scrollbar_slider_hover_background: Option<String>,
#[serde(
default,
rename = "statusBar.background",