@@ -28,7 +28,6 @@ class LunaTheme {
28
28
hoverColor: LunaColours .accent.withOpacity (LunaUI .OPACITY_SPLASH / 2 ),
29
29
splashColor: LunaColours .accent.withOpacity (LunaUI .OPACITY_SPLASH ),
30
30
dialogBackgroundColor: LunaColours .secondary,
31
- toggleableActiveColor: LunaColours .accent,
32
31
iconTheme: const IconThemeData (
33
32
color: Colors .white,
34
33
),
@@ -61,7 +60,6 @@ class LunaTheme {
61
60
hoverColor: LunaColours .accent.withOpacity (LunaUI .OPACITY_SPLASH / 2 ),
62
61
splashColor: LunaColours .accent.withOpacity (LunaUI .OPACITY_SPLASH ),
63
62
dialogBackgroundColor: Colors .black,
64
- toggleableActiveColor: LunaColours .accent,
65
63
iconTheme: const IconThemeData (
66
64
color: Colors .white,
67
65
),
@@ -104,19 +102,21 @@ class LunaTheme {
104
102
TextTheme get _sharedTextTheme {
105
103
const textStyle = TextStyle (color: Colors .white);
106
104
return const TextTheme (
107
- bodyText1: textStyle,
108
- bodyText2: textStyle,
109
- headline1: textStyle,
110
- headline2: textStyle,
111
- headline3: textStyle,
112
- headline4: textStyle,
113
- headline5: textStyle,
114
- headline6: textStyle,
115
- button: textStyle,
116
- caption: textStyle,
117
- subtitle1: textStyle,
118
- subtitle2: textStyle,
119
- overline: textStyle,
105
+ displaySmall: textStyle,
106
+ displayMedium: textStyle,
107
+ displayLarge: textStyle,
108
+ headlineSmall: textStyle,
109
+ headlineMedium: textStyle,
110
+ headlineLarge: textStyle,
111
+ bodySmall: textStyle,
112
+ bodyMedium: textStyle,
113
+ bodyLarge: textStyle,
114
+ titleSmall: textStyle,
115
+ titleMedium: textStyle,
116
+ titleLarge: textStyle,
117
+ labelSmall: textStyle,
118
+ labelMedium: textStyle,
119
+ labelLarge: textStyle,
120
120
);
121
121
}
122
122
0 commit comments