tpapp / cl-colors

Simple color library for Common Lisp

This URL has Read+Write access

cl-colors / package.lisp
100644 9 lines (8 sloc) 0.272 kb
1
2
3
4
5
6
7
8
9
(defpackage :cl-colors
  (:use :common-lisp :cl-utilities)
  (:export rgb red green blue
rgba alpha add-alpha
hsv hue saturation value
rgb->hsv hsv->rgb ->hsv ->rgb
convex-combination hue-combination rgb-combination
rgba-combination hsv-combination))