aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/menu.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/ui/menu.rs')
-rw-r--r--helix-term/src/ui/menu.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/menu.rs b/helix-term/src/ui/menu.rs
index f8f6f269..d055d0d0 100644
--- a/helix-term/src/ui/menu.rs
+++ b/helix-term/src/ui/menu.rs
@@ -240,7 +240,7 @@ impl<T: 'static> Component for Menu<T> {
}
fn render(&self, area: Rect, surface: &mut Surface, cx: &mut Context) {
- let style = Style::default().fg(Color::Rgb(164, 160, 232)); // lavender
+ let style = cx.editor.theme.get("ui.text");
let selected = Style::default().fg(Color::Rgb(255, 255, 255));
let scroll = self.scroll;