Skip to content

Typography

We consider typography to be one of the most important aspects of our design system. We use typography to present designs and content as clearly and efficiently as possible.

See our typography guidelines to understand how we use typography.

TokenValueExample
fontXSmall (Deprecated)10px
Telescope
fontSmall12px
Telescope
fontMedium14px
Telescope
fontLarge16px
Telescope
fontXLarge18px
Telescope
font2XLarge20px
Telescope
font3XLarge24px
Telescope
font4XLarge32px
Telescope
font5XLarge48px
Telescope
import {tokens} from '@pleo-io/telescope'
const element = styled.div`
font-size: ${tokens.fontMedium};
`
TokenWeightExample
fontWeightRegular400
Aa
fontWeightMedium500
Aa
fontWeightSemibold600
Aa
fontWeightBold700
Aa
import {tokens} from '@pleo-io/telescope'
const element = styled.div`
font-weight: ${tokens.fontWeightRegular};
`
TokenValueExample
lineHeight11.4
Telescope
lineHeight21.6
Telescope
lineHeight31.7
Telescope
import {tokens} from '@pleo-io/telescope'
const element = styled.div`
line-height: ${tokens.fontLineHeight1};
`