export type FlowbiteTheme = 'blue' | 'green' | 'red' | 'pink' | 'purple'; export type FlowbiteThemablePayload = { theme: FlowbiteTheme; }; export type ThemableChildrenApply = 'background' | 'disabled' | 'hover' | 'text' | 'border' | 'focus';