Hello,
If you have specific brushes you'd like to use, you can override our resources in Application.Resources like this:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Key="Light">
<Brush x:Key="{actipro:ThemeResourceKey DefaultForegroundBrush}">#ff0000</Brush>
</ResourceDictionary>
<ResourceDictionary x:Key="Dark">
<Brush x:Key="{actipro:ThemeResourceKey DefaultForegroundBrush}">#00ff00</Brush>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>
</Application.Resources>
There I'm setting the colors to red and green but you could use any shade. The 5 default foreground brushes are the following and can all be set like above:
- DefaultForegroundBrush
- DefaultForegroundBrushMax
- DefaultForegroundBrushSecondary
- DefaultForegroundBrushTertiary
- DefaultForegroundBrushDisabled