Erik Hedvall
Erik Hedvall
It's great that you bring this up, because I would surely have missed it. Let me just put on the moderator hat for a moment and ask that we keep...
Sounds good! Feel free to open a discussion thread. I'll rename this issue.
Hi, I see your point and I definitely don't want it to be unnecessarily difficult. The problem is that there are so many ways of representing RGB as a string...
First, sorry for coming off as negative. It's good that you highlighted that it's inconvenient and hard to find everything that's available. Thank you! The reason why I prefer to...
That could also be helpful! The combinations are too many (potentially endless) to have exactly all of them but the most common cases can of course still be covered. 🙂...
Hi! You can already parse hex colors via the [`FromStr`](https://doc.rust-lang.org/std/str/trait.FromStr.html) trait, so either of these should work: ```rust let example1: Srgb = hex.parse().ok()?; // .ok() throws the error away and...
As a first step toward making it more discoverable, I recently added more visible examples of parsing hex values in the documentation. It's not yet released, so here's a preview:...
Right, that would indeed be nicer. It's probably not much more than some find-and-replace in scripts + a change here on GitHub. 🤔
...and thanks for sharing your experiences. It got folded away by the GitHub app, but I saw it now. I will read the link a bit later, but the points...
The precision seem strangely low on my computer (3-4 digits are the same before it diverges). I can't find what causes it, but it's probably in `xyz_to_cam16`, since the output...