|
1 | 1 | <Application |
2 | 2 | x:Class="Files.App" |
3 | 3 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 | | - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
5 | | - xmlns:local="using:Files" |
6 | | - xmlns:pages="using:Files.SettingsPages"> |
| 4 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
7 | 5 | <Application.Resources> |
8 | 6 | <ResourceDictionary> |
9 | 7 | <ResourceDictionary.ThemeDictionaries> |
10 | 8 | <ResourceDictionary x:Key="Light"> |
11 | | - <!-- The "Default" theme dictionary is used unless a specific |
12 | | - light, dark, or high contrast dictionary is provided. These |
13 | | - resources should be tested with both the light and dark themes, |
14 | | - and specific light or dark resources provided as needed. --> |
| 9 | + |
15 | 10 | <AcrylicBrush x:Key="NavigationViewDefaultPaneBackground" |
16 | 11 | BackgroundSource="Backdrop" |
17 | 12 | TintColor="LightSlateGray" |
18 | 13 | TintOpacity="0.6"/> |
19 | | - <AcrylicBrush x:Key="NavigationViewTopPaneBackground" |
20 | | - BackgroundSource="Backdrop" |
21 | | - TintColor="{ThemeResource SystemAccentColor}" |
22 | | - TintOpacity="0.6"/> |
| 14 | + <SolidColorBrush x:Key="NavigationViewTopPaneBackground" Color="#FFFAFAFA"/> |
23 | 15 | <AcrylicBrush x:Key="NavigationViewExpandedPaneBackground" BackgroundSource="HostBackdrop" TintOpacity="0.6" TintColor="White" FallbackColor="{StaticResource SystemChromeHighColor}"/> |
24 | 16 | </ResourceDictionary> |
25 | 17 | <ResourceDictionary x:Key="Dark"> |
26 | 18 | <AcrylicBrush x:Key="NavigationViewExpandedPaneBackground" BackgroundSource="HostBackdrop" TintOpacity="0.6" TintColor="Black" FallbackColor="#FF494949"/> |
27 | 19 | </ResourceDictionary> |
28 | 20 | <ResourceDictionary x:Key="HighContrast"> |
29 | | - <!-- Always include a "HighContrast" dictionary when you override |
30 | | - theme resources. This empty dictionary ensures that the |
31 | | - default high contrast resources are used when the user |
32 | | - turns on high contrast mode. --> |
| 21 | + <!-- This empty dictionary ensures that the default high contrast resources are used when the user turns on high contrast mode. --> |
33 | 22 | </ResourceDictionary> |
34 | 23 | </ResourceDictionary.ThemeDictionaries> |
35 | 24 | </ResourceDictionary> |
|
0 commit comments