如何更改 FlowDocument 中查找文本框的 foreground/background 颜色?

How to change the foreground/background color of the find text box in a FlowDocument?

我正在使用 FlowDocumentReader 查看一些文本,当我尝试在查找文本搜索框中键入时,前景和背景都是白色的。如何修改前景或背景?我尝试修改 FlowDocument 和 FlowDocumentReader 的背景和前景颜色,但这不起作用。

<FlowDocumentReader  Grid.RowSpan="4" Grid.Column="1" Name="flowDocReader" IsFindEnabled="True">
  <FlowDocument Name="flowDoc"/>
</FlowDocumentReader>

正在打字

下拉箭头

发现问题是 MahApps 被设置为深色主题,所以我的控件使用白色作为前景色。只需将主题从深色更改为浅色即可。

<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Light.Blue.xaml" />