accentColors constant

List<ColorSwatch<Object>> const accentColors

List of all the standard Material accent color swatches.

A Material accents colors swatch list also exists in the Flutter SDK in colors.dart as a static const Colors.accents.

Implementation

static const List<ColorSwatch<Object>> accentColors = <ColorSwatch<Object>>[
  Colors.redAccent,
  Colors.pinkAccent,
  Colors.purpleAccent,
  Colors.deepPurpleAccent,
  Colors.indigoAccent,
  Colors.blueAccent,
  Colors.lightBlueAccent,
  Colors.cyanAccent,
  Colors.tealAccent,
  Colors.greenAccent,
  Colors.lightGreenAccent,
  Colors.limeAccent,
  Colors.yellowAccent,
  Colors.amberAccent,
  Colors.orangeAccent,
  Colors.deepOrangeAccent,
];