-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
83 lines (73 loc) · 3.24 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
80
81
82
83
<Application x:Class="VidGrab.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:VidGrab"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Color x:Key="BackgroundBlue1">#FF111C24</Color>
<Color x:Key="BackgruondBlue2">#0c1419</Color>
<Color x:Key="BackgroundBlue3">#05080b</Color>
<Color x:Key="White">#FFFFFF</Color>
<Color x:Key="Blue">#006FA9</Color>
<Color x:Key="Red">#ED2700</Color>
<Color x:Key="Green">#BED600</Color>
<Style x:Key="ActionButton" TargetType="Button">
<Setter Property="Background" Value="#BED600"/>
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="15"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
</Style.Resources>
</Style>
<Style x:Key="ActionButtonLeftRounded" TargetType="Button">
<Setter Property="Background" Value="#BED600"/>
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="15, 0, 0, 15"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
</Style.Resources>
</Style>
<Style x:Key="ActionButtonRightRounded" TargetType="Button">
<Setter Property="Background" Value="#BED600"/>
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="0, 15, 15, 0"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
</Style.Resources>
</Style>
<Style x:Key="RoundedLabel" TargetType="Label">
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="15"/>
</Style>
</Style.Resources>
</Style>
<Style x:Key="SecondaryAction" TargetType="Button">
<Setter Property="Background" Value="#00000000"/>
<Setter Property="BorderBrush" Value="#BED600"/>
<Setter Property="Foreground" Value="#BED600"/>
<Setter Property="BorderThickness" Value="2"/>
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="15"/>
<Setter Property="BorderThickness" Value="3"/>
</Style>
</Style.Resources>
</Style>
<Style x:Key="TBox" TargetType="TextBox">
<Style.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="15"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
</Style.Resources>
<Setter Property="Padding" Value="10, 0, 0, 0"/>
</Style>
<Style x:Key="UnderlinedText" TargetType="Label">
<Setter Property="BorderThickness" Value="0,0,0,3"/>
</Style>
</Application.Resources>
</Application>