feat(system): improve typography components
This commit is contained in:
parent
13bd8361f8
commit
26e4f0d91e
|
@ -4,11 +4,21 @@ import type React from 'react'
|
||||||
|
|
||||||
const Heading = styled('div', {
|
const Heading = styled('div', {
|
||||||
fontFamily: theme.fonts.sans,
|
fontFamily: theme.fonts.sans,
|
||||||
fontSize: '17px',
|
|
||||||
|
|
||||||
variants: {
|
variants: {
|
||||||
size: {},
|
size: {
|
||||||
color: {},
|
15: {
|
||||||
|
fontSize: '15px',
|
||||||
|
},
|
||||||
|
17: {
|
||||||
|
fontSize: '17px',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
color: {
|
||||||
|
accent: {
|
||||||
|
color: '$accent-1',
|
||||||
|
},
|
||||||
|
},
|
||||||
weight: {
|
weight: {
|
||||||
'400': {
|
'400': {
|
||||||
fontWeight: theme.fontWeights[400],
|
fontWeight: theme.fontWeights[400],
|
||||||
|
@ -55,6 +65,9 @@ const Heading = styled('div', {
|
||||||
|
|
||||||
defaultVariants: {
|
defaultVariants: {
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
color: 'accent',
|
||||||
|
weight: '500',
|
||||||
|
size: '17',
|
||||||
},
|
},
|
||||||
|
|
||||||
// compoundVariants: {},
|
// compoundVariants: {},
|
||||||
|
|
|
@ -13,13 +13,25 @@ const Text = styled('div', {
|
||||||
'12': {
|
'12': {
|
||||||
fontSize: '12px',
|
fontSize: '12px',
|
||||||
},
|
},
|
||||||
|
'13': {
|
||||||
|
fontSize: '13px',
|
||||||
|
},
|
||||||
'14': {
|
'14': {
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
},
|
},
|
||||||
|
'15': {
|
||||||
|
fontSize: '15px',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
color: {
|
color: {
|
||||||
|
accent: {
|
||||||
|
color: '$accent-1',
|
||||||
|
},
|
||||||
|
primary: {
|
||||||
|
color: '$primary-1',
|
||||||
|
},
|
||||||
gray: {
|
gray: {
|
||||||
color: '#939BA1',
|
color: '$gray-1',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
weight: {
|
weight: {
|
||||||
|
@ -70,6 +82,7 @@ const Text = styled('div', {
|
||||||
defaultVariants: {
|
defaultVariants: {
|
||||||
align: 'left',
|
align: 'left',
|
||||||
weight: '400',
|
weight: '400',
|
||||||
|
color: 'accent',
|
||||||
},
|
},
|
||||||
|
|
||||||
// compoundVariants: {},
|
// compoundVariants: {},
|
||||||
|
|
Loading…
Reference in New Issue