// @flow strict export const TEXT_COLORS = Object.freeze({ primary: 'primary', secondary: 'secondary', tertiary: 'tertiary', disabled: 'disabled', clickable: 'clickable', neutral: 'neutral', success: 'success', information: 'information', warning: 'warning', danger: 'danger', inversePrimary: 'inversePrimary', inverseSecondary: 'inverseSecondary', favorite: 'favorite', }); export type ColorTypes = $Values;