export declare const COLORS: {
    readonly black: "#000000";
    readonly blue: "#006699";
    readonly green: "#339933";
    readonly orange: "#ff9900";
    readonly red: "#ed1c24";
    readonly yellow: "#ffd502";
};
export type Color = keyof typeof COLORS;
export type ColorExtract<U extends Color> = Extract<Color, U>;
