defaultLight constant

MainManeuverTheme const defaultLight

Widget color scheme for default light mode.

Implementation

static const MainManeuverTheme defaultLight = MainManeuverTheme(
  roadNameTextStyle: TextStyle(
    height: 1.25,
    color: DgisColorScheme.textDarkGrey,
    fontWeight: FontWeight.w500,
    fontSize: 16,
  ),
  maneuverDistanceTextStyle: TextStyle(
    height: 1.14,
    color: DgisColorScheme.textDarkGrey,
    fontWeight: FontWeight.w600,
    fontSize: 28,
  ),
  maneuverDistanceUnitTextStyle: TextStyle(
    height: 1.2,
    color: DgisColorScheme.textDarkGrey,
    fontWeight: FontWeight.w500,
    fontSize: 20,
  ),
  iconSize: 36,
  maxWidth: 150,
  minWidth: 150,
  borderRadius: 8,
  surfaceColor: DgisColorScheme.surfaceLight,
  shadows: WidgetShadows.naviWidgetBoxShadowsLight,
);