Map<int, Color> limeAccent = const {100 : const Color(0xFFF4FF81), 200 : const Color(0xFFEEFF41), 400 : const Color(0xFFC6FF00), 700 : const Color(0xFFAEEA00)}

The lime accent primary swatch.

 new Icon(
   icon: Icons.widgets,
   color: Colors.limeAccent[400],
 ),

See also:

  • lime, the corresponding primary colors.
  • of, which allows you to select colors from the current theme rather than hard-coding colors in your build methods.