shadow500 static method

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

Implementation

static List<BoxShadow> shadow500({Color? color}) => [
      BoxShadow(
          offset: const Offset(0, 10),
          spreadRadius: -4,
          blurRadius: 32,
          color: (color ?? const Color(0xFF18274B)).withOpacity(0.10)),
      BoxShadow(
          offset: const Offset(0, 6),
          spreadRadius: -6,
          blurRadius: 14,
          color: (color ?? const Color(0xFF18274B)).withOpacity(0.12))
    ];