From d97457d42c67a7702bd015e5808cd7aac54cc477 Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 5 Dec 2023 17:58:39 +0700 Subject: [PATCH] Fix composer label color Signed-off-by: dab246 (cherry picked from commit 9c1154d3004c87ff5df71eb407f237b14b707498) --- core/lib/presentation/extensions/color_extension.dart | 4 ++-- .../presentation/styles/recipient_composer_widget_style.dart | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/core/lib/presentation/extensions/color_extension.dart b/core/lib/presentation/extensions/color_extension.dart index 106eee152..814f7f461 100644 --- a/core/lib/presentation/extensions/color_extension.dart +++ b/core/lib/presentation/extensions/color_extension.dart @@ -210,9 +210,9 @@ extension AppColor on Color { static const colorComposerShadowTop = Color(0x28000000); static const colorComposerShadowBottom = Color(0x1E000000); static const colorComposerAppBar = Color(0xFFF4F4F4); - static const colorLabelComposer = Color(0xFF8C9CAF); + static const colorLabelComposer = Color(0xFF8B9CAF); static const colorLineComposer = Color(0xFFF4F4F4); - static const colorPrefixButtonComposer = Color(0xFFAEAAAE); + static const colorPrefixButtonComposer = Color(0xFF8B9CAF); static const colorRichButtonComposer = Color(0xFFAEAEC0); static const colorMobileRichButtonComposer = Color(0xFF8C9CAF); static const colorSelected = Color(0xFFE3F1FF); diff --git a/lib/features/composer/presentation/styles/recipient_composer_widget_style.dart b/lib/features/composer/presentation/styles/recipient_composer_widget_style.dart index 16f747c85..f7543db20 100644 --- a/lib/features/composer/presentation/styles/recipient_composer_widget_style.dart +++ b/lib/features/composer/presentation/styles/recipient_composer_widget_style.dart @@ -30,7 +30,8 @@ class RecipientComposerWidgetStyle { fontSize: 15, fontWeight: FontWeight.normal, decoration: TextDecoration.underline, - color: AppColor.colorPrefixButtonComposer + decorationColor: AppColor.colorPrefixButtonComposer, + color: AppColor.colorPrefixButtonComposer, ); static const TextStyle labelTextStyle = TextStyle( fontSize: 14,