grey constant

ShadedColor const grey

The grey color.

It's a shaded color with the following available shades:

  • 220
  • 210
  • 200
  • 190
  • 180
  • 170
  • 160
  • 150
  • 140
  • 130
  • 120
  • 110
  • 100
  • 90
  • 80
  • 70
  • 60
  • 50
  • 40
  • 30
  • 20
  • 10

To use any of these shades, call Colors.grey[SHADE], where SHADE is the number of the shade you want. For example, the darkest shade is Colors.grey[220].

Implementation

static const ShadedColor grey = ShadedColor(
  0xFF323130, // grey160
  <int, Color>{
    220: Color(0xFF11100F),
    210: Color(0xFF161514),
    200: Color(0xFF1B1A19),
    190: Color(0xFF201F1E),
    180: Color(0xFF252423),
    170: Color(0xFF292827),
    160: Color(0xFF323130),
    150: Color(0xFF3B3A39),
    140: Color(0xFF484644),
    130: Color(0xFF605E5C),
    120: Color(0xFF797775),
    110: Color(0xFF8A8886),
    100: Color(0xFF979593),
    90: Color(0xFFA19F9D),
    80: Color(0xFFB3B0AD),
    70: Color(0xFFBEBBB8),
    60: Color(0xFFC8C6C4),
    50: Color(0xFFD2D0CE),
    40: Color(0xFFE1DFDD),
    30: Color(0xFFEDEBE9),
    20: Color(0xFFF3F2F1),
    10: Color(0xFFFAF9F8),
  },
);