mirror of https://github.com/acid-info/lsd.git
feat: add subtitle 3-5 typography variants
This commit is contained in:
parent
0d6cc88e52
commit
a7bfa14d9d
|
@ -23,6 +23,9 @@ export const baseTheme: Theme = {
|
||||||
label2: {},
|
label2: {},
|
||||||
subtitle1: {},
|
subtitle1: {},
|
||||||
subtitle2: {},
|
subtitle2: {},
|
||||||
|
subtitle3: {},
|
||||||
|
subtitle4: {},
|
||||||
|
subtitle5: {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
sm: {
|
sm: {
|
||||||
|
@ -40,6 +43,9 @@ export const baseTheme: Theme = {
|
||||||
body2: {},
|
body2: {},
|
||||||
body3: {},
|
body3: {},
|
||||||
label1: {},
|
label1: {},
|
||||||
|
subtitle5: {},
|
||||||
|
subtitle4: {},
|
||||||
|
subtitle3: {},
|
||||||
label2: {},
|
label2: {},
|
||||||
subtitle1: {},
|
subtitle1: {},
|
||||||
subtitle2: {},
|
subtitle2: {},
|
||||||
|
@ -60,6 +66,9 @@ export const baseTheme: Theme = {
|
||||||
body2: {},
|
body2: {},
|
||||||
body3: {},
|
body3: {},
|
||||||
label1: {},
|
label1: {},
|
||||||
|
subtitle5: {},
|
||||||
|
subtitle4: {},
|
||||||
|
subtitle3: {},
|
||||||
label2: {},
|
label2: {},
|
||||||
subtitle1: {},
|
subtitle1: {},
|
||||||
subtitle2: {},
|
subtitle2: {},
|
||||||
|
@ -80,13 +89,16 @@ export const baseTheme: Theme = {
|
||||||
body2: {},
|
body2: {},
|
||||||
body3: {},
|
body3: {},
|
||||||
label1: {},
|
label1: {},
|
||||||
|
subtitle5: {},
|
||||||
|
subtitle4: {},
|
||||||
|
subtitle3: {},
|
||||||
label2: {},
|
label2: {},
|
||||||
subtitle1: {},
|
subtitle1: {},
|
||||||
subtitle2: {},
|
subtitle2: {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
xl: {
|
xl: {
|
||||||
width: 1200,
|
width: 1205,
|
||||||
typography: {
|
typography: {
|
||||||
display1: {},
|
display1: {},
|
||||||
display2: {},
|
display2: {},
|
||||||
|
@ -100,6 +112,9 @@ export const baseTheme: Theme = {
|
||||||
body2: {},
|
body2: {},
|
||||||
body3: {},
|
body3: {},
|
||||||
label1: {},
|
label1: {},
|
||||||
|
subtitle5: {},
|
||||||
|
subtitle4: {},
|
||||||
|
subtitle3: {},
|
||||||
label2: {},
|
label2: {},
|
||||||
subtitle1: {},
|
subtitle1: {},
|
||||||
subtitle2: {},
|
subtitle2: {},
|
||||||
|
@ -123,12 +138,31 @@ export const baseTheme: Theme = {
|
||||||
h4: { fontSize: '1.75rem', fontWeight: 'normal', lineHeight: '2.25rem' },
|
h4: { fontSize: '1.75rem', fontWeight: 'normal', lineHeight: '2.25rem' },
|
||||||
h5: { fontSize: '1.5rem', fontWeight: 'normal', lineHeight: '2rem' },
|
h5: { fontSize: '1.5rem', fontWeight: 'normal', lineHeight: '2rem' },
|
||||||
h6: { fontSize: '1.375rem', fontWeight: 'normal', lineHeight: '1.75rem' },
|
h6: { fontSize: '1.375rem', fontWeight: 'normal', lineHeight: '1.75rem' },
|
||||||
subtitle1: { fontSize: '1rem', fontWeight: 'normal', lineHeight: '1.5rem' },
|
subtitle1: {
|
||||||
|
fontSize: '1.25rem',
|
||||||
|
fontWeight: 'normal',
|
||||||
|
lineHeight: '1.625rem',
|
||||||
|
},
|
||||||
subtitle2: {
|
subtitle2: {
|
||||||
|
fontSize: '1.125rem',
|
||||||
|
fontWeight: 'normal',
|
||||||
|
lineHeight: '1.5rem',
|
||||||
|
},
|
||||||
|
subtitle3: {
|
||||||
|
fontSize: '1rem',
|
||||||
|
fontWeight: 'normal',
|
||||||
|
lineHeight: '1.5rem',
|
||||||
|
},
|
||||||
|
subtitle4: {
|
||||||
fontSize: '0.875rem',
|
fontSize: '0.875rem',
|
||||||
fontWeight: 'normal',
|
fontWeight: 'normal',
|
||||||
lineHeight: '1.25rem',
|
lineHeight: '1.25rem',
|
||||||
},
|
},
|
||||||
|
subtitle5: {
|
||||||
|
fontSize: '0.75rem',
|
||||||
|
fontWeight: 'normal',
|
||||||
|
lineHeight: '1rem',
|
||||||
|
},
|
||||||
body1: { fontSize: '1rem', fontWeight: 'normal', lineHeight: '1.5rem' },
|
body1: { fontSize: '1rem', fontWeight: 'normal', lineHeight: '1.5rem' },
|
||||||
body2: {
|
body2: {
|
||||||
fontSize: '0.875rem',
|
fontSize: '0.875rem',
|
||||||
|
|
|
@ -15,6 +15,9 @@ export type TypographyVariants =
|
||||||
| 'h6'
|
| 'h6'
|
||||||
| 'subtitle1'
|
| 'subtitle1'
|
||||||
| 'subtitle2'
|
| 'subtitle2'
|
||||||
|
| 'subtitle3'
|
||||||
|
| 'subtitle4'
|
||||||
|
| 'subtitle5'
|
||||||
| 'body1'
|
| 'body1'
|
||||||
| 'body2'
|
| 'body2'
|
||||||
| 'body3'
|
| 'body3'
|
||||||
|
|
Loading…
Reference in New Issue