diff --git a/app/lib/ui/analytics/charts/analytics_chart_colors.dart b/app/lib/ui/analytics/charts/analytics_chart_colors.dart index aa2a730..d62f1cf 100644 --- a/app/lib/ui/analytics/charts/analytics_chart_colors.dart +++ b/app/lib/ui/analytics/charts/analytics_chart_colors.dart @@ -1,10 +1,10 @@ -import 'package:flutter/cupertino.dart'; +import 'package:flutter/material.dart'; extension AnalyticsChartColors on Color { - static Color get production => CupertinoColors.systemYellow; - static Color get home => CupertinoColors.systemBlue; - static Color get gridConsumption => CupertinoColors.systemRed; - static Color get gridFeedIn => CupertinoColors.systemGreen; + static Color get production => Colors.amber; + static Color get home => Colors.blue; + static Color get gridConsumption => Colors.red; + static Color get gridFeedIn => Colors.green; Color toBarAreaColor() => withOpacity(0.067); }