pub const MAX_UNFOLDED_COLUMN_WIDTH: usize = 7;
pub mod ansi_escape {
pub const TEXT_COLORS: &[&str] = &[
"\u{1b}[37m", "\u{1b}[34m", "\u{1b}[32m", ];
pub const FRAME_COLOR: &str = "\u{1b}[90m";
pub const RESET_COLOR: &str = "\u{1b}[0m";
}
pub mod frame {
use lazy_static;
use unicode_width::UnicodeWidthStr;
pub const VERTICAL: &str = "\u{2502}";
pub const HORIZONTAL: &str = "\u{2500}";
pub const CROSSING_TOP: &str = "\u{252c}";
pub const CROSSING_BOTTOM: &str = "\u{2534}";
pub const CROSSING_MIDDLE: &str = "\u{253c}";
lazy_static! {
pub static ref CHAR_WIDTH: usize = UnicodeWidthStr::width(VERTICAL);
}
}