appTheme top-level property
Implementation
ThemeData appTheme = ThemeData(
fontFamily: fontFamily,
primaryColor: primary,
colorScheme: ColorScheme(
brightness: Brightness.light,
primary: primary,
onPrimary: primaryColor05,
secondary: secondary,
onSecondary:secondary.withValues(alpha: 0.5),
error: red,
onError: red,
surface: white,
onSurface: primary,
secondaryContainer: white,
inverseSurface: black,
),
scaffoldBackgroundColor: white,
textTheme: textTheme,
);