swatch top-level property

Map<int, Color> swatch
getter/setter pair

Implementation

var swatch = {
  50: const Color(0xFF2C66A3).withOpacity(0.1),
  100: const Color(0xFF2C66A3).withOpacity(0.2),
  200: const Color(0xFF2C66A3).withOpacity(0.3),
  300: const Color(0xFF2C66A3).withOpacity(0.4),
  400: const Color(0xFF2C66A3).withOpacity(0.5),
  500: const Color(0xFF2C66A3).withOpacity(0.6),
  600: const Color(0xFF2C66A3).withOpacity(0.7),
  700: const Color(0xFF2C66A3).withOpacity(0.8),
  800: const Color(0xFF2C66A3).withOpacity(0.9),
  900: const Color(0xFF2C66A3).withOpacity(1),
};