Map<int, Color>
indigoAccent =
const {100 : const Color(0xFF8C9EFF), 200 : const Color(0xFF536DFE), 400 : const Color(0xFF3D5AFE), 700 : const Color(0xFF304FFE)}
The indigo accent swatch.
new Icon(
icon: Icons.widgets,
color: Colors.indigoAccent[400],
),
See also:
- indigo, the corresponding primary colors.
- of, which allows you to select colors from the current theme
rather than hard-coding colors in your build methods.