light static method

Implementation

static TemplateThemeData light() {
  return TemplateThemeData(
    brightness: Brightness.light,
    titleTextStyle: TextStyle(
        fontSize: 60.0,
        color: Colors.black,
        fontWeight: FontWeight.w400,
        textBaseline: TextBaseline.alphabetic,
        letterSpacing: -0.5),
    flutterLogoColor: FlutterLogoColor.original,
    descriptionTextStyle: TextStyle(color: Colors.black),
    backgroundColor: Colors.white,
    buttonTheme: ButtonThemeData(
      buttonColor: Colors.grey[100],
      padding: EdgeInsets.all(12),
      hoverColor: Colors.grey[200],
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(8),
        side: BorderSide(color: Colors.grey),
      ),
    ),
  );
}