export type FunctionalColor = 'error' | 'warning';
export type UtilityColor = 'blue' | 'default' | 'indigo' | 'pink' | 'purple' | 'red' | 'teal' | 'yellow';
export type BrandColor = 'primary' | 'secondary';
export type AllColors = BrandColor | FunctionalColor | UtilityColor;
