[widgets] fix color contrast on display names on messages in dark mode

This commit is contained in:
xenofem 2021-05-09 03:26:10 -04:00
parent f8f09a2673
commit ca1ed266f0
1 changed files with 4 additions and 1 deletions

View File

@ -242,7 +242,10 @@ class _MetaRow extends StatelessWidget {
style: TextStyle(
fontSize: 11 * AppConfig.fontSizeFactor,
fontWeight: FontWeight.bold,
color: displayname.color.withAlpha(200),
color: (Theme.of(context).brightness == Brightness.light
? displayname.darkColor
: displayname.lightColor)
.withAlpha(200),
),
),
if (showDisplayname) SizedBox(width: 4),