Skip to content

Commit

Permalink
TF-3192 Update highlight style as design
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 authored and hoangdat committed Oct 15, 2024
1 parent 99b985c commit 7cdd6d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion core/lib/presentation/extensions/color_extension.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ extension AppColor on Color {
static const buttonActionToastWithActionColor = Color(0xFF7ADCF8);
static const backgroundCountAttachment = Color(0x681C1C1C);
static const bgStatusResultSearch = Color(0xFFF5F5F7);
static const bgWordSearch = Color(0x3D007AFF);
static const colorNameEmail = Color(0xFF000000);
static const colorContentEmail = Color(0xFF6D7885);
static const colorTextButton = Color(0xFF007AFF);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ mixin BaseEmailItemTile {
styleWord: TextStyle(
fontSize: 15,
color: buildTextColorForReadEmail(email),
backgroundColor: AppColor.bgWordSearch,
backgroundColor: Colors.amberAccent[200],
fontWeight: buildFontForReadEmail(email)
)
);
Expand Down Expand Up @@ -129,7 +129,7 @@ mixin BaseEmailItemTile {
),
styleWord: TextStyle(
fontSize: 13,
backgroundColor: AppColor.bgWordSearch,
backgroundColor: Colors.amberAccent[200],
color: buildTextColorForReadEmail(email),
fontWeight: buildFontForReadEmail(email)
)
Expand Down Expand Up @@ -160,10 +160,10 @@ mixin BaseEmailItemTile {
color: AppColor.colorContentEmail,
fontWeight: FontWeight.normal
),
styleWord: const TextStyle(
styleWord: TextStyle(
fontSize: 13,
color: AppColor.colorContentEmail,
backgroundColor: AppColor.bgWordSearch
backgroundColor: Colors.amberAccent[200],
)
);
} else {
Expand Down

0 comments on commit 7cdd6d8

Please sign in to comment.