cyanAccent constant

MaterialAccentColor const cyanAccent

The cyan accent color and swatch.

link
Icon(
  Icons.widgets,
  color: Colors.cyanAccent[400],
)

See also:

  • cyan, the corresponding primary colors.
  • lightBlueAccent and tealAccent, similar colors.
  • Theme.of, which allows you to select colors from the current theme rather than hard-coding colors in your build methods.

Implementation

static const MaterialAccentColor cyanAccent = MaterialAccentColor(
  _cyanAccentPrimaryValue,
  <int, Color>{
    100: Color(0xFF84FFFF),
    200: Color(_cyanAccentPrimaryValue),
    400: Color(0xFF00E5FF),
    700: Color(0xFF00B8D4),
  },
);