PromptTheme constructor

const PromptTheme({
  1. TerminalColors colors = TerminalColors.dark,
  2. TerminalGlyphs glyphs = TerminalGlyphs.unicode,
  3. 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,
});