@spaced-out/ui-design-system
Version:
Sense UI components library
20 lines (17 loc) • 457 B
Flow
// @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<typeof TEXT_COLORS>;