defaultDark constant

MainManeuverTheme const defaultDark

Widget color scheme for default dark mode.

Implementation

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