SplashTheme.dark constructor

SplashTheme.dark()

A dark theme preset (dark background, light text).

Implementation

factory SplashTheme.dark() => const SplashTheme(
      backgroundColor: Color(0xFF121212),
      loaderColor: Color(0xFFBB86FC),
      textColor: Color(0xFFE1E1E1),
      retryButtonColor: Color(0xFFBB86FC),
      retryButtonTextColor: Color(0xFF121212),
    );