package caltool.model.schedule;

/****
 *
 * A StandardColor is one of a fixed set of possibilities for use in color
 * coding a cateogry.  The possible values are "Black", "Brown", "Red",
 * "Orange", "Yellow", "Green", "Blue", or "Purple".
 *
 * @author Gene Fisher (gfisher@calpoly.edu)
 * @version 1feb13
 *
 */

public enum StandardColor {

    /** One of the built-in category colors */
    Black,

    /** One of the built-in category colors */
    Brown,

    /** One of the built-in category colors */
    Red,

    /** One of the built-in category colors */
    Orange,

    /** One of the built-in category colors */
    Yellow,

    /** One of the built-in category colors */
    Green,

    /** One of the built-in category colors */
    Blue,

    /** One of the built-in category colors */
    Purple

}