blackMountainView constant
A Material Design text theme with dark glyphs based on Roboto.
This TextTheme provides color but not geometry (font size, weight, etc).
Implementation
static const TextTheme blackMountainView = TextTheme(
displayLarge: TextStyle(
debugLabel: 'blackMountainView displayLarge',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
displayMedium: TextStyle(
debugLabel: 'blackMountainView displayMedium',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
displaySmall: TextStyle(
debugLabel: 'blackMountainView displaySmall',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
headlineLarge: TextStyle(
debugLabel: 'blackMountainView headlineLarge',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
headlineMedium: TextStyle(
debugLabel: 'blackMountainView headlineMedium',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
headlineSmall: TextStyle(
debugLabel: 'blackMountainView headlineSmall',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
titleLarge: TextStyle(
debugLabel: 'blackMountainView titleLarge',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
titleMedium: TextStyle(
debugLabel: 'blackMountainView titleMedium',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
titleSmall: TextStyle(
debugLabel: 'blackMountainView titleSmall',
fontFamily: 'Roboto',
color: Colors.black,
decoration: TextDecoration.none,
),
bodyLarge: TextStyle(
debugLabel: 'blackMountainView bodyLarge',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
bodyMedium: TextStyle(
debugLabel: 'blackMountainView bodyMedium',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
bodySmall: TextStyle(
debugLabel: 'blackMountainView bodySmall',
fontFamily: 'Roboto',
color: Colors.black54,
decoration: TextDecoration.none,
),
labelLarge: TextStyle(
debugLabel: 'blackMountainView labelLarge',
fontFamily: 'Roboto',
color: Colors.black87,
decoration: TextDecoration.none,
),
labelMedium: TextStyle(
debugLabel: 'blackMountainView labelMedium',
fontFamily: 'Roboto',
color: Colors.black,
decoration: TextDecoration.none,
),
labelSmall: TextStyle(
debugLabel: 'blackMountainView labelSmall',
fontFamily: 'Roboto',
color: Colors.black,
decoration: TextDecoration.none,
),
);