Typography
/*************************** DEFAULT - TYPOGRAPHY ***************************/
export default function typography() {
return {
fontFamily: FONT_ARCHIVO,
letterSpacing: 0,
// heading - h1
h1: {
fontWeight: 500,
fontSize: 40,
lineHeight: '44px'
},
// heading - h2
h2: {
...
},
// heading - h3
h3: {
...
},
// heading - h4
h4: {
...
},
// heading - h5
h5: {
...
},
// heading - h6
h6: {
...
},
// subtitle - 1
subtitle1: {
...
},
// subtitle - 2
subtitle2: {
...
},
// paragraph - 1
body1: {
...
},
// paragraph - 2
body2: {
...
},
// caption - regular
caption: {
...
},
// caption - medium
caption1: {
...
},
// button
button: {
textTransform: 'capitalize'
}
};
}Typography Variant
Property
Value
Description
Last updated