ThemePalette constructor

const ThemePalette({
  1. required Color accent,
  2. required Color accentBold,
  3. required Color text,
  4. required Color textDim,
  5. required Color textBold,
  6. required Color border,
  7. required Color success,
  8. required Color warning,
  9. required Color error,
  10. required Color info,
  11. required Color highlight,
  12. Color? background,
})

Creates a custom theme palette.

Implementation

const ThemePalette({
  required this.accent,
  required this.accentBold,
  required this.text,
  required this.textDim,
  required this.textBold,
  required this.border,
  required this.success,
  required this.warning,
  required this.error,
  required this.info,
  required this.highlight,
  this.background,
});