Design color

This commit is contained in:
Christian Pauly 2020-03-13 22:12:46 +01:00
parent 0ce9635e8d
commit bac298bf75
1 changed files with 2 additions and 2 deletions

View File

@ -18,13 +18,13 @@ class StateMessage extends StatelessWidget {
),
child: Bubble(
elevation: 0,
color: Theme.of(context).backgroundColor.withOpacity(0.5),
color: Theme.of(context).backgroundColor.withOpacity(0.66),
alignment: Alignment.center,
child: Text(
event.getLocalizedBody(context),
textAlign: TextAlign.center,
style: TextStyle(
color: Theme.of(context).primaryColor,
color: Theme.of(context).textTheme.body1.color,
decoration: event.redacted ? TextDecoration.lineThrough : null,
),
),