@@ -32,9 +32,10 @@ class App extends StatelessWidget {
3232 Widget build (BuildContext context) {
3333 return MaterialApp (
3434 theme: ThemeData (
35- backgroundColor: Color (0xFF282828 ),
35+ backgroundColor: Color (0xFF2D2D2D ),
3636 cardTheme: CardTheme (
3737 color: Color (0xFF474747 ),
38+ elevation: 5.0 ,
3839 ),
3940 floatingActionButtonTheme: FloatingActionButtonThemeData (
4041 backgroundColor: Color (0xFF6ECD95 ),
@@ -47,15 +48,26 @@ class App extends StatelessWidget {
4748 statusBarBrightness: Brightness .dark,
4849 ),
4950 elevation: 0.0 ,
50- backgroundColor: Color (0xFF282828 ),
51+ backgroundColor: Color (0xFF2D2D2D ),
5152 ),
52- primarySwatch: Colors .green,
53+ primarySwatch: MaterialColor (0xFF59AF77 , {
54+ 50 : Color (0xFF59AF77 ).withOpacity (0.1 ),
55+ 100 : Color (0xFF59AF77 ).withOpacity (0.2 ),
56+ 200 : Color (0xFF59AF77 ).withOpacity (0.3 ),
57+ 300 : Color (0xFF59AF77 ).withOpacity (0.4 ),
58+ 400 : Color (0xFF59AF77 ).withOpacity (0.5 ),
59+ 500 : Color (0xFF59AF77 ).withOpacity (0.6 ),
60+ 600 : Color (0xFF59AF77 ).withOpacity (0.7 ),
61+ 700 : Color (0xFF59AF77 ).withOpacity (0.8 ),
62+ 800 : Color (0xFF59AF77 ).withOpacity (0.9 ),
63+ 900 : Color (0xFF59AF77 ).withOpacity (1 ),
64+ }),
5365 primaryTextTheme: Theme .of (context)
5466 .primaryTextTheme
5567 .apply (displayColor: Color (0xFFDCDCDC ), bodyColor: Colors .white),
5668 fontFamily: "Montserrat" ,
5769 brightness: Brightness .dark,
58- scaffoldBackgroundColor: Color (0xFF282828 ),
70+ scaffoldBackgroundColor: Color (0xFF2D2D2D ),
5971 bottomNavigationBarTheme: BottomNavigationBarThemeData (
6072 elevation: 10.0 ,
6173 showSelectedLabels: false ,
0 commit comments