DashboardTheme.dark constructor
DashboardTheme.dark()
Creates a dark theme
Implementation
factory DashboardTheme.dark() {
return const DashboardTheme(
backgroundColor: Color(0xFF1E1E1E),
textColor: Colors.white,
warningColor: Colors.orange,
errorColor: Colors.red,
chartLineColor: Colors.blue,
chartFillColor: Color(0x40808080),
);
}