export type Colors =
    | "primary"
    | "secondary"
    | "success"
    | "error"
    | "info"
    | "warning";
