-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
35 lines (26 loc) · 838 Bytes
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(lang dune 3.7)
(name hsluv)
(version dev)
(source (github sabine/hsluv-ocaml))
(homepage "https://github.com/sabine/hsluv-ocaml")
(license MIT)
(authors
"Sabine Schmaltz")
(maintainers
"Sabine Schmaltz")
(generate_opam_files true)
(package
(name hsluv)
(synopsis "HSLuv human-friendly color space implementation in OCaml")
(description "This package implements the HSLuv color space model,
providing a perceptually uniform alternative to traditional HSL.
It includes functions for converting between HSLuv/HPLuv
and other color spaces like RGB, XYZ, LCH, and LUV, as well as hexadecimal
color representation.")
(tags ("color" "hsluv" "hpluv" "rgb" "xyz" "lch" "luv" "color space" "color conversion" "perceptually uniform colors"))
(depends
(ocaml (>= 4.08.0))
dune
(yojson :with-test)
(ppx_yojson_conv :with-test)
))