-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.axaml
More file actions
54 lines (45 loc) · 2.06 KB
/
App.axaml
File metadata and controls
54 lines (45 loc) · 2.06 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
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
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MyLocalPOS.App"
RequestedThemeVariant="Light">
<Application.Styles>
<FluentTheme />
<!-- Custom Styles for MyLocalPOS -->
<Style Selector="TabControl">
<Setter Property="Background" Value="#F5F5F5"/>
</Style>
<Style Selector="TabItem">
<Setter Property="FontSize" Value="14"/>
<Setter Property="FontWeight" Value="SemiBold"/>
<Setter Property="Foreground" Value="#0b0333"/>
<Setter Property="Padding" Value="15,10"/>
</Style>
<Style Selector="TabItem:selected">
<Setter Property="Background" Value="#0b0333"/>
<Setter Property="Foreground" Value="White"/>
</Style>
<Style Selector="Button">
<Setter Property="Background" Value="#0b0333"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="FontWeight" Value="SemiBold"/>
<Setter Property="CornerRadius" Value="5"/>
<Setter Property="Cursor" Value="Hand"/>
</Style>
<Style Selector="Button:pointerover">
<Setter Property="Background" Value="#150550"/>
</Style>
<Style Selector="TextBox">
<Setter Property="BorderBrush" Value="#0b0333"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="Padding" Value="10"/>
<Setter Property="CornerRadius" Value="5"/>
</Style>
<Style Selector="TextBox:focus">
<Setter Property="BorderBrush" Value="#0b0333"/>
<Setter Property="BorderThickness" Value="3"/>
</Style>
<Style Selector="ListBoxItem:selected /template/ ContentPresenter">
<Setter Property="Background" Value="#150550"/>
</Style>
</Application.Styles>
</Application>