defaultLight constant

SpeedLimitTheme const defaultLight

Widget color scheme for default light mode.

Implementation

static const defaultLight = SpeedLimitTheme(
  size: 48,
  borderWidth: 4,
  surfaceColor: DgisColorScheme.surfaceLight,
  textStyle: TextStyle(
    height: 1.16,
    color: DgisColorScheme.surfaceDark,
    fontWeight: FontWeight.w600,
    fontSize: 24,
  ),
  exceededTextStyle: TextStyle(
    height: 1.16,
    color: DgisColorScheme.surfaceLight,
    fontWeight: FontWeight.w600,
    fontSize: 24,
  ),
  exceededSurfaceColor: DgisColorScheme.speedometerRed,
  exceededShadows: [],
);