light property

ThemeData light
getter/setter pair

Implementation

static ThemeData light = ThemeData.light().copyWith(
    colorScheme: lightColorScheme,
    scaffoldBackgroundColor: lightColorScheme.surfaceVariant,
    primaryColor: seed,
    appBarTheme: AppBarTheme().copyWith(
      color: Colors.transparent,
      elevation: 0,
      systemOverlayStyle: SystemUiOverlayStyle.dark,
    ),
    textTheme: TextTheme().apply(fontFamily: 'ador')

  // switchTheme: SwitchThemeData(
  //   thumbColor:
  //       MaterialStateProperty.all(lightColorScheme.primary.withOpacity(0.6)),
  //   trackColor:
  //       MaterialStateProperty.all(lightColorScheme.primary.withOpacity(0.4)),
  // ),
);