Skip to content

Commit

Permalink
Reduce the contrast of inactive title bar text (#2545)
Browse files Browse the repository at this point in the history
  • Loading branch information
lededev authored Nov 17, 2024
1 parent 4cd5fea commit 62d7b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/TitleBarHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ COLORREF CTitleBarHelper::GetTextColor(bool bActive)
{
const COLORREF clr = GetBackColor(false);
if (GetRValue(clr) < 128 && GetGValue(clr) < 128 && GetBValue(clr) < 128)
return RGB(245, 245, 245);
return RGB(10, 10, 10);
return RGB(191, 191, 191);
return RGB(64, 64, 64);
}
const COLORREF czclr = CAccentColor::Get().GetAccentColor();
if (czclr != CLR_NONE)
Expand Down

0 comments on commit 62d7b64

Please sign in to comment.