diff --git a/crates/ui/src/dropdown.rs b/crates/ui/src/dropdown.rs index ca1dd185..dba9f36e 100644 --- a/crates/ui/src/dropdown.rs +++ b/crates/ui/src/dropdown.rs @@ -659,7 +659,10 @@ where this.child( Icon::new(icon) - .text_color(cx.theme().muted_foreground) + .text_color(match self.disabled { + true => cx.theme().muted_foreground, + false => cx.theme().accent_foreground, + }) .when(self.disabled, |this| this.cursor_not_allowed()), ) }),