This repository was archived by the owner on Oct 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
83 lines (77 loc) · 4.36 KB
/
App.xaml
File metadata and controls
83 lines (77 loc) · 4.36 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
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
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ParametricFunctionApp"
x:Class="ParametricFunctionApp.App">
<Application.Resources>
<ResourceDictionary>
<Color x:Key="FluentPrimary">#0078D4</Color>
<Color x:Key="FluentPrimaryLight">#EFF6FC</Color>
<Color x:Key="FluentPrimaryDark">#106EBE</Color>
<Color x:Key="FluentSuccess">#107C10</Color>
<Color x:Key="FluentSuccessLight">#DFF6DD</Color>
<Color x:Key="FluentWarning">#D83B01</Color>
<Color x:Key="FluentWarningLight">#F9F3DB</Color>
<Color x:Key="FluentBackground">#F8F9FA</Color>
<Color x:Key="FluentCardBackground">#FFFFFF</Color>
<Color x:Key="FluentTextPrimary">#242424</Color>
<Color x:Key="FluentTextSecondary">#616161</Color>
<Color x:Key="WarningOrange">#FF9800</Color>
<Color x:Key="DisabledButtonColor">#CCCCCC</Color>
<Color x:Key="FluentError">#D13438</Color>
<Color x:Key="FluentErrorLight">#FDF6F6</Color>
<Color x:Key="FluentInfo">#0078D4</Color>
<Color x:Key="FluentInfoLight">#F5FAFF</Color>
<Style x:Key="FluentHeader" TargetType="Label">
<Setter Property="FontSize" Value="22" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="TextColor" Value="{StaticResource FluentPrimary}" />
<Setter Property="VerticalOptions" Value="Center" />
</Style>
<Style x:Key="FluentCardTitle" TargetType="Label">
<Setter Property="FontSize" Value="18" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="TextColor" Value="{StaticResource FluentPrimary}" />
<Setter Property="Margin" Value="0,0,0,10" />
</Style>
<Style x:Key="FluentCard" TargetType="Border">
<Setter Property="BackgroundColor" Value="{StaticResource FluentCardBackground}" />
<Setter Property="Padding" Value="24" />
<Setter Property="Stroke" Value="Transparent" />
<Setter Property="StrokeThickness" Value="0" />
<Setter Property="Shadow">
<Setter.Value>
<Shadow Brush="#20000000"
Offset="0,2"
Radius="8"
Opacity="0.14" />
</Setter.Value>
</Setter>
</Style>
<Style x:Key="FluentButton" TargetType="Button">
<Setter Property="BackgroundColor" Value="{StaticResource FluentPrimary}" />
<Setter Property="TextColor" Value="White" />
<Setter Property="CornerRadius" Value="4" />
<Setter Property="HeightRequest" Value="40" />
<Setter Property="FontSize" Value="14" />
</Style>
<Style x:Key="FluentSecondaryButton" TargetType="Button">
<Setter Property="BackgroundColor" Value="Transparent" />
<Setter Property="TextColor" Value="{StaticResource FluentPrimary}" />
<Setter Property="BorderColor" Value="{StaticResource FluentPrimary}" />
<Setter Property="BorderWidth" Value="1" />
<Setter Property="CornerRadius" Value="4" />
<Setter Property="HeightRequest" Value="40" />
<Setter Property="FontSize" Value="14" />
</Style>
<Style x:Key="FluentValueLabel" TargetType="Label">
<Setter Property="FontSize" Value="14" />
<Setter Property="VerticalOptions" Value="Center" />
<Setter Property="TextColor" Value="{StaticResource FluentSuccess}" />
<Setter Property="HorizontalTextAlignment" Value="Center" />
<Setter Property="BackgroundColor" Value="{StaticResource FluentSuccessLight}" />
<Setter Property="Padding" Value="12,6" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>