shadow300 static method

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

Implementation

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