base static method
Implementation
static ThemeData base() {
final ThemeData base = ThemeData.light();
return base.copyWith(
toggleableActiveColor: shrinePink400,
primaryColor: Colors.lightBlueAccent,
// buttonColor: shrinePink100,
scaffoldBackgroundColor: shrineBackgroundWhite,
cardColor: shrineBackgroundWhite,
// textSelectionColor: shrinePink100,
errorColor: shrineErrorRed,
buttonTheme: const ButtonThemeData(
colorScheme: shrineColorScheme,
textTheme: ButtonTextTheme.normal,
),
primaryIconTheme: _customIconTheme(base.iconTheme),
textTheme: _buildShrineTextTheme(base.textTheme),
primaryTextTheme: _buildShrineTextTheme(base.primaryTextTheme),
// accentTextTheme: _buildShrineTextTheme(base.accentTextTheme),
iconTheme: _customIconTheme(base.iconTheme),
dialogTheme: DialogTheme(
backgroundColor: shrinePink100,
),
colorScheme: shrineColorScheme.copyWith(secondary: shrineBrown900),
);
}