Skip to content

Instantly share code, notes, and snippets.

@EricAtMSFT
Created March 10, 2016 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EricAtMSFT/a61ad7ee90798fb9983d to your computer and use it in GitHub Desktop.
Save EricAtMSFT/a61ad7ee90798fb9983d to your computer and use it in GitHub Desktop.
Change the main style colors for the app
<Color x:Key="AppAccentColor">#3498db</Color>
<SolidColorBrush x:Key="AppAccentColorBrush" Color="{StaticResource AppAccentColor}" />
<Color x:Key="AppAccentLightColor">#2980b9</Color>
<SolidColorBrush x:Key="AppAccentLightColorBrush" Color="{StaticResource AppAccentLightColor}" />
<Color x:Key="AppAccentForegroundColor">#333333</Color>
<SolidColorBrush x:Key="AppAccentForegroundColorBrush" Color="{StaticResource AppAccentForegroundColor}" />
<Color x:Key="AppAccentBackgroundColor">#FFE6E6E6</Color>
<SolidColorBrush x:Key="AppAccentBackgroundColorBrush" Color="{StaticResource AppAccentBackgroundColor}" />
<Color x:Key="BusyIndicatorBackgroundColor">#7F000000</Color>
<SolidColorBrush x:Key="BusyIndicatorBackgroundColorBrush" Color="{StaticResource BusyIndicatorBackgroundColor}" />
<x:Double x:Key="HighResolutionImageSideLength">1000</x:Double>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment