I am creating a TextBox control for a universal application (Windows and Windows Phone). I found that the color of the selection can be set by the "SelectionHighlightColor" property (blue in the image). But somehow the choice of brackets seems to preserve the color accent of the system (green in my case):

How to set the color of the brackets or redefine the color of the accent?
Update:
I tried to override a lot of brushes and theme colors, for example:
((SolidColorBrush)Resources["PhoneAccentBrush"]).Color = Color.FromArgb(0xFF, 0x00, 0x00, 0xFF);
and
(Resources["PhoneAccentColor"]) = Color.FromArgb(0xFF, 0x00, 0xFF, 0xFF);
It really redefines emphasis, but nothing affects the brackets. They are still green ...
source share