level3 property
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),
),
];