export declare const PANELBLUE = "rgb(98, 127, 162)"; export declare const TEAL = "rgb(0, 171, 176)"; export declare const DARKTEAL = "rgb(4, 156, 165)"; export declare const LIGHTGREY = "rgb(218, 218, 218)"; export declare const DARKGREY = "rgb(107, 107, 107)"; export declare const DARKBLUE = "rgb(0, 21, 61)"; export declare const ADE = "rgb(226, 175, 75)"; export declare const SUBTHERAPEUTIC = "rgb(119, 126, 167)"; export declare const SEE = "rgb(247, 135, 100)"; export declare const INRANGE = "rgb(140, 168, 170)"; export declare const WARNING = "rgb(255, 193, 7)"; export declare const FOOTER_BLACK = "rgb(32, 32, 32)"; export declare const FOOTER_LINK = "rgb(2, 169, 220)"; export declare const FOOTER_HOVER = "rgb(52, 152, 219)"; export declare const BG_WHITE = "rgb(246, 247, 251)"; export declare const VALID_GREEN = "rgb(220, 53, 69)"; export declare const INVALID_RED = "rgb(220, 56, 69)"; export declare const SHADOW = "rgba(180, 180, 180, 0.3)"; export declare const NAVY = "rgb(14, 78, 149)"; export declare const DROPDOWN_BLUE = "rgb(197, 218, 246)"; export declare const LIGHTEST_GREY = "rgb(252, 252, 252)"; export declare const CIRCLE_BUTTON_BLUE = "rgb(43, 82, 136)"; export declare const MENU_GREY = "rgb(244, 244, 244)"; export declare const LINK_TEXT = "rgb(224, 135, 120)"; export declare const LIST_SELECTED = "rgb(240, 246, 253)"; export declare const SKYBLUE = "rgb(241, 246, 253)"; interface IColor { name: string; color: string; } export declare const colors: IColor[]; export {};