DashboardTheme.light constructor

DashboardTheme.light()

Creates a light theme

Implementation

factory DashboardTheme.light() {
  return const DashboardTheme(
    backgroundColor: Colors.white,
    textColor: Colors.black,
    warningColor: Colors.orange,
    errorColor: Colors.red,
    chartLineColor: Colors.blue,
    chartFillColor: Color(0x40808080),
  );
}