use fastmcp_console::console::FastMcpConsole;
use fastmcp_console::theme::FastMcpTheme;
use rich_rust::prelude::{Color, Style};
fn main() {
let console = FastMcpConsole::new();
let theme = FastMcpTheme {
primary: Color::from_rgb(255, 120, 0),
..FastMcpTheme::default()
};
let headline = Style::new().bold().color(theme.primary);
console.print_styled("Custom theme preview", headline);
let accent = Style::new().color(Color::from_rgb(0, 180, 160));
console.print_styled("Secondary accent text", accent);
}