diff --git a/lib/main.dart b/lib/main.dart index 6ec2556..59da97a 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -31,8 +31,9 @@ class Application extends StatelessWidget { return MaterialApp( title: 'Maggs\' Victory Voyage', theme: ThemeData( - colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple) - .copyWith(background: Colors.pink[50]), + colorScheme: + ColorScheme.fromSeed(seedColor: Color.fromARGB(255, 233, 206, 252)), + // .copyWith(background: const Color.fromARGB(255, 74, 186, 145)), useMaterial3: true, ), home: const SplashPage(), diff --git a/lib/pages/splash_page.dart b/lib/pages/splash_page.dart index f0b17af..31c35b0 100644 --- a/lib/pages/splash_page.dart +++ b/lib/pages/splash_page.dart @@ -67,21 +67,21 @@ class _SplashPageState extends State { BottomNavigationBarItem( icon: Icon( Icons.videogame_asset, - color: Colors.white, + //color: Color.fromARGB(255, 212, 206, 70), ), label: 'Games', ), BottomNavigationBarItem( icon: Icon( Icons.emoji_events, - color: Colors.white, + //color: Color.fromARGB(255, 212, 206, 70), ), label: 'Leaderboard', ), BottomNavigationBarItem( icon: Icon( Icons.auto_awesome_rounded, - color: Colors.white, + //color: Color.fromARGB(255, 212, 206, 70), ), label: 'Events', ),