DefaultColors.xaml 770 B

123456789101112131415
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <SolidColorBrush x:Key="DefaultBackground"
  4. Color="#424242" />
  5. <SolidColorBrush x:Key="DefaultFore"
  6. Color="#F0F0F0" />
  7. <SolidColorBrush x:Key="DefaultNavigationCheckedBackground"
  8. Color="Transparent" />
  9. <SolidColorBrush x:Key="DefaultNavigationCheckedFore"
  10. Color="#50ac52" />
  11. <SolidColorBrush x:Key="DefaultNavigationUnCheckedBackground"
  12. Color="Transparent" />
  13. <SolidColorBrush x:Key="DefaultNavigationUnCheckedFore"
  14. Color="#424242" />
  15. </ResourceDictionary>