@skillzet/tokens
Version:
Design Tokens
63 lines (57 loc) • 747 B
JavaScript
export const typography = {
h1: {
fontWeight: 600,
fontSize: '3.5rem',
},
h2: {
fontWeight: 600,
fontSize: '3rem',
},
h3: {
fontWeight: 600,
fontSize: '2.25rem',
},
h4: {
fontWeight: 600,
fontSize: '2rem',
},
h5: {
fontWeight: 600,
fontSize: '1.5rem',
},
h6: {
fontWeight: 600,
fontSize: '1.125rem',
},
overline: {
fontWeight: 600,
},
subtitle1: {
},
subtitle2: {
},
body1: {
},
body2: {
},
button: {
},
caption: {
}
};
export default typography;
// Typography Default Variants:
// h1
// h2
// h3
// h4
// h5
// h6
// subtitle1
// subtitle2
// body1
// body2
// button
// caption
// overline
//https://mui.com/customization/typography/