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