Library
ColorChip
ColorChip is a PHP class for working with color in a more convenient manner than the basic RGB and Hexadecimal triplets often encountered in programming, especially web-oriented programming. ColorChip allows you to define a color using RGB, HSV (Hue, Saturation, Value) or a Hexadecimal string. ColorChip objects have properties for all three of these color models, as well as methods for adjusting both RGB and HSV values - these methods automatically update all of the object’s properties. Additional methods exist for getting color compliments, triads, and the nearest websafe color.

VOOT (Vanilla Object Oriented Templates)
VOOT is a simple (‘vanilla’) PHP class written in 2003 for creating web pages with templates. It supports user-defined HTTP headers, and it is capable of processing PHP contained in rendered templates. This class was written with simplicity and flexibility in mind; templates can take the form of any text-based file, and you can define as many content placeholders as you like in each template. To indicate a placeholder in a template, you just surround a key word with percentage signs. VOOT was originally used to generate its own information and download page at my previous portfolio web site

