Skip to content

Commit e11a14f

Browse files
Improve dark mode for ROAST (#298)
* fix setup participant card * fix participant bottom sheet
1 parent ac6f78d commit e11a14f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

lib/widgets/wallet/roast_group/setup_participants.dart

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,7 @@ class _ROASTGroupSetupParticipantsState
260260
children: [
261261
Icon(
262262
Icons.person,
263-
color:
264-
Theme.of(context).colorScheme.onPrimary,
263+
color: Theme.of(context).colorScheme.tertiary,
265264
),
266265
],
267266
),
@@ -278,21 +277,21 @@ class _ROASTGroupSetupParticipantsState
278277
Icons.delete,
279278
color: Theme.of(context)
280279
.colorScheme
281-
.onPrimary,
280+
.tertiary,
282281
),
283282
),
284283
tileColor: Theme.of(context).colorScheme.primary,
285284
title: Text(
286285
participantName,
287286
style: TextStyle(
288-
color: Theme.of(context).colorScheme.onPrimary,
287+
color: Theme.of(context).colorScheme.tertiary,
289288
),
290289
),
291290
subtitle: Text(
292291
ecPubkey,
293292
style: TextStyle(
294293
fontSize: 12,
295-
color: Theme.of(context).colorScheme.onPrimary,
294+
color: Theme.of(context).colorScheme.tertiary,
296295
),
297296
),
298297
),

lib/widgets/wallet/roast_group/setup_participants_share_pubkey_bottom_sheet.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SetupParticipantsSharePubKeyBottomSheet extends StatelessWidget {
3434
style: TextStyle(
3535
letterSpacing: 1.4,
3636
fontSize: 24,
37-
color: Theme.of(context).colorScheme.primary,
37+
color: Theme.of(context).colorScheme.secondary,
3838
),
3939
),
4040
const SizedBox(
@@ -73,7 +73,7 @@ class SetupParticipantsSharePubKeyBottomSheet extends StatelessWidget {
7373
style: TextStyle(
7474
letterSpacing: 1.4,
7575
fontSize: 24,
76-
color: Theme.of(context).colorScheme.primary,
76+
color: Theme.of(context).colorScheme.secondary,
7777
),
7878
),
7979
const SizedBox(

0 commit comments

Comments
 (0)