Fix composer label color

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit 9c1154d3004c87ff5df71eb407f237b14b707498)
This commit is contained in:
dab246
2023-12-05 17:58:39 +07:00
committed by Dat H. Pham
parent b87dac46ac
commit d97457d42c
2 changed files with 4 additions and 3 deletions
@@ -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);
@@ -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,