darkTheme property

ThemeData darkTheme
final

Implementation

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