light static method

Implementation

static ErrorMessageBoxStyle light() {
  final HubbleTheme theme = getObject();
  return ErrorMessageBoxStyle(
    errorBorder: Border.all(width: 1, color: Colors.black.withOpacity(0.1)),
    borderRadius: BorderRadius.circular(theme.sizeMedium),
    textStyle: theme.t13Normal15.copyWith(
      fontWeight: FontWeight.w600,
      color: const Color(0xFFE03616),
    ),
    padding: EdgeInsets.all(theme.sizeMedium),
  );
}