From 37179c94a4ec2c12d41d43de8bd366e757b53b31 Mon Sep 17 00:00:00 2001 From: Alan Mantoux Date: Thu, 6 Jul 2023 21:16:53 +0200 Subject: [PATCH] Light theme inline code correct color Fixes #147 --- packages/fleather/lib/src/widgets/theme.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fleather/lib/src/widgets/theme.dart b/packages/fleather/lib/src/widgets/theme.dart index 8405bcb1..97d0597c 100644 --- a/packages/fleather/lib/src/widgets/theme.dart +++ b/packages/fleather/lib/src/widgets/theme.dart @@ -153,7 +153,7 @@ class FleatherThemeData { final inlineCodeStyle = TextStyle( fontSize: 14, - color: themeData.colorScheme.primaryContainer.withOpacity(0.8), + color: themeData.colorScheme.primary.withOpacity(0.8), fontFamily: fontFamily, );