level3 property

List<BoxShadow> get level3

Implementation

static List<BoxShadow> get level3 => [
  BoxShadow(
    color: SubZeroColors.secondary.withValues(alpha: 0.1),
    blurRadius: 16,
    offset: const Offset(0, 8),
  ),
  BoxShadow(
    color: SubZeroColors.secondary.withValues(alpha: 0.05),
    blurRadius: 4,
    offset: const Offset(0, 2),
  ),
];