Skip to content

Commit

Permalink
add OrangeColorStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Dec 2, 2023
1 parent 41ebf79 commit d0bf37a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
<MauiXaml Update="Resources\Colors\LimeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\OrangeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\PinkColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors.OrangeColorStyle">
<Color x:Key="PrimaryColor">#FF9800</Color>
<Color x:Key="Lighten5">#FFF3E0</Color>
<Color x:Key="Lighten4">#FFE0B2</Color>
<Color x:Key="Lighten3">#FFCC80</Color>
<Color x:Key="Lighten2">#FFB74D</Color>
<Color x:Key="Lighten1">#FFA726</Color>
<Color x:Key="Darken1">#FB8C00</Color>
<Color x:Key="Darken2">#F57C00</Color>
<Color x:Key="Darken3">#EF6C00</Color>
<Color x:Key="Darken4">#E65100</Color>
<Color x:Key="Accent1">#FFD180</Color>
<Color x:Key="Accent2">#FFAB40</Color>
<Color x:Key="Accent3">#FF9100</Color>
<Color x:Key="Accent4">#FF6D00</Color>
</ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace EasyMicroservices.UI.MauiKits.MaterialUI.Resources.Colors;

public partial class OrangeColorStyle : ResourceDictionary
{
public OrangeColorStyle()
{
InitializeComponent();
}
}

0 comments on commit d0bf37a

Please sign in to comment.