diff --git a/src/CarPark.sln b/src/CarPark.sln
new file mode 100644
index 0000000..e51ba9d
--- /dev/null
+++ b/src/CarPark.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31611.283
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarPark", "CarPark\CarPark.csproj", "{D5BA15F1-740B-482C-8300-108718B7CF27}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D5BA15F1-740B-482C-8300-108718B7CF27}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
+ EndGlobalSection
+EndGlobal
diff --git a/src/CarPark/AddDocumnets.xaml b/src/CarPark/AddDocumnets.xaml
new file mode 100644
index 0000000..81206ec
--- /dev/null
+++ b/src/CarPark/AddDocumnets.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/AddDocumnets.xaml.cs b/src/CarPark/AddDocumnets.xaml.cs
new file mode 100644
index 0000000..8b94193
--- /dev/null
+++ b/src/CarPark/AddDocumnets.xaml.cs
@@ -0,0 +1,9 @@
+namespace CarPark;
+
+public partial class AddDocumnets : ContentPage
+{
+ public AddDocumnets()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/src/CarPark/App.xaml b/src/CarPark/App.xaml
new file mode 100644
index 0000000..2e87b74
--- /dev/null
+++ b/src/CarPark/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CarPark/App.xaml.cs b/src/CarPark/App.xaml.cs
new file mode 100644
index 0000000..008bcd8
--- /dev/null
+++ b/src/CarPark/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace CarPark;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/src/CarPark/AppShell.xaml b/src/CarPark/AppShell.xaml
new file mode 100644
index 0000000..f9f30f4
--- /dev/null
+++ b/src/CarPark/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/AppShell.xaml.cs b/src/CarPark/AppShell.xaml.cs
new file mode 100644
index 0000000..95522a0
--- /dev/null
+++ b/src/CarPark/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace CarPark;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/src/CarPark/CarPark.csproj b/src/CarPark/CarPark.csproj
new file mode 100644
index 0000000..ff4b0e8
--- /dev/null
+++ b/src/CarPark/CarPark.csproj
@@ -0,0 +1,87 @@
+
+
+
+ net7.0-maccatalyst;net7.0-android33.0
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ CarPark
+ true
+ true
+ enable
+
+
+ CarPark
+
+
+ com.companyname.carpark
+ b31ac48b-6698-4e63-af1e-01378ba09450
+
+
+ 1.0
+ 1
+
+ 14.2
+ 14.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+ logo.png
+ https://git.zetcraft.ru/KrasnodarHackaton/MobileApp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ LoginScreen.xaml
+
+
+ MainScreen.xaml
+
+
+ AddDocumnets.xaml
+
+
+
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+
+
+
+ True
+ \
+
+
+
+
diff --git a/src/CarPark/LoginScreen.xaml b/src/CarPark/LoginScreen.xaml
new file mode 100644
index 0000000..8544a76
--- /dev/null
+++ b/src/CarPark/LoginScreen.xaml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CarPark/LoginScreen.xaml.cs b/src/CarPark/LoginScreen.xaml.cs
new file mode 100644
index 0000000..4291603
--- /dev/null
+++ b/src/CarPark/LoginScreen.xaml.cs
@@ -0,0 +1,36 @@
+using CommunityToolkit.Maui.Alerts;
+using CommunityToolkit.Maui.Core;
+
+namespace CarPark;
+
+public partial class LoginScreen : ContentPage
+{
+
+ public LoginScreen()
+ {
+ InitializeComponent();
+ }
+
+ private void OnVKClicked(object sender, EventArgs e)
+ {
+ App.Current.MainPage = new NavigationPage(new MainScreen());
+ }
+
+ private async void OnGosUslugiClicked(object sender, EventArgs e)
+ {
+ CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
+
+ string text = "Для входа через ЕСИЯ необходимо юр лицо";
+ ToastDuration duration = ToastDuration.Short;
+ double fontSize = 14;
+
+ var toast = Toast.Make(text, duration, fontSize);
+
+ await toast.Show(cancellationTokenSource.Token);
+ }
+
+ private void OnMapClicked(object sender, EventArgs e)
+ {
+ }
+}
+
diff --git a/src/CarPark/MainScreen.xaml b/src/CarPark/MainScreen.xaml
new file mode 100644
index 0000000..76158bd
--- /dev/null
+++ b/src/CarPark/MainScreen.xaml
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/MainScreen.xaml.cs b/src/CarPark/MainScreen.xaml.cs
new file mode 100644
index 0000000..a2a4992
--- /dev/null
+++ b/src/CarPark/MainScreen.xaml.cs
@@ -0,0 +1,11 @@
+namespace CarPark;
+
+public partial class MainScreen : ContentPage
+{
+ public MainScreen()
+ {
+ InitializeComponent();
+ NavigationPage.SetHasNavigationBar(this, false);
+ NavigationPage.SetBackButtonTitle(this, null);
+ }
+}
\ No newline at end of file
diff --git a/src/CarPark/MauiProgram.cs b/src/CarPark/MauiProgram.cs
new file mode 100644
index 0000000..3c0d455
--- /dev/null
+++ b/src/CarPark/MauiProgram.cs
@@ -0,0 +1,16 @@
+using CommunityToolkit.Maui;
+
+namespace CarPark;
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder.UseMauiApp().ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ }).UseMauiCommunityToolkit();
+ return builder.Build();
+ }
+}
\ No newline at end of file
diff --git a/src/CarPark/Platforms/Android/AndroidManifest.xml b/src/CarPark/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..50a0dce
--- /dev/null
+++ b/src/CarPark/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/Platforms/Android/MainActivity.cs b/src/CarPark/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..3c685fa
--- /dev/null
+++ b/src/CarPark/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace CarPark;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
diff --git a/src/CarPark/Platforms/Android/MainApplication.cs b/src/CarPark/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..550e67c
--- /dev/null
+++ b/src/CarPark/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace CarPark;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/src/CarPark/Platforms/Android/Resources/values/colors.xml b/src/CarPark/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/src/CarPark/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/src/CarPark/Platforms/MacCatalyst/AppDelegate.cs b/src/CarPark/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..840d66d
--- /dev/null
+++ b/src/CarPark/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace CarPark;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/src/CarPark/Platforms/MacCatalyst/Info.plist b/src/CarPark/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/src/CarPark/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/src/CarPark/Platforms/MacCatalyst/Program.cs b/src/CarPark/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..62b8ee0
--- /dev/null
+++ b/src/CarPark/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace CarPark;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/src/CarPark/Platforms/Tizen/Main.cs b/src/CarPark/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..baeaa29
--- /dev/null
+++ b/src/CarPark/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace CarPark;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/src/CarPark/Platforms/Tizen/tizen-manifest.xml b/src/CarPark/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..90e3c63
--- /dev/null
+++ b/src/CarPark/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/Platforms/Windows/App.xaml b/src/CarPark/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..2abeb45
--- /dev/null
+++ b/src/CarPark/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/src/CarPark/Platforms/Windows/App.xaml.cs b/src/CarPark/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..aad2344
--- /dev/null
+++ b/src/CarPark/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace CarPark.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/src/CarPark/Platforms/Windows/Package.appxmanifest b/src/CarPark/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..642211c
--- /dev/null
+++ b/src/CarPark/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/CarPark/Platforms/Windows/app.manifest b/src/CarPark/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..53270df
--- /dev/null
+++ b/src/CarPark/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/src/CarPark/Platforms/iOS/AppDelegate.cs b/src/CarPark/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..840d66d
--- /dev/null
+++ b/src/CarPark/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace CarPark;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/src/CarPark/Platforms/iOS/Info.plist b/src/CarPark/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/src/CarPark/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/src/CarPark/Platforms/iOS/Program.cs b/src/CarPark/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..62b8ee0
--- /dev/null
+++ b/src/CarPark/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace CarPark;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/src/CarPark/Properties/launchSettings.json b/src/CarPark/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/src/CarPark/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/CarPark/Resources/AppIcon/appicon.svg b/src/CarPark/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..af2a8ec
--- /dev/null
+++ b/src/CarPark/Resources/AppIcon/appicon.svg
@@ -0,0 +1,46 @@
+
+
+
diff --git a/src/CarPark/Resources/AppIcon/appiconfg.svg b/src/CarPark/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/src/CarPark/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/src/CarPark/Resources/Fonts/OpenSans-Regular.ttf b/src/CarPark/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..8e0698e
Binary files /dev/null and b/src/CarPark/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/src/CarPark/Resources/Fonts/OpenSans-Semibold.ttf b/src/CarPark/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..7ef9b06
Binary files /dev/null and b/src/CarPark/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/src/CarPark/Resources/Images/car.svg b/src/CarPark/Resources/Images/car.svg
new file mode 100644
index 0000000..201149e
--- /dev/null
+++ b/src/CarPark/Resources/Images/car.svg
@@ -0,0 +1,42 @@
+
+
+
diff --git a/src/CarPark/Resources/Images/chat.svg b/src/CarPark/Resources/Images/chat.svg
new file mode 100644
index 0000000..0908504
--- /dev/null
+++ b/src/CarPark/Resources/Images/chat.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/src/CarPark/Resources/Images/lightning.svg b/src/CarPark/Resources/Images/lightning.svg
new file mode 100644
index 0000000..4cb0eed
--- /dev/null
+++ b/src/CarPark/Resources/Images/lightning.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/CarPark/Resources/Images/logo.png b/src/CarPark/Resources/Images/logo.png
new file mode 100644
index 0000000..25e8f05
Binary files /dev/null and b/src/CarPark/Resources/Images/logo.png differ
diff --git a/src/CarPark/Resources/Images/logout.svg b/src/CarPark/Resources/Images/logout.svg
new file mode 100644
index 0000000..b81559f
--- /dev/null
+++ b/src/CarPark/Resources/Images/logout.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/src/CarPark/Resources/Images/parking.svg b/src/CarPark/Resources/Images/parking.svg
new file mode 100644
index 0000000..c456ed0
--- /dev/null
+++ b/src/CarPark/Resources/Images/parking.svg
@@ -0,0 +1,50 @@
+
+
+
diff --git a/src/CarPark/Resources/Images/photo.svg b/src/CarPark/Resources/Images/photo.svg
new file mode 100644
index 0000000..ec13289
--- /dev/null
+++ b/src/CarPark/Resources/Images/photo.svg
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/src/CarPark/Resources/Raw/AboutAssets.txt b/src/CarPark/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/src/CarPark/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/src/CarPark/Resources/Splash/splash.svg b/src/CarPark/Resources/Splash/splash.svg
new file mode 100644
index 0000000..af2a8ec
--- /dev/null
+++ b/src/CarPark/Resources/Splash/splash.svg
@@ -0,0 +1,46 @@
+
+
+
diff --git a/src/CarPark/Resources/Styles/Colors.xaml b/src/CarPark/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/src/CarPark/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/src/CarPark/Resources/Styles/Styles.xaml b/src/CarPark/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..1ec9d55
--- /dev/null
+++ b/src/CarPark/Resources/Styles/Styles.xaml
@@ -0,0 +1,384 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+