export type Theme = {
    '--primary-color': string;
    '--primary-foreground-color': string;
    '--primary-hover': string;
    '--primary-active': string;
    '--primary-disabled': string;
    '--primary-color-50': string;
    '--primary-color-100': string;
    '--primary-color-200': string;
    '--primary-color-300': string;
    '--primary-color-500': string;
    '--primary-color-600': string;
    '--primary-color-700': string;
    '--primary-color-800': string;
    '--primary-color-900': string;
    '--primary-color-950': string;
    '--secondary-color': string;
    '--primary-text-color': string;
    '--primary-text-color-500': string;
    '--ring-offset': string;
    '--ring-offset-width': string;
    '--ring-offset-color': string;
    '--ring-color': string;
    '--border-color': string;
    '--border-width': string;
    '--border-radius': string;
    '--alert-color-success': string;
    '--alert-color-info': string;
    '--alert-color-warning': string;
};
