1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Reduced brightness of char pair hilite

This commit is contained in:
Brian Fiete 2022-01-20 08:16:15 -05:00
parent 17efad740d
commit 3c091be0d5
3 changed files with 5 additions and 5 deletions

View file

@ -4834,7 +4834,7 @@ namespace IDE.ui
if (mHilitePairedCharState case .Valid(?, let x1, let y1, let x2, let y2, let charWidth))
{
let height = mFont.GetHeight() + GS!(2);
using (g.PushColor(DarkTheme.COLOR_MATCHING_PARENS_HILITE))
using (g.PushColor(DarkTheme.COLOR_CHAR_PAIR_HILITE))
{
g.FillRect(x1, y1, charWidth, height);
g.FillRect(x2, y2, charWidth, height);