shadow200 static method
Implementation
static List<BoxShadow> shadow200({Color? color}) => [
BoxShadow(
offset: const Offset(0, 8),
spreadRadius: -4,
blurRadius: 8,
color: (color ?? const Color(0xFF18274B)).withOpacity(0.08)),
BoxShadow(
offset: const Offset(0, 4),
spreadRadius: -4,
blurRadius: 6,
color: (color ?? const Color(0xFF18274B)).withOpacity(0.12))
];