CAKE-27 | fixed template title color (send page)
Oleksandr Sobol committed
Aug 21, 2020 at 17:38 UTC
1cd5af2471e80b60bdf09222d9c37cd26d09b41c
2 files changed
+3
-15
lib/src/screens/send/widgets/base_send_widget.dart
+1
-1
@@ -291,7 +291,7 @@ class BaseSendWidget extends StatelessWidget {
291
style: TextStyle(
292
fontSize: 18,
293
fontWeight: FontWeight.w600,
294
- color: Theme.of(context).primaryTextTheme.title.color
294
+ color: Theme.of(context).primaryTextTheme.display4.color
295
),
296
)
297
],
lib/themes.dart
+2
-14
@@ -100,17 +100,8 @@ class Themes {
100
color: Palette.darkBlueCraiola, // template new text (send page)
101
decorationColor: Palette.shadowWhite // template background color (send page)
102
),
103
-
104
-
105
-
106
-
107
-
108
-
109
-
110
-
111
-
103
display4: TextStyle(
113
- color: Palette.oceanBlue // QR code
104
+ color: Palette.darkBlueCraiola // template title (send page)
105
),
106
),
107
@@ -245,11 +236,8 @@ class Themes {
236
color: PaletteDark.darkCyanBlue, // template new text (send page)
237
decorationColor: PaletteDark.darkVioletBlue // template background color (send page)
238
),
248
-
249
-
250
-
239
display4: TextStyle(
252
- color: PaletteDark.gray // QR code
240
+ color: PaletteDark.cyanBlue // QR code
241
),
242
),
243