Skip to content

Commit

Permalink
FromTrueColor
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Oct 23, 2023
1 parent 03371a5 commit f905d56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ACadSharp.Tests/ColorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ public void IndexedColorProperties()
Assert.True(new Color(0).IsByBlock);
Assert.True(new Color(256).IsByLayer);

Assert.True(new Color(2705).IsTrueColor);
Assert.True(new Color(2706).IsTrueColor);
Assert.True(new Color(2707).IsTrueColor);
Assert.True(new Color(2708).IsTrueColor);
Assert.True(Color.FromTrueColor(2705).IsTrueColor);
Assert.True(Color.FromTrueColor(2706).IsTrueColor);
Assert.True(Color.FromTrueColor(2707).IsTrueColor);
Assert.True(Color.FromTrueColor(2708).IsTrueColor);
}

[Fact]
Expand Down

0 comments on commit f905d56

Please sign in to comment.