ColorScheme constructor

const ColorScheme({
  1. Color primary = Color.cyan,
  2. Color secondary = Color.magenta,
  3. Color background = Color.black,
  4. Color foreground = Color.white,
  5. Color error = Color.red,
  6. Color success = Color.green,
  7. Color warning = Color.yellow,
  8. Color info = Color.brightBlue,
  9. Color muted = Color.brightBlack,
})

Implementation

const ColorScheme({
  this.primary = Color.cyan,
  this.secondary = Color.magenta,
  this.background = Color.black,
  this.foreground = Color.white,
  this.error = Color.red,
  this.success = Color.green,
  this.warning = Color.yellow,
  this.info = Color.brightBlue,
  this.muted = Color.brightBlack,
});