use ratatui::style::Color;
pub mod icons {
pub const USER: &str = ""; pub const TOOL_USE: &str = ""; pub const TOOL_RESULT: &str = ""; pub const THINKING: &str = ""; pub const PROGRESS: &str = ""; }
pub mod colors {
use super::Color;
pub const USER_MSG: Color = Color::Cyan;
pub const TOOL_USE: Color = Color::Yellow;
pub const TOOL_RESULT: Color = Color::Blue;
pub const THINKING: Color = Color::Magenta;
pub const PROGRESS: Color = Color::Gray;
}