diff options
Diffstat (limited to 'helix-term/src/ui/text.rs')
-rw-r--r-- | helix-term/src/ui/text.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/text.rs b/helix-term/src/ui/text.rs index 588e12c4..6225e769 100644 --- a/helix-term/src/ui/text.rs +++ b/helix-term/src/ui/text.rs @@ -25,7 +25,7 @@ impl Component for Text { use tui::widgets::{Paragraph, Widget, Wrap}; let contents = tui::text::Text::from(self.contents.clone()); - let style = Style::default().fg(Color::Rgb(164, 160, 232)); // lavender + let style = cx.editor.theme.get("ui.text"); let par = Paragraph::new(contents).wrap(Wrap { trim: false }); // .scroll(x, y) offsets |