chore: Adjust some colors

This commit is contained in:
Christian Pauly 2021-08-29 12:15:51 +02:00
parent 06c8e45e79
commit 41f2d23951
3 changed files with 8 additions and 2 deletions

View file

@ -281,6 +281,12 @@ class ChatView extends StatelessWidget {
: controller.canLoadMore
? Center(
child: OutlinedButton(
style:
OutlinedButton.styleFrom(
backgroundColor: Theme.of(
context)
.scaffoldBackgroundColor,
),
onPressed:
controller.requestHistory,
child: Text(L10n.of(context)

View file

@ -101,7 +101,7 @@ class _Reaction extends StatelessWidget {
final textColor = Theme.of(context).brightness == Brightness.dark
? Colors.white
: Colors.black;
final color = Theme.of(context).secondaryHeaderColor;
final color = Theme.of(context).scaffoldBackgroundColor;
final fontSize = DefaultTextStyle.of(context).style.fontSize;
final padding = fontSize / 5;
Widget content;

View file

@ -30,7 +30,7 @@ class StateMessage extends StatelessWidget {
padding: const EdgeInsets.all(8),
decoration: BoxDecoration(
border: Border.all(
color: Theme.of(context).dividerColor,
color: Theme.of(context).secondaryHeaderColor,
),
color: Theme.of(context).scaffoldBackgroundColor,
borderRadius: BorderRadius.circular(AppConfig.borderRadius),