summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Themes/Light.xaml
blob: f3174973051716bae85359818eee3fbfe3c30000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <SolidColorBrush x:Key="Ui.Dark" Color="WhiteSmoke" />
    <SolidColorBrush x:Key="Ui.Light" Color="WhiteSmoke" />
    <SolidColorBrush x:Key="Ui.ContrastLight" Color="#C0C0C0" />

    <!-- StatusBar -->
    <Style TargetType="StatusBar">
        <Setter Property="Background" Value="{DynamicResource Ui.Light}" />
    </Style>

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="Controls/ToolbarLight.xaml" />
    </ResourceDictionary.MergedDictionaries>

</ResourceDictionary>