HelpColorScheme constructor

const HelpColorScheme({
  1. Color? heading,
  2. Color? command,
  3. Color? option,
  4. Color? description,
  5. Color? error,
  6. Color? emphasis,
  7. Color? namespace,
})

Creates a help color scheme with the given colors.

All colors default to AdaptiveColor variants that work well on both light and dark terminals.

Implementation

const HelpColorScheme({
  this.heading,
  this.command,
  this.option,
  this.description,
  this.error,
  this.emphasis,
  this.namespace,
});