Hey, folks! Here’s another update for Palette, the color crate I’m maintaining. Feel free to let me know if you have any questions or feedback! I will do my best to answer.

  • @OgeonOP
    link
    65 months ago

    ICC profiles are definitely part of the field, but that’s sort of a topic of its own. At least in terms of scope. The color space rabbit hole is so deep that I never got as far as including them. There are other crates that go into those parts and it should be easy to bridge between them and Palette.

    I would say Palette is more for the “business logic” of working with colors, so converting, manipulating and analyzing. The difference from ICC profiles when converting with Palette is that you need to know more about the source and destination color spaces during compile time. ICC profiles use more runtime information.

    Palette could be used for applications like image manipulation programs, 3D rendering, generative art, UI color theme generation, computer vision, and a lot more. A lot of people also use it for smaller tasks like converting HSL input to RGB output or making gradients.

    • @Vorpal
      link
      English
      35 months ago

      Thanks for the clear and detailed explanation!