Map scrollbar colors from VS Code themes
This commit is contained in:
parent
89884d289f
commit
3271cf1030
12 changed files with 148 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue