-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
79 lines (79 loc) · 3.5 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<Application
x:Class="Ankara_Online.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Ankara_Online">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.ThemeDictionaries>
<ResourceDictionary x:Key="Light">
<Style x:Key="TRvACC_LOGO" TargetType="Image">
<Setter Property="Source" Value="ms-appx:///Assets/TRvACC/trvacc_logo_transparent.png"/>
</Style>
<Style x:Key="HeaderLogo" TargetType="Image">
<Setter Property="Source" Value="ms-appx:///Assets/TRvACC/trvacc_logo_circle_whitebg.png"/>
</Style>
<Style x:Key="defaultTextStyle" TargetType="TextBlock">
<Setter Property="Foreground" Value="#000000" />
<Setter Property="FontFamily" Value="Poppins" />
<Setter Property="FontWeight" Value="Normal" />
</Style>
<Style x:Key="defaultGridBackground" TargetType="Grid">
<Setter Property="Background" Value="LightGray" />
</Style>
<Style x:Key="defaultStackPanelBackground" TargetType="StackPanel">
<Setter Property="Background" Value="LightGray" />
</Style>
<Style x:Key="defaultBorderBackground" TargetType="Border">
<Setter Property="Background" Value="LightGray" />
</Style>
<Style x:Key="defaultButtonBackground" TargetType="Button">
<Setter Property="Background" Value="#00b4cb" />
</Style>
<Style x:Key="headerTextStyle" TargetType="NavigationViewItem">
<Setter Property="Foreground" Value="White" />
<Setter Property="FontFamily" Value="Poppins" />
<Setter Property="FontWeight" Value="Medium" />
<Setter Property="FontSize" Value="17" />
</Style>
</ResourceDictionary>
<ResourceDictionary x:Key="Dark">
<Style x:Key="TRvACC_LOGO" TargetType="Image">
<Setter Property="Source" Value="ms-appx:///Assets/TRvACC/trvacc_logo_transparent_2.png "/>
</Style>
<Style x:Key="HeaderLogo" TargetType="Image">
<Setter Property="Source" Value="ms-appx:///Assets/TRvACC/trvacc_logo_circle_whitebg.png"/>
</Style>
<Style x:Key="defaultTextStyle" TargetType="TextBlock">
<Setter Property="Foreground" Value="#FFFFFF" />
<Setter Property="FontFamily" Value="Poppins" />
<Setter Property="FontWeight" Value="Normal" />
</Style>
<Style x:Key="defaultGridBackground" TargetType="Grid">
<Setter Property="Background" Value="DarkGray" />
</Style>
<Style x:Key="defaultStackPanelBackground" TargetType="StackPanel">
<Setter Property="Background" Value="#2e2e2e" />
</Style>
<Style x:Key="defaultBorderBackground" TargetType="Border">
<Setter Property="Background" Value="#2e2e2e" />
</Style>
<Style x:Key="defaultButtonBackground" TargetType="Button">
<Setter Property="Background" Value="#195caa" />
</Style>
<Style x:Key="headerTextStyle" TargetType="NavigationViewItem">
<Setter Property="Foreground" Value="White" />
<Setter Property="FontFamily" Value="Poppins" />
<Setter Property="FontWeight" Value="Medium" />
<Setter Property="FontSize" Value="17" />
</Style>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
<!--directories etc. shared resoruces-->
</ResourceDictionary>
</Application.Resources>
</Application>