this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] colors (0.0.1)

CHANGES:

## 0.0.1

* Introduce RGB, XYZ, LUV, UV types
* Include standard white reference point `d65`
* Linearize/Delinearize RGB
* Conversions between RGB, XYZ, and LUV
* LUV blending with configurable mixing
* RGB blending via LUV with configurable mixing

+50
+50
packages/colors/colors.0.0.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A pure OCaml library for manipulating colors across color spaces" 3 + maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 4 + authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 5 + license: "MIT" 6 + tags: [ 7 + "color" 8 + "color spaces" 9 + "color transformations" 10 + "color blending" 11 + "luv" 12 + "xyz" 13 + "rgb" 14 + "linear rgb" 15 + "srgb" 16 + "uv" 17 + "reference colors" 18 + ] 19 + homepage: "https://github.com/leostera/colors" 20 + bug-reports: "https://github.com/leostera/colors/issues" 21 + depends: [ 22 + "dune" {>= "3.11"} 23 + "ocaml" {>= "4.13.0"} 24 + "mdx" {with-test & >= "2.3.1"} 25 + "odoc" {with-doc} 26 + ] 27 + build: [ 28 + ["dune" "subst"] {dev} 29 + [ 30 + "dune" 31 + "build" 32 + "-p" 33 + name 34 + "-j" 35 + jobs 36 + "@install" 37 + "@runtest" {with-test} 38 + "@doc" {with-doc} 39 + ] 40 + ] 41 + dev-repo: "git+https://github.com/leostera/colors.git" 42 + url { 43 + src: 44 + "https://github.com/leostera/colors/releases/download/0.0.1/colors-0.0.1.tbz" 45 + checksum: [ 46 + "sha256=7d8d63f4538356789fc2c23caa42a6d104a6b2c816a9815727bcbca3bfca9846" 47 + "sha512=fd6ffb5c3e4a35b5d3e2e1e2eec05b36725c355a6e5e6b6c9384dcd1a79a28f98592edb36136582e2735bb78f5905dadfabef01da92f27a1b642d9d0afe289e7" 48 + ] 49 + } 50 + x-commit-hash: "5c50fc3ca31bffeb197eb6d3f0e1f6ce9633165a"