aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
blob: 9a70d1bd77b166a733a3efa49b644578a4262e1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod editor;
mod prompt;

pub use editor::EditorView;
pub use prompt::{Prompt, PromptEvent};

pub use tui::layout::Rect;
pub use tui::style::{Color, Modifier, Style};

// TODO: temp
#[inline(always)]
pub fn text_color() -> Style {
    Style::default().fg(Color::Rgb(219, 191, 239)) // lilac
}