Skip to content

Commit

Permalink
feat(ux/ui): Link color in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
enrique-lozano committed Jan 9, 2025
1 parent d72fcfa commit c13a109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/presentation/app_colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AppColors extends ThemeExtension<AppColors> {
final isDark = colorScheme.brightness == Brightness.dark;

return AppColors(
link: Colors.blue.shade200,
link: isDark ? Colors.blue.shade200 : Colors.blue.shade700,
danger: isDark ? Colors.redAccent : Colors.red,
success:
isDark ? Colors.lightGreen : const Color.fromARGB(255, 55, 161, 59),
Expand Down

0 comments on commit c13a109

Please sign in to comment.