Skip to content

Commit 59551ad

Browse files
committed
refactor: update TabsTheme background color in tab_themes.dart
This commit slightly adjusts the light mode background color for the `TabsTheme` component. ### Key Changes: * **`lib/screens/widgets/overrides/tab_themes.dart`**: * Updated the light mode `backgroundColor` from `Colors.blue[100]` to `Colors.blue[50]` to provide a more subtle contrast.
1 parent c0727ab commit 59551ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/screens/widgets/overrides/tab_themes.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TabThemes extends StatelessWidget {
2020
),
2121
child: ComponentTheme(
2222
data: TabsTheme(
23-
backgroundColor: isDark ? Colors.gray[600] : Colors.blue[100],
23+
backgroundColor: isDark ? Colors.gray[600] : Colors.blue[50],
2424
),
2525
child: child,
2626
),

0 commit comments

Comments
 (0)