I'm developing a windows phone 8 application with default black background and white text color. I want to change these colors on each page of the application. How can I achieve this in the simplest manner?
I added the following style to my App.xaml file to see if it changes the color of all texts in a single page:
<Style x:Key="DefaultPage" TargetType="phone:PhoneApplicationPage">
<Setter Property="FontFamily" Value="{StaticResource PhoneFontFamilyNormal}"/>
<Setter Property="FontSize" Value="{StaticResource PhoneFontSizeNormal}"/>
<Setter Property="Foreground" Value="Red"/>
<Setter Property="SupportedOrientations" Value="Portrait"/>
<Setter Property="Orientation" Value="Portrait"/>
<Setter Property="shell:SystemTray.IsVisible" Value="True"/>
</Style>
But what it does is, it changes the color of all texts to red, except the ones that have pre-defined styles (like the title and the application name).
Any help or information on this would be highly appreciated.