@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) • 608 B
JavaScript
const shadows = {
small: {
value: {
offsetX: '0px',
offsetY: '2px',
blurRadius: '4px',
color: '{colors.shadow.tertiary.value}',
},
},
medium: {
value: {
offsetX: '0px',
offsetY: '2px',
blurRadius: '6px',
color: '{colors.shadow.secondary.value}',
},
},
large: {
value: {
offsetX: '0px',
offsetY: '4px',
blurRadius: '12px',
color: '{colors.shadow.primary.value}',
},
},
};
export { shadows };