diff --git a/lib/config/themes.dart b/lib/config/themes.dart index d20b98b6..be9c38df 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -135,7 +135,7 @@ abstract class FluffyThemes { primary: FluffyThemes.lighten(AppConfig.chatColor, 0.33), secondary: FluffyThemes.lighten(AppConfig.chatColor, 0.33), secondaryVariant: AppConfig.secondaryColor, - surface: FluffyThemes.darken(AppConfig.chatColor, 0.4), + surface: FluffyThemes.darken(AppConfig.chatColor, 0.35), ), secondaryHeaderColor: Colors.blueGrey.shade900, textTheme: Typography.material2018().white.merge(fallbackTextTheme), diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index d1fd0e13..aed1603c 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -331,7 +331,7 @@ class ChatView extends StatelessWidget { .secondaryHeaderColor .withAlpha(100), clipBehavior: Clip.hardEdge, - color: Theme.of(context).backgroundColor, + color: Theme.of(context).appBarTheme.backgroundColor, child: SafeArea( child: Column( mainAxisSize: MainAxisSize.min,