Browse Source

Merge pull request #1021 from zappyzhao/master

Update the hex value for DarkSeaGreen color
pull/1031/head
James Jackson-South 6 years ago
committed by GitHub
parent
commit
e484a405df
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/ImageSharp/Color/Color.NamedColors.cs
  2. 2
      tests/Images/External

6
src/ImageSharp/Color/Color.NamedColors.cs

@ -174,9 +174,9 @@ namespace SixLabors.ImageSharp
public static readonly Color DarkSalmon = FromRgba(233, 150, 122, 255);
/// <summary>
/// Represents a <see paramref="Color"/> matching the W3C definition that has an hex value of #8FBC8B.
/// Represents a <see paramref="Color"/> matching the W3C definition that has an hex value of #8FBC8F.
/// </summary>
public static readonly Color DarkSeaGreen = FromRgba(143, 188, 139, 255);
public static readonly Color DarkSeaGreen = FromRgba(143, 188, 143, 255);
/// <summary>
/// Represents a <see paramref="Color"/> matching the W3C definition that has an hex value of #483D8B.
@ -718,4 +718,4 @@ namespace SixLabors.ImageSharp
/// </summary>
public static readonly Color YellowGreen = FromRgba(154, 205, 50, 255);
}
}
}

2
tests/Images/External

@ -1 +1 @@
Subproject commit 58b2c01f9b66dd42d2b5b040b85e6846083b5e5f
Subproject commit 1d3d4e3652dc95bd8bd420346bfe0f189addc587
Loading…
Cancel
Save