feat: Update theme colors for improved visibility in light and dark modes across multiple components

This commit is contained in:
Dayron
2025-11-01 18:05:04 +01:00
parent 0a1a2ffde5
commit 459047e2c4
4 changed files with 35 additions and 8 deletions

View File

@@ -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(),