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.
tui-rs/src/symbols.rs

59 lines
1.8 KiB
Rust

pub mod block {
pub const FULL: &str = "█";
pub const SEVEN_EIGHTHS: &str = "▉";
pub const THREE_QUARTERS: &str = "▊";
pub const FIVE_EIGHTHS: &str = "▋";
pub const HALF: &str = "▌";
pub const THREE_EIGHTHS: &str = "▍";
pub const ONE_QUARTER: &str = "▎";
pub const ONE_EIGHTH: &str = "▏";
}
pub mod bar {
pub const FULL: &str = "█";
pub const SEVEN_EIGHTHS: &str = "▇";
pub const THREE_QUARTERS: &str = "▆";
pub const FIVE_EIGHTHS: &str = "▅";
pub const HALF: &str = "▄";
pub const THREE_EIGHTHS: &str = "▃";
pub const ONE_QUARTER: &str = "▂";
pub const ONE_EIGHTH: &str = "▁";
}
pub mod line {
pub const TOP_RIGHT: &str = "┐";
pub const VERTICAL: &str = "│";
pub const HORIZONTAL: &str = "─";
pub const TOP_LEFT: &str = "┌";
pub const BOTTOM_RIGHT: &str = "┘";
pub const BOTTOM_LEFT: &str = "└";
pub const VERTICAL_LEFT: &str = "┤";
pub const VERTICAL_RIGHT: &str = "├";
pub const HORIZONTAL_DOWN: &str = "┬";
pub const HORIZONTAL_UP: &str = "┴";
pub const CROSS: &str = "┼";
}
pub const DOT: &str = "•";
pub mod rounded {
pub const TOP_RIGHT: &str = "╮";
pub const TOP_LEFT: &str = "╭";
pub const BOTTOM_RIGHT: &str = "╯";
pub const BOTTOM_LEFT: &str = "╰";
}
pub mod double {
pub const VERTICAL: &str = "║";
pub const HORIZONTAL: &str = "═";
pub const TOP_RIGHT: &str = "╗";
pub const TOP_LEFT: &str = "╔";
pub const BOTTOM_RIGHT: &str = "╝";
pub const BOTTOM_LEFT: &str = "╚";
pub const VERTICAL_LEFT: &str = "╣";
pub const VERTICAL_RIGHT: &str = "╠";
pub const HORIZONTAL_DOWN: &str = "╦";
pub const HORIZONTAL_UP: &str = "╩";
pub const CROSS: &str = "╬";
}