feat(theme): shift Android palette from indigo to deep violet to match web identity

This commit is contained in:
2026-04-08 13:54:39 -04:00
parent d2582f9111
commit 6c29b685e8
4 changed files with 21 additions and 21 deletions
@@ -55,11 +55,11 @@ class _ProjectTasksScreenState extends ConsumerState<ProjectTasksScreen> {
}
Color _parseColor(String? hex) {
if (hex == null || hex.isEmpty) return const Color(0xFF6366F1);
if (hex == null || hex.isEmpty) return const Color(0xFF7C3AED);
try {
return Color(int.parse(hex.replaceFirst('#', '0xFF')));
} catch (_) {
return const Color(0xFF6366F1);
return const Color(0xFF7C3AED);
}
}