-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.xaml
More file actions
25 lines (22 loc) · 1.08 KB
/
App.xaml
File metadata and controls
25 lines (22 loc) · 1.08 KB
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
<Application
x:Class="TaskSharp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TaskSharp"
xmlns:sys="clr-namespace:System;assembly=netstandard"
StartupUri="Windows/Login.xaml">
<Application.Resources>
<ResourceDictionary>
<FontFamily x:Key="TextFont">#Poppins Regular</FontFamily>
<SolidColorBrush x:Key="PrimaryColor" Color="#4F80FF" />
<SolidColorBrush x:Key="SecondaryColor" Color="#B5E8FF" />
<SolidColorBrush x:Key="TextColor2" Color="#002480" />
<SolidColorBrush x:Key="TextColor" Color="#050505" />
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Themes/MenuButtonTheme.xaml" />
<ResourceDictionary Source="Themes/SvgIcons.xaml" />
<ResourceDictionary Source="Themes/TextboxTheme.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>