builtInThemes top-level constant

Map<String, PromptTheme> const builtInThemes

Built-in theme presets mapped by name.

Implementation

const Map<String, PromptTheme> builtInThemes = {
  'dark': PromptTheme.dark,
  'matrix': PromptTheme.matrix,
  'fire': PromptTheme.fire,
  'pastel': PromptTheme.pastel,
  'ocean': PromptTheme.ocean,
  'monochrome': PromptTheme.monochrome,
  'neon': PromptTheme.neon,
  'arcane': PromptTheme.arcane,
  'phantom': PromptTheme.phantom,
  'minimal': PromptTheme.minimal,
  'compact': PromptTheme.compact,
};