regular constant

List<BoxShadow> const regular

Regular shadow (shadow) $box-shadow: 0 .5rem 1rem rgba($black, .15);

Implementation

static const List<BoxShadow> regular = [
  BoxShadow(
    color: Color.fromRGBO(0, 0, 0, 0.15),
    offset: Offset(0, 8),
    blurRadius: 16,
  ),
];