-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
59 lines (50 loc) · 2.95 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Application x:Class="CursedProjectAN.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:CursedProjectAN"
StartupUri="LoginWindow.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:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
</ResourceDictionary.MergedDictionaries>
<Brush x:Key="BrightLightYellow">#ffbf75</Brush>
<Brush x:Key="BrightYellow">#ffad5c</Brush>
<Brush x:Key="BrightOrange">#FF7F51</Brush>
<Brush x:Key="BrightCoral">#CE4257</Brush>
<Brush x:Key="BrightMagenta">#720026</Brush>
<Brush x:Key="BrightDarkRed">#4F000B</Brush>
<Color x:Key="BrightLightYellowColor">#ffbf75</Color>
<Color x:Key="BrightYellowColor">#ffad5c</Color>
<Color x:Key="BrightOrangeColor">#FF7F51</Color>
<Color x:Key="BrightCoralColor">#CE4257</Color>
<Color x:Key="BrightMagentaColor">#720026</Color>
<Color x:Key="BrightDarkRedColor">#4F000B</Color>
<Style x:Key="CustomMaterialDesignPaperButton"
BasedOn="{StaticResource MaterialDesignPaperButton}"
TargetType="Button">
<Style.Resources>
<Color x:Key="PrimaryHueMidBrushColor">#FF7F51</Color>
<SolidColorBrush x:Key="PrimaryHueMidBrush" Color="{StaticResource BrightOrangeColor}"/>
</Style.Resources>
</Style>
<Style x:Key="CustomMaterialDesignPaperNavButton"
BasedOn="{StaticResource MaterialDesignPaperButton}"
TargetType="local:NavButton">
<Style.Resources>
<Color x:Key="PrimaryHueMidBrushColor">#FF7F51</Color>
<SolidColorBrush x:Key="PrimaryHueMidBrush" Color="{StaticResource BrightOrangeColor}"/>
</Style.Resources>
</Style>
<Style x:Key="CustomMaterialDesignFloatingHintTextBox"
BasedOn="{StaticResource MaterialDesignFloatingHintTextBox}"
TargetType="TextBox">
<Style.Resources>
</Style.Resources>
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>