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,