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

pub use editor::EditorView;
pub use picker::Picker;
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
}