1 2 3 4 5 6 7 8 9
use dialoguer::{console::style, theme::ColorfulTheme}; use termimad::crossterm::style::Stylize; pub fn theme() -> ColorfulTheme { ColorfulTheme { prompt_prefix: style("?".green().to_string()), ..ColorfulTheme::default() } }