shadow100 static method

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

Implementation

static List<BoxShadow> shadow100({Color? color}) => [
      BoxShadow(
          blurStyle: BlurStyle.solid,
          offset: const Offset(0, 4),
          spreadRadius: -2,
          blurRadius: 4,
          color: (color ?? const Color(0xFF18274B)).withOpacity(0.08)),
      BoxShadow(
          offset: const Offset(0, 2),
          spreadRadius: -2,
          blurRadius: 4,
          color: (color ?? const Color(0xFF18274B)).withOpacity(0.12))
    ];