PromptTheme constructor
const
PromptTheme({
- TerminalColors colors = TerminalColors.dark,
- TerminalGlyphs glyphs = TerminalGlyphs.unicode,
- DisplayFeatures features = DisplayFeatures.standard,
Creates a theme by composing colors, glyphs, and features.
All parameters default to their standard presets, producing a full-featured dark theme suitable for most terminals.
Implementation
const PromptTheme({
this.colors = TerminalColors.dark,
this.glyphs = TerminalGlyphs.unicode,
this.features = DisplayFeatures.standard,
});