We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When converting from a HSL to RGB color whenever getTriadicColor and getTetradicColor are called, rgb values end up being either 1 higher or lower.
getTriadicColor
getTetradicColor
The text was updated successfully, but these errors were encountered:
Few test cases to check #ec0ffd - should return [ 253, 236, 15 ], [ 15, 253, 236 ], but returns [ 253, 237, 15 ], [ 15, 253, 237 ] #ec0ffe - should return [ 254, 236, 15 ], [ 15, 254, 236 ] but returns [ 254, 234, 15 ], [ 15, 254, 234 ] (this is more of a difference than previously observed)
[ 253, 236, 15 ], [ 15, 253, 236 ]
[ 253, 237, 15 ], [ 15, 253, 237 ]
[ 254, 236, 15 ], [ 15, 254, 236 ]
[ 254, 234, 15 ], [ 15, 254, 234 ]
Sorry, something went wrong.
tylerguy
No branches or pull requests
When converting from a HSL to RGB color whenever
getTriadicColor
andgetTetradicColor
are called, rgb values end up being either 1 higher or lower.The text was updated successfully, but these errors were encountered: