Map<int, Color>
deepOrange =
const {50 : const Color(0xFFFBE9E7), 100 : const Color(0xFFFFCCBC), 200 : const Color(0xFFFFAB91), 300 : const Color(0xFFFF8A65), 400 : const Color(0xFFFF7043), 500 : const Color(0xFFFF5722), 600 : const Color(0xFFF4511E), 700 : const Color(0xFFE64A19), 800 : const Color(0xFFD84315), 900 : const Color(0xFFBF360C)}
The deep orange primary swatch.
new Icon(
icon: Icons.widgets,
color: Colors.deepOrange[400],
),
See also:
- deepOrangeAccent, the corresponding accent colors.
- of, which allows you to select colors from the current theme
rather than hard-coding colors in your build methods.