Map<int, Color> lime = const {50 : const Color(0xFFF9FBE7), 100 : const Color(0xFFF0F4C3), 200 : const Color(0xFFE6EE9C), 300 : const Color(0xFFDCE775), 400 : const Color(0xFFD4E157), 500 : const Color(0xFFCDDC39), 600 : const Color(0xFFC0CA33), 700 : const Color(0xFFAFB42B), 800 : const Color(0xFF9E9D24), 900 : const Color(0xFF827717)}

The lime primary swatch.

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

See also:

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