diff --git a/ColorPlucker.sln b/ColorPlucker.sln
new file mode 100644
index 0000000..5ddfcb3
--- /dev/null
+++ b/ColorPlucker.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}") = "ColorPlucker", "ColorPlucker\ColorPlucker.csproj", "{55D66D79-702F-4F83-A578-84924AF669CB}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {55D66D79-702F-4F83-A578-84924AF669CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {55D66D79-702F-4F83-A578-84924AF669CB}.Release|Any CPU.Build.0 = Release|Any CPU
+ {55D66D79-702F-4F83-A578-84924AF669CB}.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/ColorPlucker/App.xaml b/ColorPlucker/App.xaml
new file mode 100644
index 0000000..fc1d783
--- /dev/null
+++ b/ColorPlucker/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ColorPlucker/App.xaml.cs b/ColorPlucker/App.xaml.cs
new file mode 100644
index 0000000..0433d53
--- /dev/null
+++ b/ColorPlucker/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace ColorPlucker;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new MainPage();
+ }
+}
diff --git a/ColorPlucker/AppShell.xaml b/ColorPlucker/AppShell.xaml
new file mode 100644
index 0000000..5c4d0b6
--- /dev/null
+++ b/ColorPlucker/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/ColorPlucker/AppShell.xaml.cs b/ColorPlucker/AppShell.xaml.cs
new file mode 100644
index 0000000..f1161fe
--- /dev/null
+++ b/ColorPlucker/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace ColorPlucker;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/ColorPlucker/ColorPlucker.csproj b/ColorPlucker/ColorPlucker.csproj
new file mode 100644
index 0000000..471a78f
--- /dev/null
+++ b/ColorPlucker/ColorPlucker.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ ColorPlucker
+ true
+ true
+ enable
+
+
+ ColorPlucker
+
+
+ com.companyname.colorplucker
+ 9a35922e-5aa8-43b1-bcba-0ecb4777a908
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ColorPlucker/MainPage.xaml b/ColorPlucker/MainPage.xaml
new file mode 100644
index 0000000..b8aef70
--- /dev/null
+++ b/ColorPlucker/MainPage.xaml
@@ -0,0 +1,122 @@
+
+
+
+
+ #FF87B2
+ #E74646
+ #FFF3E2
+ #49D292
+ #FAF1E4
+ #19A7CE
+ #F6F1F1
+ #916DD5
+ #D89CF6
+ #F0E3FF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ColorPlucker/MainPage.xaml.cs b/ColorPlucker/MainPage.xaml.cs
new file mode 100644
index 0000000..2b57157
--- /dev/null
+++ b/ColorPlucker/MainPage.xaml.cs
@@ -0,0 +1,72 @@
+
+namespace ColorPlucker;
+
+public partial class MainPage : ContentPage
+{
+ bool isRandom = true;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void sld_ValueChanged(object sender, ValueChangedEventArgs e)
+ {
+ if(!isRandom)
+ {
+ var red = sldRed.Value;
+ var green = sldGreen.Value;
+ var blue = sldBlue.Value;
+
+ Color color = Color.FromRgb(red, green, blue);
+
+ SetColor(color);
+ }
+
+ }
+
+ private void SetColor(Color color)
+ {
+ btnRandom.BackgroundColor = color;
+ Container.BackgroundColor = color;
+ lblHex.Text = color.ToHex();
+ }
+
+ private void Save1_Clicked(object sender, EventArgs e)
+ {
+ Color color = Color.FromRgb(sldRed.Value, sldGreen.Value,sldBlue.Value);
+ ColorSave1.BackgroundColor = color;
+
+ }
+
+ private void Save2_Clicked(object sender, EventArgs e)
+ {
+ Color color = Color.FromRgb(sldRed.Value, sldGreen.Value, sldBlue.Value);
+ ColorSave2.BackgroundColor = color;
+ }
+
+ private void Save3_Clicked(object sender, EventArgs e)
+ {
+ Color color = Color.FromRgb(sldRed.Value, sldGreen.Value, sldBlue.Value);
+ ColorSave3.BackgroundColor = color;
+ }
+
+ private void btnRandom_Clicked(object sender, EventArgs e)
+ {
+ isRandom = true;
+ var random = new Random();
+
+ var color = Color.FromRgb(
+ random.Next(0, 256),
+ random.Next(0, 256),
+ random.Next(0, 256));
+
+ SetColor(color);
+ sldRed.Value = color.Red;
+ sldGreen.Value = color.Green;
+ sldBlue.Value = color.Blue;
+
+ isRandom = false;
+ }
+}
+
diff --git a/ColorPlucker/MauiProgram.cs b/ColorPlucker/MauiProgram.cs
new file mode 100644
index 0000000..f269755
--- /dev/null
+++ b/ColorPlucker/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace ColorPlucker;
+
+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");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+}
diff --git a/ColorPlucker/Platforms/Android/AndroidManifest.xml b/ColorPlucker/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/ColorPlucker/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ColorPlucker/Platforms/Android/MainActivity.cs b/ColorPlucker/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..68e7f9a
--- /dev/null
+++ b/ColorPlucker/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace ColorPlucker;
+
+[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/ColorPlucker/Platforms/Android/MainApplication.cs b/ColorPlucker/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..29c3646
--- /dev/null
+++ b/ColorPlucker/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace ColorPlucker;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ColorPlucker/Platforms/Android/Resources/values/colors.xml b/ColorPlucker/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/ColorPlucker/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/ColorPlucker/Platforms/MacCatalyst/AppDelegate.cs b/ColorPlucker/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..044850b
--- /dev/null
+++ b/ColorPlucker/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace ColorPlucker;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ColorPlucker/Platforms/MacCatalyst/Info.plist b/ColorPlucker/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/ColorPlucker/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/ColorPlucker/Platforms/MacCatalyst/Program.cs b/ColorPlucker/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..89c2dde
--- /dev/null
+++ b/ColorPlucker/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace ColorPlucker;
+
+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/ColorPlucker/Platforms/Tizen/Main.cs b/ColorPlucker/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..17788a9
--- /dev/null
+++ b/ColorPlucker/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace ColorPlucker;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/ColorPlucker/Platforms/Tizen/tizen-manifest.xml b/ColorPlucker/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..9266610
--- /dev/null
+++ b/ColorPlucker/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/ColorPlucker/Platforms/Windows/App.xaml b/ColorPlucker/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..afbfb7a
--- /dev/null
+++ b/ColorPlucker/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/ColorPlucker/Platforms/Windows/App.xaml.cs b/ColorPlucker/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..afd9e86
--- /dev/null
+++ b/ColorPlucker/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 ColorPlucker.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/ColorPlucker/Platforms/Windows/Package.appxmanifest b/ColorPlucker/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..de59620
--- /dev/null
+++ b/ColorPlucker/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ColorPlucker/Platforms/Windows/app.manifest b/ColorPlucker/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..86776cf
--- /dev/null
+++ b/ColorPlucker/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/ColorPlucker/Platforms/iOS/AppDelegate.cs b/ColorPlucker/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..044850b
--- /dev/null
+++ b/ColorPlucker/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace ColorPlucker;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/ColorPlucker/Platforms/iOS/Info.plist b/ColorPlucker/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/ColorPlucker/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/ColorPlucker/Platforms/iOS/Program.cs b/ColorPlucker/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..89c2dde
--- /dev/null
+++ b/ColorPlucker/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace ColorPlucker;
+
+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/ColorPlucker/Properties/launchSettings.json b/ColorPlucker/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/ColorPlucker/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/ColorPlucker/Resources/AppIcon/appicon.svg b/ColorPlucker/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/ColorPlucker/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/ColorPlucker/Resources/AppIcon/appiconfg.svg b/ColorPlucker/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/ColorPlucker/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/ColorPlucker/Resources/Fonts/OpenSans-Regular.ttf b/ColorPlucker/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..e2644a5
Binary files /dev/null and b/ColorPlucker/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/ColorPlucker/Resources/Fonts/OpenSans-Semibold.ttf b/ColorPlucker/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..f75b525
Binary files /dev/null and b/ColorPlucker/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/ColorPlucker/Resources/Images/dotnet_bot.svg b/ColorPlucker/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/ColorPlucker/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/ColorPlucker/Resources/Raw/AboutAssets.txt b/ColorPlucker/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/ColorPlucker/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/ColorPlucker/Resources/Splash/splash.svg b/ColorPlucker/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/ColorPlucker/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/ColorPlucker/Resources/Styles/Colors.xaml b/ColorPlucker/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/ColorPlucker/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/ColorPlucker/Resources/Styles/Styles.xaml b/ColorPlucker/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/ColorPlucker/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+