blackShade constant

ColorSwatch<Object> const blackShade

A color swatch for almost black colors, ending in black.

These are none transparent shades of close to black values, useful when you want slightly off black values that are not transparent.

Implementation

static const ColorSwatch<Object> blackShade = ColorSwatch<Object>(
  0xFF0A0A0A,
  <int, Color>{
    50: Color(0xFF121212),
    100: Color(0xFF111111),
    200: Color(0xFF101010),
    300: Color(0xFF0E0E0E),
    400: Color(0xFF0C0C0C),
    500: Color(0xFF0A0A0A),
    600: Color(0xFF080808),
    700: Color(0xFF050505),
    800: Color(0xFF030303),
    900: Color(0xFF000000),
  },
);