light property

ThemeData light
final

Implementation

static final ThemeData light = ThemeData(
  brightness: Brightness.light,
  primarySwatch: _lightAccentColor as MaterialColor,
  primaryColor: _lightAccentColor,
  // primaryColorLight: _lightAccentColor,
  iconTheme: const IconThemeData(color: _lightAccentColor),
  bottomNavigationBarTheme: const BottomNavigationBarThemeData(
    selectedItemColor: _lightAccentColor,
    unselectedItemColor: Colors.grey,
    // backgroundColor: Colors.white,
  ),
  bottomAppBarTheme: const BottomAppBarTheme(
    color: Colors.white,
  ),
  floatingActionButtonTheme: const FloatingActionButtonThemeData(
    backgroundColor: _lightAccentColor,
  ),
  appBarTheme: const AppBarTheme(
    backgroundColor: _lightAccentColor,
    systemOverlayStyle: SystemUiOverlayStyle(
        statusBarColor: Colors.transparent,
        systemNavigationBarColor: Colors.white),
  ),
);