design: Make avatars lighter

This commit is contained in:
Christian Pauly 2021-08-01 07:47:00 +02:00
parent d3f87aeaad
commit 77fd7a811c
1 changed files with 3 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class Avatar extends StatelessWidget {
child: Text(
fallbackLetters,
style: TextStyle(
color: noPic ? Colors.white : null,
color: noPic ? name?.darkColor : null,
fontSize: 18,
),
),
@ -57,7 +57,8 @@ class Avatar extends StatelessWidget {
child: Container(
width: size,
height: size,
color: noPic ? name?.color : Theme.of(context).secondaryHeaderColor,
color:
noPic ? name?.lightColor : Theme.of(context).secondaryHeaderColor,
child: noPic
? textWidget
: CachedNetworkImage(