@tmlmobilidade/emails
Version:
25 lines (24 loc) • 385 B
JavaScript
/* * */
/* FONT WEIGHT */
export const fontWeight = {
bold: '600',
normal: '400',
};
/* * */
/* FONT FAMILY */
export const fontFamily = {
primary: '\'Work Sans\', sans-serif',
};
/* * */
/* LINE HEIGHT */
export const lineHeight = {
normal: '1.5',
};
/* * */
/* FONT SIZE */
export const fontSize = {
lg: '18px',
md: '16px',
sm: '14px',
xs: '12px',
};