UNPKG

@tmlmobilidade/emails

Version:
46 lines (45 loc) 675 B
/* * */ /* DEFAULT */ const prose = { background: '#ffffff', foreground: '#000000', }; /* * */ /* DANGER */ const danger = { background: '#FFEBEB', foreground: '#D20F1E', }; /* * */ /* INFO */ const info = { background: '#cce5ff', foreground: '#004085', }; /* * */ /* MUTED */ const muted = { background: '#f8f9fa', foreground: '#BEBEC8', }; /* * */ /* SUCCESS */ const success = { background: '#d4edda', foreground: '#00B932', }; /* * */ /* WARNING */ const warning = { background: '#fff3cd', foreground: 'rgb(235, 120, 0)', }; /* * */ export default { danger, info, muted, prose, success, warning, };