ConfirmStyles constructor
ConfirmStyles({})
Implementation
ConfirmStyles({
Style? prompt,
Style? activeChoice,
Style? inactiveChoice,
Style? hint,
Style? dimmed,
String? yesText,
String? noText,
String? separator,
}) : prompt = prompt ?? Style().bold().foreground(AnsiColor(11)),
activeChoice = activeChoice ?? Style().bold().foreground(AnsiColor(14)),
inactiveChoice = inactiveChoice ?? Style().foreground(AnsiColor(8)),
hint = hint ?? Style().foreground(AnsiColor(8)),
dimmed = dimmed ?? Style().foreground(AnsiColor(8)),
yesText = yesText ?? 'Yes',
noText = noText ?? 'No',
separator = separator ?? ' / ';