use crossterm::style::{Attribute, Color};
pub struct Theme;
impl Theme {
pub const PROMPT_MARK: &'static str = "?";
pub const PROMPT_COLOR: Color = Color::Cyan;
pub const PROMPT_ATTR: Attribute = Attribute::Bold;
pub const SELECTED_COLOR: Color = Color::Green;
pub const SELECTED_ATTR: Attribute = Attribute::Bold;
pub const CURSOR: &'static str = "❯";
pub const DISABLED_COLOR: Color = Color::DarkGrey;
pub const DISABLED_MARK: &'static str = "(unavailable)";
pub const DEFAULT_MARK: &'static str = " [default]";
pub const DEFAULT_COLOR: Color = Color::DarkGrey;
pub const GROUP_COLOR: Color = Color::Blue;
pub const GROUP_ATTR: Attribute = Attribute::Underlined;
pub const INPUT_COLOR: Color = Color::Yellow;
pub const ERROR_COLOR: Color = Color::Red;
}