Skip to content

Commit

Permalink
DeepOrangeColorStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Dec 2, 2023
1 parent d0bf37a commit 048a18a
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 @@ -48,6 +48,9 @@
<MauiXaml Update="Resources\Colors\CyanColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\DeepOrangeColorStyle.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
<MauiXaml Update="Resources\Colors\DeepPurpleColorStyle.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.DeepOrangeColorStyle">
<Color x:Key="PrimaryColor">#FF5722</Color>
<Color x:Key="Lighten5">#FBE9E7</Color>
<Color x:Key="Lighten4">#FFCCBC</Color>
<Color x:Key="Lighten3">#FFAB91</Color>
<Color x:Key="Lighten2">#FF8A65</Color>
<Color x:Key="Lighten1">#FF7043</Color>
<Color x:Key="Darken1">#F4511E</Color>
<Color x:Key="Darken2">#E64A19</Color>
<Color x:Key="Darken3">#D84315</Color>
<Color x:Key="Darken4">#BF360C</Color>
<Color x:Key="Accent1">#FF9E80</Color>
<Color x:Key="Accent2">#FF6E40</Color>
<Color x:Key="Accent3">#FF3D00</Color>
<Color x:Key="Accent4">#DD2C00</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 DeepOrangeColorStyle : ResourceDictionary
{
public DeepOrangeColorStyle()
{
InitializeComponent();
}
}

0 comments on commit 048a18a

Please sign in to comment.