Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 2x 2x 2x 2x | /**
* Brand colors for email templates
*/
export const EMAIL_COLORS = {
primary: 'rgb(230, 73, 128)',
white: '#ffffff',
black: '#333333',
gray: {
light: '#f9f9f9',
medium: '#666666',
dark: '#999999',
},
background: '#f5f5f5',
warning: {
background: '#fff3cd',
border: '#ffc107',
text: '#856404',
},
} as const;
/**
* Font family stack for email templates
*/
export const EMAIL_FONTS = {
primary:
"-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
} as const;
/**
* Common spacing values
*/
export const EMAIL_SPACING = {
xs: '10px',
sm: '20px',
md: '30px',
lg: '40px',
} as const;
/**
* Border radius values
*/
export const EMAIL_RADIUS = {
sm: '4px',
md: '6px',
lg: '8px',
xl: '10px',
} as const;
|