shadow400 static method

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

Implementation

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