feat: Update theme colors for improved visibility in light and dark modes across multiple components
This commit is contained in:
@@ -171,6 +171,12 @@ class MyApp extends StatelessWidget {
|
||||
brightness: Brightness.light,
|
||||
),
|
||||
useMaterial3: true,
|
||||
appBarTheme: const AppBarTheme(
|
||||
backgroundColor: Colors.white,
|
||||
foregroundColor: Colors.black,
|
||||
elevation: 0,
|
||||
surfaceTintColor: Colors.transparent,
|
||||
),
|
||||
),
|
||||
// Dark theme configuration
|
||||
darkTheme: ThemeData(
|
||||
@@ -179,6 +185,12 @@ class MyApp extends StatelessWidget {
|
||||
brightness: Brightness.dark,
|
||||
),
|
||||
useMaterial3: true,
|
||||
appBarTheme: const AppBarTheme(
|
||||
backgroundColor: Colors.black,
|
||||
foregroundColor: Colors.white,
|
||||
elevation: 0,
|
||||
surfaceTintColor: Colors.transparent,
|
||||
),
|
||||
),
|
||||
// Default page when app starts
|
||||
home: const LoginPage(),
|
||||
|
||||
Reference in New Issue
Block a user