Implement theme styling for Slider

This commit is contained in:
Héctor Ramón Jiménez 2022-05-26 00:40:27 +02:00
parent 03eda9b162
commit 3a820b45f3
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 118 additions and 91 deletions

View file

@ -59,6 +59,7 @@ pub struct Extended {
pub primary: Group,
pub success: Group,
pub danger: Group,
pub border: Color,
}
lazy_static! {
@ -86,6 +87,7 @@ impl Extended {
palette.background,
palette.text,
),
border: mix(palette.background, palette.text, 0.7),
}
}
}