Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 2116646

Browse files
committed
selected word repetition highlight improvement
1 parent c724fab commit 2116646

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UI/Components/EditorElement/Highlighting/ColorizeSection.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ protected override void ColorizeLine(DocumentLine line)
3030
lineStartOffset + index + SelectionString.Length,
3131
element =>
3232
{
33-
element.BackgroundBrush = new SolidColorBrush(Colors.CornflowerBlue);
34-
element.TextRunProperties.SetForegroundBrush(new SolidColorBrush(Colors.White));
33+
element.BackgroundBrush = new SolidColorBrush(Color.FromArgb(80, 11, 95, 188));
34+
//element.TextRunProperties.SetForegroundBrush(new SolidColorBrush(Colors.White));
3535
});
3636
start = index + 1;
3737
}

0 commit comments

Comments
 (0)