HelpStyles constructor
HelpStyles({})
Creates help styles with defaults.
Implementation
HelpStyles({
this.ellipsis = '…',
this.shortSeparator = ' • ',
this.fullSeparator = ' ',
Style? keyStyle,
Style? descStyle,
Style? sepStyle,
}) : keyStyle = keyStyle ?? Style().foreground(AnsiColor(8)), // Dark gray
descStyle = descStyle ?? Style().foreground(AnsiColor(7)), // Light gray
sepStyle = sepStyle ?? Style().foreground(AnsiColor(8));