declare const baseColors: {
    greySuperLight: string;
    greyLight: string;
    greyTextDarkBg: string;
    greyMid: string;
    greyDark: string;
    charcoalBg: string;
    red: string;
    charcoal: string;
    white: string;
    blue: string;
    purple: string;
    green: string;
    redAccent: string;
    greenAccent: string;
    blueAccent: string;
    purpleAccent: string;
    yellowAccent: string;
    burnRed: string;
    burnBlue: string;
    burnGreen: string;
    burnPurple: string;
};
export declare type Color = keyof typeof baseColors;
declare const colors: Record<Color, string>;
export default colors;
