You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
5.2 KiB
106 lines
5.2 KiB
7 years ago
|
<Application
|
||
|
x:Class="DiscordChatExporter.Gui.App"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:converters="clr-namespace:DiscordChatExporter.Gui.Converters"
|
||
|
xmlns:local="clr-namespace:DiscordChatExporter.Gui"
|
||
|
Exit="App_Exit"
|
||
|
Startup="App_Startup"
|
||
|
StartupUri="Views/MainWindow.xaml">
|
||
|
<Application.Resources>
|
||
|
<ResourceDictionary>
|
||
|
<ResourceDictionary.MergedDictionaries>
|
||
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
|
||
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
||
|
<ResourceDictionary Source="pack://application:,,,/Tyrrrz.WpfExtensions;component/ConvertersDictionary.xaml" />
|
||
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
||
|
<!-- Colors -->
|
||
|
<Color x:Key="PrimaryColor">#343838</Color>
|
||
|
<Color x:Key="PrimaryLightColor">#5E6262</Color>
|
||
|
<Color x:Key="PrimaryDarkColor">#0D1212</Color>
|
||
|
<Color x:Key="AccentColor">#F9A825</Color>
|
||
|
<Color x:Key="AccentDarkColor">#C17900</Color>
|
||
|
<Color x:Key="TextColor">#000000</Color>
|
||
|
<Color x:Key="InverseTextColor">#FFFFFF</Color>
|
||
|
|
||
|
<SolidColorBrush x:Key="PrimaryHueLightBrush" Color="{DynamicResource PrimaryLightColor}" />
|
||
|
<SolidColorBrush x:Key="PrimaryHueLightForegroundBrush" Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush x:Key="PrimaryHueMidBrush" Color="{DynamicResource PrimaryColor}" />
|
||
|
<SolidColorBrush x:Key="PrimaryHueMidForegroundBrush" Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush x:Key="PrimaryHueDarkBrush" Color="{DynamicResource PrimaryDarkColor}" />
|
||
|
<SolidColorBrush x:Key="PrimaryHueDarkForegroundBrush" Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush x:Key="SecondaryAccentBrush" Color="{DynamicResource AccentColor}" />
|
||
|
<SolidColorBrush x:Key="SecondaryAccentForegroundBrush" Color="{DynamicResource TextColor}" />
|
||
|
|
||
|
<SolidColorBrush
|
||
|
x:Key="PrimaryTextBrush"
|
||
|
Opacity="0.87"
|
||
|
Color="{DynamicResource TextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="SecondaryTextBrush"
|
||
|
Opacity="0.64"
|
||
|
Color="{DynamicResource TextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="DimTextBrush"
|
||
|
Opacity="0.45"
|
||
|
Color="{DynamicResource TextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="PrimaryInverseTextBrush"
|
||
|
Opacity="1"
|
||
|
Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="SecondaryInverseTextBrush"
|
||
|
Opacity="0.7"
|
||
|
Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="DimInverseTextBrush"
|
||
|
Opacity="0.52"
|
||
|
Color="{DynamicResource InverseTextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="AccentTextBrush"
|
||
|
Opacity="1"
|
||
|
Color="{DynamicResource AccentColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="AccentDarkTextBrush"
|
||
|
Opacity="1"
|
||
|
Color="{DynamicResource AccentDarkColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="DividerBrush"
|
||
|
Opacity="0.12"
|
||
|
Color="{DynamicResource TextColor}" />
|
||
|
<SolidColorBrush
|
||
|
x:Key="InverseDividerBrush"
|
||
|
Opacity="0.12"
|
||
|
Color="{DynamicResource InverseTextColor}" />
|
||
|
|
||
|
<!-- Styles -->
|
||
|
<Style TargetType="{x:Type Image}">
|
||
|
<Setter Property="RenderOptions.BitmapScalingMode" Value="HighQuality" />
|
||
|
<Setter Property="RenderOptions.EdgeMode" Value="Aliased" />
|
||
|
</Style>
|
||
|
|
||
|
<Style BasedOn="{StaticResource MaterialDesignLinearProgressBar}" TargetType="{x:Type ProgressBar}">
|
||
|
<Setter Property="BorderThickness" Value="0" />
|
||
|
<Setter Property="Foreground" Value="{DynamicResource SecondaryAccentBrush}" />
|
||
|
<Setter Property="Height" Value="2" />
|
||
|
<Setter Property="Maximum" Value="1" />
|
||
|
<Setter Property="Minimum" Value="0" />
|
||
|
</Style>
|
||
|
|
||
|
<Style BasedOn="{StaticResource MaterialDesignTextBox}" TargetType="{x:Type TextBox}">
|
||
|
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextBrush}" />
|
||
|
</Style>
|
||
|
|
||
|
<Style BasedOn="{StaticResource MaterialDesignComboBox}" TargetType="{x:Type ComboBox}">
|
||
|
<Setter Property="Foreground" Value="{DynamicResource PrimaryTextBrush}" />
|
||
|
</Style>
|
||
|
|
||
|
<!-- Converters -->
|
||
|
<converters:ExportFormatToStringConverter x:Key="ExportFormatToStringConverter" />
|
||
|
|
||
|
<!-- Container -->
|
||
|
<local:Container x:Key="Container" />
|
||
|
</ResourceDictionary>
|
||
|
</Application.Resources>
|
||
|
</Application>
|