mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
277 B
Rust
15 lines
277 B
Rust
4 years ago
|
mod editor;
|
||
|
mod prompt;
|
||
|
|
||
|
pub use editor::EditorView;
|
||
|
pub use prompt::Prompt;
|
||
|
|
||
|
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
|
||
|
}
|