whiteShade constant
A color swatch for almost white colors, starting with white.
These are none transparent shades of close to white values, useful when you want slightly off white values that are not transparent.
Implementation
static const ColorSwatch<Object> whiteShade = ColorSwatch<Object>(
0xFFFAFAFB,
<int, Color>{
50: Color(0xFFFFFFFF),
100: Color(0xFFFEFEFE),
200: Color(0xFFFDFDFD),
300: Color(0xFFFCFCFC),
400: Color(0xFFFBFBFB),
// Last digit B on purpose to make value different from Grey[50].
500: Color(0xFFFAFAFB),
600: Color(0xFFF9F9F9),
700: Color(0xFFF8F8F8),
800: Color(0xFFF7F7F7),
900: Color(0xFFF6F6F6),
},
);