export const FONTWEIGHT_MAP = { light: 'light', regular: 'regular', medium: 'medium', 'semi-bold': 'semiBold', } as const; export type TypographyColorIntent = | 'body' | 'subdued' | 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'inverted' | 'archived' | 'disabled' | 'muted' | 'inactive'; export type TypographyIntent = TypographyColorIntent | 'ai';