@ngageoint/color-js
Version:
Color Javascript
72 lines • 1.4 kB
TypeScript
/**
* Color Constant hex codes
*
* @author osbornb
*/
export declare class ColorConstants {
/**
* Black hex color
*/
static readonly BLACK = "#000000";
/**
* Blue hex color
*/
static readonly BLUE = "#0000FF";
/**
* Brown hex color
*/
static readonly BROWN = "#A52A2A";
/**
* Cyan hex color
*/
static readonly CYAN = "#00FFFF";
/**
* Dark Gray hex color
*/
static readonly DKGRAY = "#444444";
/**
* Gray hex color
*/
static readonly GRAY = "#888888";
/**
* Green hex color
*/
static readonly GREEN = "#00FF00";
/**
* Light Gray hex color
*/
static readonly LTGRAY = "#CCCCCC";
/**
* Magenta hex color
*/
static readonly MAGENTA = "#FF00FF";
/**
* Orange hex color
*/
static readonly ORANGE = "#FFA500";
/**
* Pink hex color
*/
static readonly PINK = "#FFC0CB";
/**
* Purple hex color
*/
static readonly PURPLE = "#800080";
/**
* Red hex color
*/
static readonly RED = "#FF0000";
/**
* Violet hex color
*/
static readonly VIOLET = "#EE82EE";
/**
* White hex color
*/
static readonly WHITE = "#FFFFFF";
/**
* Yellow hex color
*/
static readonly YELLOW = "#FFFF00";
}
//# sourceMappingURL=ColorConstants.d.ts.map