helix/helix-term/src/ui/mod.rs

17 lines
328 B
Rust
Raw Normal View History

mod editor;
mod picker;
mod prompt;
pub use editor::EditorView;
pub use picker::Picker;
2020-12-15 19:29:56 +09:00
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
}