diff options
Diffstat (limited to 'src/pick_list.rs')
| -rw-r--r-- | src/pick_list.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pick_list.rs b/src/pick_list.rs index 1fe015e..c4d8a68 100644 --- a/src/pick_list.rs +++ b/src/pick_list.rs @@ -23,21 +23,21 @@ pub fn default(theme: &Theme, status: Status) -> Style { let surface = theme.colors().surface; let active = Style { - text_color: surface.on_surface, - placeholder_color: surface.on_surface_variant, - handle_color: surface.on_surface_variant, - background: Background::Color(surface.surface_container.highest), + text_color: surface.text, + placeholder_color: surface.text_variant, + handle_color: surface.text_variant, + background: Background::Color(surface.container.highest), border: border::rounded(4), }; match status { Status::Active => active, Status::Hovered => Style { - background: Background::Color(surface.surface_container.highest), + background: Background::Color(surface.container.highest), ..active }, Status::Opened { .. } => Style { - background: Background::Color(surface.surface_container.highest), + background: Background::Color(surface.container.highest), border: border::rounded(4), ..active }, |
