diff --git a/Telegram/Resources/colors.palette b/Telegram/Resources/colors.palette index 04b77352b..3fb072024 100644 --- a/Telegram/Resources/colors.palette +++ b/Telegram/Resources/colors.palette @@ -193,6 +193,7 @@ dialogsSentIconFg: #5dc452; // chat list sent message tick / double tick icon dialogsUnreadBg: windowBgActive; // chat list unread badge background for not muted chat dialogsUnreadBgMuted: #bbbbbb; // chat list unread badge background for muted chat dialogsUnreadFg: windowFgActive; // chat list unread badge text +dialogsArchiveFg: #525252 | dialogsNameFg; // chat list archive name text dialogsBgOver: windowBgOver; // chat list background with mouse over dialogsNameFgOver: windowBoldFgOver; // chat list name text with mouse over @@ -208,6 +209,7 @@ dialogsSentIconFgOver: dialogsSentIconFg; // chat list sent message tick / doubl dialogsUnreadBgOver: dialogsUnreadBg; // chat list unread badge background for not muted chat with mouse over dialogsUnreadBgMutedOver: dialogsUnreadBgMuted; // chat list unread badge background for muted chat with mouse over dialogsUnreadFgOver: dialogsUnreadFg; // chat list unread badge text with mouse over +dialogsArchiveFgOver: #525252 | dialogsNameFgOver; // chat list archive name text dialogsBgActive: #419fd9; // chat list background for current (active) chat dialogsNameFgActive: windowFgActive; // chat list name text for current (active) chat diff --git a/Telegram/Resources/day-blue.tdesktop-theme b/Telegram/Resources/day-blue.tdesktop-theme index ae703848a..4934875a6 100644 Binary files a/Telegram/Resources/day-blue.tdesktop-theme and b/Telegram/Resources/day-blue.tdesktop-theme differ diff --git a/Telegram/SourceFiles/dialogs/dialogs_layout.cpp b/Telegram/SourceFiles/dialogs/dialogs_layout.cpp index 06081e552..e38d4a71b 100644 --- a/Telegram/SourceFiles/dialogs/dialogs_layout.cpp +++ b/Telegram/SourceFiles/dialogs/dialogs_layout.cpp @@ -424,6 +424,12 @@ void paintRow( } else if (hiddenSenderInfo) { hiddenSenderInfo->nameText.drawElided(p, rectForName.left(), rectForName.top(), rectForName.width()); } else { + const auto nameFg = active + ? st::dialogsNameFgActive + : (selected + ? st::dialogsArchiveFgOver + : st::dialogsArchiveFg); + p.setPen(nameFg); p.setFont(st::msgNameFont); auto text = entry->chatListName(); // TODO feed name with emoji auto textWidth = st::msgNameFont->width(text);