lightTheme property

ThemeData lightTheme
final

Implementation

static final lightTheme = ThemeData(
  colorScheme: ColorScheme(
    brightness: Brightness.light,
    primary: Colors.white,
    onPrimary: Colors.black,
    secondary: Colors.blue[400]!,
    onSecondary: Colors.blue[400]!.withOpacity(0.7),
    tertiary: Colors.blue[400]!,
    onTertiary: Colors.grey,
    error: Colors.red,
    onError: Colors.redAccent,
    background: Colors.white,
    onBackground: Colors.black38,
    surface: Colors.white,
    onSurface: Colors.black,
  ),
  textTheme: NavikitFlutterTypography.textTheme,
);