@aws-amplify/ui
Version:
`@aws-amplify/ui` contains low-level logic & styles for stand-alone usage or re-use in framework-specific implementations.
29 lines (27 loc) • 678 B
JavaScript
const text = {
// default styles
color: { value: '{colors.font.primary.value}' },
// variations
primary: {
color: { value: '{colors.font.primary.value}' },
},
secondary: {
color: { value: '{colors.font.secondary.value}' },
},
tertiary: {
color: { value: '{colors.font.tertiary.value}' },
},
error: {
color: { value: '{colors.font.error.value}' },
},
warning: {
color: { value: '{colors.font.warning.value}' },
},
success: {
color: { value: '{colors.font.success.value}' },
},
info: {
color: { value: '{colors.font.info.value}' },
},
};
export { text };