shadow600 static method

List<BoxShadow> shadow600({
  1. Color? color,
})

Implementation

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