├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── approx.rs ├── cmy.rs ├── cmyk.rs ├── compare.rs ├── hsl.rs ├── hsv.rs ├── hunter_lab.rs ├── lab.rs ├── lch.rs ├── lib.rs ├── luv.rs ├── rgb.rs ├── xyz.rs └── yxy.rs └── tests └── conversions.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/README.md -------------------------------------------------------------------------------- /src/approx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/approx.rs -------------------------------------------------------------------------------- /src/cmy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/cmy.rs -------------------------------------------------------------------------------- /src/cmyk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/cmyk.rs -------------------------------------------------------------------------------- /src/compare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/compare.rs -------------------------------------------------------------------------------- /src/hsl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/hsl.rs -------------------------------------------------------------------------------- /src/hsv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/hsv.rs -------------------------------------------------------------------------------- /src/hunter_lab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/hunter_lab.rs -------------------------------------------------------------------------------- /src/lab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/lab.rs -------------------------------------------------------------------------------- /src/lch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/lch.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/luv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/luv.rs -------------------------------------------------------------------------------- /src/rgb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/rgb.rs -------------------------------------------------------------------------------- /src/xyz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/xyz.rs -------------------------------------------------------------------------------- /src/yxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/src/yxy.rs -------------------------------------------------------------------------------- /tests/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChevyRay/color_space/HEAD/tests/conversions.rs --------------------------------------------------------------------------------